diff options
author | Luca Barbieri <luca@luca-barbieri.com> | 2010-08-26 03:14:14 +0200 |
---|---|---|
committer | Luca Barbieri <luca@luca-barbieri.com> | 2010-09-05 18:10:57 +0200 |
commit | 072407270b6fa3082620f63461e75bdae64a71d6 (patch) | |
tree | 0cbf82c8f7e0f760b018e4bd64cc356eb8515cd7 | |
parent | 5458935be800c1b19d1c9d1569dc4fa30a97e8b8 (diff) |
mesa: regenerate glapi for ARB_color_buffer_float (v2)
Changes in v2:
- Fixes brokenness due to outdated code generator
-rw-r--r-- | src/glx/indirect.c | 21 | ||||
-rw-r--r-- | src/glx/indirect.h | 1 | ||||
-rw-r--r-- | src/glx/indirect_init.c | 6 | ||||
-rw-r--r-- | src/mapi/glapi/glapi_sparc.S | 93 | ||||
-rw-r--r-- | src/mapi/glapi/glapi_x86-64.S | 2459 | ||||
-rw-r--r-- | src/mapi/glapi/glapi_x86.S | 129 | ||||
-rw-r--r-- | src/mapi/glapi/glapidispatch.h | 537 | ||||
-rw-r--r-- | src/mapi/glapi/glapioffsets.h | 532 | ||||
-rw-r--r-- | src/mapi/glapi/glapitable.h | 529 | ||||
-rw-r--r-- | src/mapi/glapi/glapitemp.h | 190 | ||||
-rw-r--r-- | src/mapi/glapi/glprocs.h | 1242 | ||||
-rw-r--r-- | src/mesa/main/enums.c | 6515 | ||||
-rw-r--r-- | src/mesa/main/remap_helper.h | 3686 |
13 files changed, 8022 insertions, 7918 deletions
diff --git a/src/glx/indirect.c b/src/glx/indirect.c index c0fff6c4dc..979a486e08 100644 --- a/src/glx/indirect.c +++ b/src/glx/indirect.c @@ -91,7 +91,7 @@ __glXReadReply(Display * dpy, size_t size, void *dest, } NOINLINE void -__glXReadPixelReply(Display * dpy, struct glx_context * gc, unsigned max_dim, +__glXReadPixelReply(Display * dpy, struct glx_context *gc, unsigned max_dim, GLint width, GLint height, GLint depth, GLenum format, GLenum type, void *dest, GLboolean dimensions_in_reply) { @@ -138,7 +138,7 @@ __glXReadPixelReply(Display * dpy, struct glx_context * gc, unsigned max_dim, #define X_GLXSingle 0 NOINLINE FASTCALL GLubyte * -__glXSetupSingleRequest(struct glx_context * gc, GLint sop, GLint cmdlen) +__glXSetupSingleRequest(struct glx_context *gc, GLint sop, GLint cmdlen) { xGLXSingleReq *req; Display *const dpy = gc->currentDpy; @@ -153,7 +153,7 @@ __glXSetupSingleRequest(struct glx_context * gc, GLint sop, GLint cmdlen) } NOINLINE FASTCALL GLubyte * -__glXSetupVendorRequest(struct glx_context * gc, GLint code, GLint vop, +__glXSetupVendorRequest(struct glx_context *gc, GLint code, GLint vop, GLint cmdlen) { xGLXVendorPrivateReq *req; @@ -8604,6 +8604,21 @@ __indirect_glDrawBuffersARB(GLsizei n, const GLenum * bufs) } } +#define X_GLrop_ClampColorARB 234 +void +__indirect_glClampColorARB(GLenum target, GLenum clamp) +{ + struct glx_context *const gc = __glXGetCurrentContext(); + const GLuint cmdlen = 12; + emit_header(gc->pc, X_GLrop_ClampColorARB, cmdlen); + (void) memcpy((void *) (gc->pc + 4), (void *) (&target), 4); + (void) memcpy((void *) (gc->pc + 8), (void *) (&clamp), 4); + gc->pc += cmdlen; + if (__builtin_expect(gc->pc > gc->limit, 0)) { + (void) __glXFlushRenderBuffer(gc, gc->pc); + } +} + #define X_GLrop_RenderbufferStorageMultisample 4331 void __indirect_glRenderbufferStorageMultisample(GLenum target, GLsizei samples, diff --git a/src/glx/indirect.h b/src/glx/indirect.h index 36d68b066c..ca14e2c11f 100644 --- a/src/glx/indirect.h +++ b/src/glx/indirect.h @@ -572,6 +572,7 @@ extern HIDDEN void __indirect_glGetQueryObjectuivARB(GLuint id, GLenum pname, GL extern HIDDEN void __indirect_glGetQueryivARB(GLenum target, GLenum pname, GLint * params); extern HIDDEN GLboolean __indirect_glIsQueryARB(GLuint id); extern HIDDEN void __indirect_glDrawBuffersARB(GLsizei n, const GLenum * bufs); +extern HIDDEN void __indirect_glClampColorARB(GLenum target, GLenum clamp); extern HIDDEN void __indirect_glRenderbufferStorageMultisample(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); extern HIDDEN void __indirect_glSampleMaskSGIS(GLclampf value, GLboolean invert); extern HIDDEN void __indirect_glSamplePatternSGIS(GLenum pattern); diff --git a/src/glx/indirect_init.c b/src/glx/indirect_init.c index ea05188398..7bb6754e38 100644 --- a/src/glx/indirect_init.c +++ b/src/glx/indirect_init.c @@ -53,7 +53,7 @@ static int NoOp(void) * Create and initialize a new GL dispatch table. The table is initialized * with GLX indirect rendering protocol functions. */ -struct _glapi_table *__glXNewIndirectAPI( void ) +struct _glapi_table * __glXNewIndirectAPI( void ) { struct _glapi_table *glAPI; GLuint entries; @@ -588,6 +588,10 @@ struct _glapi_table *__glXNewIndirectAPI( void ) glAPI->DrawBuffersARB = __indirect_glDrawBuffersARB; + /* 39. GL_ARB_color_buffer_float */ + + glAPI->ClampColorARB = __indirect_glClampColorARB; + /* 45. GL_ARB_framebuffer_object */ glAPI->RenderbufferStorageMultisample = __indirect_glRenderbufferStorageMultisample; diff --git a/src/mapi/glapi/glapi_sparc.S b/src/mapi/glapi/glapi_sparc.S index c353ece567..030b6bf3ba 100644 --- a/src/mapi/glapi/glapi_sparc.S +++ b/src/mapi/glapi/glapi_sparc.S @@ -760,6 +760,7 @@ gl_dispatch_functions_start: GL_STUB(glGetActiveAttribARB, _gloffset_GetActiveAttribARB) GL_STUB(glGetAttribLocationARB, _gloffset_GetAttribLocationARB) GL_STUB(glDrawBuffersARB, _gloffset_DrawBuffersARB) + GL_STUB(glClampColorARB, _gloffset_ClampColorARB) GL_STUB(glRenderbufferStorageMultisample, _gloffset_RenderbufferStorageMultisample) GL_STUB(glFramebufferTextureARB, _gloffset_FramebufferTextureARB) GL_STUB(glFramebufferTextureFaceARB, _gloffset_FramebufferTextureFaceARB) @@ -787,22 +788,22 @@ gl_dispatch_functions_start: GL_STUB(glPauseTransformFeedback, _gloffset_PauseTransformFeedback) GL_STUB(glResumeTransformFeedback, _gloffset_ResumeTransformFeedback) GL_STUB(glPolygonOffsetEXT, _gloffset_PolygonOffsetEXT) - GL_STUB(gl_dispatch_stub_590, _gloffset_GetPixelTexGenParameterfvSGIS) - HIDDEN(gl_dispatch_stub_590) - GL_STUB(gl_dispatch_stub_591, _gloffset_GetPixelTexGenParameterivSGIS) + GL_STUB(gl_dispatch_stub_591, _gloffset_GetPixelTexGenParameterfvSGIS) HIDDEN(gl_dispatch_stub_591) - GL_STUB(gl_dispatch_stub_592, _gloffset_PixelTexGenParameterfSGIS) + GL_STUB(gl_dispatch_stub_592, _gloffset_GetPixelTexGenParameterivSGIS) HIDDEN(gl_dispatch_stub_592) - GL_STUB(gl_dispatch_stub_593, _gloffset_PixelTexGenParameterfvSGIS) + GL_STUB(gl_dispatch_stub_593, _gloffset_PixelTexGenParameterfSGIS) HIDDEN(gl_dispatch_stub_593) - GL_STUB(gl_dispatch_stub_594, _gloffset_PixelTexGenParameteriSGIS) + GL_STUB(gl_dispatch_stub_594, _gloffset_PixelTexGenParameterfvSGIS) HIDDEN(gl_dispatch_stub_594) - GL_STUB(gl_dispatch_stub_595, _gloffset_PixelTexGenParameterivSGIS) + GL_STUB(gl_dispatch_stub_595, _gloffset_PixelTexGenParameteriSGIS) HIDDEN(gl_dispatch_stub_595) - GL_STUB(gl_dispatch_stub_596, _gloffset_SampleMaskSGIS) + GL_STUB(gl_dispatch_stub_596, _gloffset_PixelTexGenParameterivSGIS) HIDDEN(gl_dispatch_stub_596) - GL_STUB(gl_dispatch_stub_597, _gloffset_SamplePatternSGIS) + GL_STUB(gl_dispatch_stub_597, _gloffset_SampleMaskSGIS) HIDDEN(gl_dispatch_stub_597) + GL_STUB(gl_dispatch_stub_598, _gloffset_SamplePatternSGIS) + HIDDEN(gl_dispatch_stub_598) GL_STUB(glColorPointerEXT, _gloffset_ColorPointerEXT) GL_STUB(glEdgeFlagPointerEXT, _gloffset_EdgeFlagPointerEXT) GL_STUB(glIndexPointerEXT, _gloffset_IndexPointerEXT) @@ -813,10 +814,10 @@ gl_dispatch_functions_start: GL_STUB(glPointParameterfvEXT, _gloffset_PointParameterfvEXT) GL_STUB(glLockArraysEXT, _gloffset_LockArraysEXT) GL_STUB(glUnlockArraysEXT, _gloffset_UnlockArraysEXT) - GL_STUB(gl_dispatch_stub_608, _gloffset_CullParameterdvEXT) - HIDDEN(gl_dispatch_stub_608) - GL_STUB(gl_dispatch_stub_609, _gloffset_CullParameterfvEXT) + GL_STUB(gl_dispatch_stub_609, _gloffset_CullParameterdvEXT) HIDDEN(gl_dispatch_stub_609) + GL_STUB(gl_dispatch_stub_610, _gloffset_CullParameterfvEXT) + HIDDEN(gl_dispatch_stub_610) GL_STUB(glSecondaryColor3bEXT, _gloffset_SecondaryColor3bEXT) GL_STUB(glSecondaryColor3bvEXT, _gloffset_SecondaryColor3bvEXT) GL_STUB(glSecondaryColor3dEXT, _gloffset_SecondaryColor3dEXT) @@ -841,8 +842,8 @@ gl_dispatch_functions_start: GL_STUB(glFogCoorddvEXT, _gloffset_FogCoorddvEXT) GL_STUB(glFogCoordfEXT, _gloffset_FogCoordfEXT) GL_STUB(glFogCoordfvEXT, _gloffset_FogCoordfvEXT) - GL_STUB(gl_dispatch_stub_634, _gloffset_PixelTexGenSGIX) - HIDDEN(gl_dispatch_stub_634) + GL_STUB(gl_dispatch_stub_635, _gloffset_PixelTexGenSGIX) + HIDDEN(gl_dispatch_stub_635) GL_STUB(glBlendFuncSeparateEXT, _gloffset_BlendFuncSeparateEXT) GL_STUB(glFlushVertexArrayRangeNV, _gloffset_FlushVertexArrayRangeNV) GL_STUB(glVertexArrayRangeNV, _gloffset_VertexArrayRangeNV) @@ -884,24 +885,24 @@ gl_dispatch_functions_start: GL_STUB(glWindowPos4ivMESA, _gloffset_WindowPos4ivMESA) GL_STUB(glWindowPos4sMESA, _gloffset_WindowPos4sMESA) GL_STUB(glWindowPos4svMESA, _gloffset_WindowPos4svMESA) - GL_STUB(gl_dispatch_stub_676, _gloffset_MultiModeDrawArraysIBM) - HIDDEN(gl_dispatch_stub_676) - GL_STUB(gl_dispatch_stub_677, _gloffset_MultiModeDrawElementsIBM) + GL_STUB(gl_dispatch_stub_677, _gloffset_MultiModeDrawArraysIBM) HIDDEN(gl_dispatch_stub_677) - GL_STUB(gl_dispatch_stub_678, _gloffset_DeleteFencesNV) + GL_STUB(gl_dispatch_stub_678, _gloffset_MultiModeDrawElementsIBM) HIDDEN(gl_dispatch_stub_678) - GL_STUB(gl_dispatch_stub_679, _gloffset_FinishFenceNV) + GL_STUB(gl_dispatch_stub_679, _gloffset_DeleteFencesNV) HIDDEN(gl_dispatch_stub_679) - GL_STUB(gl_dispatch_stub_680, _gloffset_GenFencesNV) + GL_STUB(gl_dispatch_stub_680, _gloffset_FinishFenceNV) HIDDEN(gl_dispatch_stub_680) - GL_STUB(gl_dispatch_stub_681, _gloffset_GetFenceivNV) + GL_STUB(gl_dispatch_stub_681, _gloffset_GenFencesNV) HIDDEN(gl_dispatch_stub_681) - GL_STUB(gl_dispatch_stub_682, _gloffset_IsFenceNV) + GL_STUB(gl_dispatch_stub_682, _gloffset_GetFenceivNV) HIDDEN(gl_dispatch_stub_682) - GL_STUB(gl_dispatch_stub_683, _gloffset_SetFenceNV) + GL_STUB(gl_dispatch_stub_683, _gloffset_IsFenceNV) HIDDEN(gl_dispatch_stub_683) - GL_STUB(gl_dispatch_stub_684, _gloffset_TestFenceNV) + GL_STUB(gl_dispatch_stub_684, _gloffset_SetFenceNV) HIDDEN(gl_dispatch_stub_684) + GL_STUB(gl_dispatch_stub_685, _gloffset_TestFenceNV) + HIDDEN(gl_dispatch_stub_685) GL_STUB(glAreProgramsResidentNV, _gloffset_AreProgramsResidentNV) GL_STUB(glBindProgramNV, _gloffset_BindProgramNV) GL_STUB(glDeleteProgramsNV, _gloffset_DeleteProgramsNV) @@ -982,26 +983,26 @@ gl_dispatch_functions_start: GL_STUB(glSetFragmentShaderConstantATI, _gloffset_SetFragmentShaderConstantATI) GL_STUB(glPointParameteriNV, _gloffset_PointParameteriNV) GL_STUB(glPointParameterivNV, _gloffset_PointParameterivNV) - GL_STUB(gl_dispatch_stub_765, _gloffset_ActiveStencilFaceEXT) - HIDDEN(gl_dispatch_stub_765) - GL_STUB(gl_dispatch_stub_766, _gloffset_BindVertexArrayAPPLE) + GL_STUB(gl_dispatch_stub_766, _gloffset_ActiveStencilFaceEXT) HIDDEN(gl_dispatch_stub_766) - GL_STUB(gl_dispatch_stub_767, _gloffset_DeleteVertexArraysAPPLE) + GL_STUB(gl_dispatch_stub_767, _gloffset_BindVertexArrayAPPLE) HIDDEN(gl_dispatch_stub_767) - GL_STUB(gl_dispatch_stub_768, _gloffset_GenVertexArraysAPPLE) + GL_STUB(gl_dispatch_stub_768, _gloffset_DeleteVertexArraysAPPLE) HIDDEN(gl_dispatch_stub_768) - GL_STUB(gl_dispatch_stub_769, _gloffset_IsVertexArrayAPPLE) + GL_STUB(gl_dispatch_stub_769, _gloffset_GenVertexArraysAPPLE) HIDDEN(gl_dispatch_stub_769) + GL_STUB(gl_dispatch_stub_770, _gloffset_IsVertexArrayAPPLE) + HIDDEN(gl_dispatch_stub_770) GL_STUB(glGetProgramNamedParameterdvNV, _gloffset_GetProgramNamedParameterdvNV) GL_STUB(glGetProgramNamedParameterfvNV, _gloffset_GetProgramNamedParameterfvNV) GL_STUB(glProgramNamedParameter4dNV, _gloffset_ProgramNamedParameter4dNV) GL_STUB(glProgramNamedParameter4dvNV, _gloffset_ProgramNamedParameter4dvNV) GL_STUB(glProgramNamedParameter4fNV, _gloffset_ProgramNamedParameter4fNV) GL_STUB(glProgramNamedParameter4fvNV, _gloffset_ProgramNamedParameter4fvNV) - GL_STUB(gl_dispatch_stub_776, _gloffset_DepthBoundsEXT) - HIDDEN(gl_dispatch_stub_776) - GL_STUB(gl_dispatch_stub_777, _gloffset_BlendEquationSeparateEXT) + GL_STUB(gl_dispatch_stub_777, _gloffset_DepthBoundsEXT) HIDDEN(gl_dispatch_stub_777) + GL_STUB(gl_dispatch_stub_778, _gloffset_BlendEquationSeparateEXT) + HIDDEN(gl_dispatch_stub_778) GL_STUB(glBindFramebufferEXT, _gloffset_BindFramebufferEXT) GL_STUB(glBindRenderbufferEXT, _gloffset_BindRenderbufferEXT) GL_STUB(glCheckFramebufferStatusEXT, _gloffset_CheckFramebufferStatusEXT) @@ -1019,12 +1020,12 @@ gl_dispatch_functions_start: GL_STUB(glIsFramebufferEXT, _gloffset_IsFramebufferEXT) GL_STUB(glIsRenderbufferEXT, _gloffset_IsRenderbufferEXT) GL_STUB(glRenderbufferStorageEXT, _gloffset_RenderbufferStorageEXT) - GL_STUB(gl_dispatch_stub_795, _gloffset_BlitFramebufferEXT) - HIDDEN(gl_dispatch_stub_795) - GL_STUB(gl_dispatch_stub_796, _gloffset_BufferParameteriAPPLE) + GL_STUB(gl_dispatch_stub_796, _gloffset_BlitFramebufferEXT) HIDDEN(gl_dispatch_stub_796) - GL_STUB(gl_dispatch_stub_797, _gloffset_FlushMappedBufferRangeAPPLE) + GL_STUB(gl_dispatch_stub_797, _gloffset_BufferParameteriAPPLE) HIDDEN(gl_dispatch_stub_797) + GL_STUB(gl_dispatch_stub_798, _gloffset_FlushMappedBufferRangeAPPLE) + HIDDEN(gl_dispatch_stub_798) GL_STUB(glFramebufferTextureLayerEXT, _gloffset_FramebufferTextureLayerEXT) GL_STUB(glColorMaskIndexedEXT, _gloffset_ColorMaskIndexedEXT) GL_STUB(glDisableIndexedEXT, _gloffset_DisableIndexedEXT) @@ -1042,23 +1043,23 @@ gl_dispatch_functions_start: GL_STUB(glGetTransformFeedbackVaryingEXT, _gloffset_GetTransformFeedbackVaryingEXT) GL_STUB(glTransformFeedbackVaryingsEXT, _gloffset_TransformFeedbackVaryingsEXT) GL_STUB(glProvokingVertexEXT, _gloffset_ProvokingVertexEXT) - GL_STUB(gl_dispatch_stub_815, _gloffset_GetTexParameterPointervAPPLE) - HIDDEN(gl_dispatch_stub_815) - GL_STUB(gl_dispatch_stub_816, _gloffset_TextureRangeAPPLE) + GL_STUB(gl_dispatch_stub_816, _gloffset_GetTexParameterPointervAPPLE) HIDDEN(gl_dispatch_stub_816) + GL_STUB(gl_dispatch_stub_817, _gloffset_TextureRangeAPPLE) + HIDDEN(gl_dispatch_stub_817) GL_STUB(glGetObjectParameterivAPPLE, _gloffset_GetObjectParameterivAPPLE) GL_STUB(glObjectPurgeableAPPLE, _gloffset_ObjectPurgeableAPPLE) GL_STUB(glObjectUnpurgeableAPPLE, _gloffset_ObjectUnpurgeableAPPLE) - GL_STUB(gl_dispatch_stub_820, _gloffset_StencilFuncSeparateATI) - HIDDEN(gl_dispatch_stub_820) - GL_STUB(gl_dispatch_stub_821, _gloffset_ProgramEnvParameters4fvEXT) + GL_STUB(gl_dispatch_stub_821, _gloffset_StencilFuncSeparateATI) HIDDEN(gl_dispatch_stub_821) - GL_STUB(gl_dispatch_stub_822, _gloffset_ProgramLocalParameters4fvEXT) + GL_STUB(gl_dispatch_stub_822, _gloffset_ProgramEnvParameters4fvEXT) HIDDEN(gl_dispatch_stub_822) - GL_STUB(gl_dispatch_stub_823, _gloffset_GetQueryObjecti64vEXT) + GL_STUB(gl_dispatch_stub_823, _gloffset_ProgramLocalParameters4fvEXT) HIDDEN(gl_dispatch_stub_823) - GL_STUB(gl_dispatch_stub_824, _gloffset_GetQueryObjectui64vEXT) + GL_STUB(gl_dispatch_stub_824, _gloffset_GetQueryObjecti64vEXT) HIDDEN(gl_dispatch_stub_824) + GL_STUB(gl_dispatch_stub_825, _gloffset_GetQueryObjectui64vEXT) + HIDDEN(gl_dispatch_stub_825) GL_STUB(glEGLImageTargetRenderbufferStorageOES, _gloffset_EGLImageTargetRenderbufferStorageOES) GL_STUB(glEGLImageTargetTexture2DOES, _gloffset_EGLImageTargetTexture2DOES) GL_STUB_ALIAS(glArrayElementEXT, glArrayElement) diff --git a/src/mapi/glapi/glapi_x86-64.S b/src/mapi/glapi/glapi_x86-64.S index 8cfd815a50..edaff993a3 100644 --- a/src/mapi/glapi/glapi_x86-64.S +++ b/src/mapi/glapi/glapi_x86-64.S @@ -21202,12 +21202,49 @@ GL_PREFIX(DrawBuffersARB): .size GL_PREFIX(DrawBuffersARB), .-GL_PREFIX(DrawBuffersARB) .p2align 4,,15 + .globl GL_PREFIX(ClampColorARB) + .type GL_PREFIX(ClampColorARB), @function +GL_PREFIX(ClampColorARB): +#if defined(GLX_USE_TLS) + call _x86_64_get_dispatch@PLT + movq 4504(%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 4504(%rax), %r11 + jmp *%r11 +#else + movq _glapi_Dispatch(%rip), %rax + testq %rax, %rax + je 1f + movq 4504(%rax), %r11 + jmp *%r11 +1: + pushq %rdi + pushq %rsi + pushq %rbp + call _glapi_get_dispatch + popq %rbp + popq %rsi + popq %rdi + movq 4504(%rax), %r11 + jmp *%r11 +#endif /* defined(GLX_USE_TLS) */ + .size GL_PREFIX(ClampColorARB), .-GL_PREFIX(ClampColorARB) + + .p2align 4,,15 .globl GL_PREFIX(RenderbufferStorageMultisample) .type GL_PREFIX(RenderbufferStorageMultisample), @function GL_PREFIX(RenderbufferStorageMultisample): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4504(%rax), %r11 + movq 4512(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -21221,13 +21258,13 @@ GL_PREFIX(RenderbufferStorageMultisample): popq %rdx popq %rsi popq %rdi - movq 4504(%rax), %r11 + movq 4512(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4504(%rax), %r11 + movq 4512(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -21241,7 +21278,7 @@ GL_PREFIX(RenderbufferStorageMultisample): popq %rdx popq %rsi popq %rdi - movq 4504(%rax), %r11 + movq 4512(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(RenderbufferStorageMultisample), .-GL_PREFIX(RenderbufferStorageMultisample) @@ -21252,7 +21289,7 @@ GL_PREFIX(RenderbufferStorageMultisample): GL_PREFIX(FramebufferTextureARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4512(%rax), %r11 + movq 4520(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -21266,13 +21303,13 @@ GL_PREFIX(FramebufferTextureARB): popq %rdx popq %rsi popq %rdi - movq 4512(%rax), %r11 + movq 4520(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4512(%rax), %r11 + movq 4520(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -21286,7 +21323,7 @@ GL_PREFIX(FramebufferTextureARB): popq %rdx popq %rsi popq %rdi - movq 4512(%rax), %r11 + movq 4520(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FramebufferTextureARB), .-GL_PREFIX(FramebufferTextureARB) @@ -21297,7 +21334,7 @@ GL_PREFIX(FramebufferTextureARB): GL_PREFIX(FramebufferTextureFaceARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4520(%rax), %r11 + movq 4528(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -21311,13 +21348,13 @@ GL_PREFIX(FramebufferTextureFaceARB): popq %rdx popq %rsi popq %rdi - movq 4520(%rax), %r11 + movq 4528(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4520(%rax), %r11 + movq 4528(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -21331,7 +21368,7 @@ GL_PREFIX(FramebufferTextureFaceARB): popq %rdx popq %rsi popq %rdi - movq 4520(%rax), %r11 + movq 4528(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FramebufferTextureFaceARB), .-GL_PREFIX(FramebufferTextureFaceARB) @@ -21342,7 +21379,7 @@ GL_PREFIX(FramebufferTextureFaceARB): GL_PREFIX(ProgramParameteriARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4528(%rax), %r11 + movq 4536(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -21352,13 +21389,13 @@ GL_PREFIX(ProgramParameteriARB): popq %rdx popq %rsi popq %rdi - movq 4528(%rax), %r11 + movq 4536(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4528(%rax), %r11 + movq 4536(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -21368,7 +21405,7 @@ GL_PREFIX(ProgramParameteriARB): popq %rdx popq %rsi popq %rdi - movq 4528(%rax), %r11 + movq 4536(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProgramParameteriARB), .-GL_PREFIX(ProgramParameteriARB) @@ -21379,7 +21416,7 @@ GL_PREFIX(ProgramParameteriARB): GL_PREFIX(FlushMappedBufferRange): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4536(%rax), %r11 + movq 4544(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -21389,13 +21426,13 @@ GL_PREFIX(FlushMappedBufferRange): popq %rdx popq %rsi popq %rdi - movq 4536(%rax), %r11 + movq 4544(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4536(%rax), %r11 + movq 4544(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -21405,7 +21442,7 @@ GL_PREFIX(FlushMappedBufferRange): popq %rdx popq %rsi popq %rdi - movq 4536(%rax), %r11 + movq 4544(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FlushMappedBufferRange), .-GL_PREFIX(FlushMappedBufferRange) @@ -21416,7 +21453,7 @@ GL_PREFIX(FlushMappedBufferRange): GL_PREFIX(MapBufferRange): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4544(%rax), %r11 + movq 4552(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -21430,13 +21467,13 @@ GL_PREFIX(MapBufferRange): popq %rdx popq %rsi popq %rdi - movq 4544(%rax), %r11 + movq 4552(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4544(%rax), %r11 + movq 4552(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -21450,7 +21487,7 @@ GL_PREFIX(MapBufferRange): popq %rdx popq %rsi popq %rdi - movq 4544(%rax), %r11 + movq 4552(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MapBufferRange), .-GL_PREFIX(MapBufferRange) @@ -21461,25 +21498,25 @@ GL_PREFIX(MapBufferRange): GL_PREFIX(BindVertexArray): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4552(%rax), %r11 + movq 4560(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 4552(%rax), %r11 + movq 4560(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4552(%rax), %r11 + movq 4560(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 4552(%rax), %r11 + movq 4560(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindVertexArray), .-GL_PREFIX(BindVertexArray) @@ -21490,7 +21527,7 @@ GL_PREFIX(BindVertexArray): GL_PREFIX(GenVertexArrays): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4560(%rax), %r11 + movq 4568(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -21500,13 +21537,13 @@ GL_PREFIX(GenVertexArrays): popq %rbp popq %rsi popq %rdi - movq 4560(%rax), %r11 + movq 4568(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4560(%rax), %r11 + movq 4568(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -21516,7 +21553,7 @@ GL_PREFIX(GenVertexArrays): popq %rbp popq %rsi popq %rdi - movq 4560(%rax), %r11 + movq 4568(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenVertexArrays), .-GL_PREFIX(GenVertexArrays) @@ -21527,7 +21564,7 @@ GL_PREFIX(GenVertexArrays): GL_PREFIX(CopyBufferSubData): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4568(%rax), %r11 + movq 4576(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -21541,13 +21578,13 @@ GL_PREFIX(CopyBufferSubData): popq %rdx popq %rsi popq %rdi - movq 4568(%rax), %r11 + movq 4576(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4568(%rax), %r11 + movq 4576(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -21561,7 +21598,7 @@ GL_PREFIX(CopyBufferSubData): popq %rdx popq %rsi popq %rdi - movq 4568(%rax), %r11 + movq 4576(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CopyBufferSubData), .-GL_PREFIX(CopyBufferSubData) @@ -21572,7 +21609,7 @@ GL_PREFIX(CopyBufferSubData): GL_PREFIX(ClientWaitSync): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4576(%rax), %r11 + movq 4584(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -21582,13 +21619,13 @@ GL_PREFIX(ClientWaitSync): popq %rdx popq %rsi popq %rdi - movq 4576(%rax), %r11 + movq 4584(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4576(%rax), %r11 + movq 4584(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -21598,7 +21635,7 @@ GL_PREFIX(ClientWaitSync): popq %rdx popq %rsi popq %rdi - movq 4576(%rax), %r11 + movq 4584(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ClientWaitSync), .-GL_PREFIX(ClientWaitSync) @@ -21609,25 +21646,25 @@ GL_PREFIX(ClientWaitSync): GL_PREFIX(DeleteSync): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4584(%rax), %r11 + movq 4592(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 4584(%rax), %r11 + movq 4592(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4584(%rax), %r11 + movq 4592(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 4584(%rax), %r11 + movq 4592(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DeleteSync), .-GL_PREFIX(DeleteSync) @@ -21638,7 +21675,7 @@ GL_PREFIX(DeleteSync): GL_PREFIX(FenceSync): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4592(%rax), %r11 + movq 4600(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -21648,13 +21685,13 @@ GL_PREFIX(FenceSync): popq %rbp popq %rsi popq %rdi - movq 4592(%rax), %r11 + movq 4600(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4592(%rax), %r11 + movq 4600(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -21664,7 +21701,7 @@ GL_PREFIX(FenceSync): popq %rbp popq %rsi popq %rdi - movq 4592(%rax), %r11 + movq 4600(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FenceSync), .-GL_PREFIX(FenceSync) @@ -21675,7 +21712,7 @@ GL_PREFIX(FenceSync): GL_PREFIX(GetInteger64v): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4600(%rax), %r11 + movq 4608(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -21685,13 +21722,13 @@ GL_PREFIX(GetInteger64v): popq %rbp popq %rsi popq %rdi - movq 4600(%rax), %r11 + movq 4608(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4600(%rax), %r11 + movq 4608(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -21701,7 +21738,7 @@ GL_PREFIX(GetInteger64v): popq %rbp popq %rsi popq %rdi - movq 4600(%rax), %r11 + movq 4608(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetInteger64v), .-GL_PREFIX(GetInteger64v) @@ -21712,7 +21749,7 @@ GL_PREFIX(GetInteger64v): GL_PREFIX(GetSynciv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4608(%rax), %r11 + movq 4616(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -21726,13 +21763,13 @@ GL_PREFIX(GetSynciv): popq %rdx popq %rsi popq %rdi - movq 4608(%rax), %r11 + movq 4616(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4608(%rax), %r11 + movq 4616(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -21746,7 +21783,7 @@ GL_PREFIX(GetSynciv): popq %rdx popq %rsi popq %rdi - movq 4608(%rax), %r11 + movq 4616(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetSynciv), .-GL_PREFIX(GetSynciv) @@ -21757,25 +21794,25 @@ GL_PREFIX(GetSynciv): GL_PREFIX(IsSync): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4616(%rax), %r11 + movq 4624(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 4616(%rax), %r11 + movq 4624(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4616(%rax), %r11 + movq 4624(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 4616(%rax), %r11 + movq 4624(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IsSync), .-GL_PREFIX(IsSync) @@ -21786,7 +21823,7 @@ GL_PREFIX(IsSync): GL_PREFIX(WaitSync): #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 @@ -21796,13 +21833,13 @@ GL_PREFIX(WaitSync): 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 @@ -21812,7 +21849,7 @@ GL_PREFIX(WaitSync): popq %rdx popq %rsi popq %rdi - movq 4624(%rax), %r11 + movq 4632(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WaitSync), .-GL_PREFIX(WaitSync) @@ -21823,7 +21860,7 @@ GL_PREFIX(WaitSync): GL_PREFIX(DrawElementsBaseVertex): #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 @@ -21837,13 +21874,13 @@ GL_PREFIX(DrawElementsBaseVertex): 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 @@ -21857,7 +21894,7 @@ GL_PREFIX(DrawElementsBaseVertex): popq %rdx popq %rsi popq %rdi - movq 4632(%rax), %r11 + movq 4640(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DrawElementsBaseVertex), .-GL_PREFIX(DrawElementsBaseVertex) @@ -21868,7 +21905,7 @@ GL_PREFIX(DrawElementsBaseVertex): GL_PREFIX(DrawRangeElementsBaseVertex): #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 @@ -21886,13 +21923,13 @@ GL_PREFIX(DrawRangeElementsBaseVertex): popq %rdx popq %rsi 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 @@ -21910,7 +21947,7 @@ GL_PREFIX(DrawRangeElementsBaseVertex): popq %rdx popq %rsi popq %rdi - movq 4640(%rax), %r11 + movq 4648(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DrawRangeElementsBaseVertex), .-GL_PREFIX(DrawRangeElementsBaseVertex) @@ -21921,7 +21958,7 @@ GL_PREFIX(DrawRangeElementsBaseVertex): GL_PREFIX(MultiDrawElementsBaseVertex): #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 @@ -21939,13 +21976,13 @@ GL_PREFIX(MultiDrawElementsBaseVertex): popq %rdx 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 @@ -21963,7 +22000,7 @@ GL_PREFIX(MultiDrawElementsBaseVertex): popq %rdx popq %rsi popq %rdi - movq 4648(%rax), %r11 + movq 4656(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MultiDrawElementsBaseVertex), .-GL_PREFIX(MultiDrawElementsBaseVertex) @@ -21974,7 +22011,7 @@ GL_PREFIX(MultiDrawElementsBaseVertex): GL_PREFIX(BindTransformFeedback): #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 @@ -21984,13 +22021,13 @@ GL_PREFIX(BindTransformFeedback): popq %rbp 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 @@ -22000,7 +22037,7 @@ GL_PREFIX(BindTransformFeedback): popq %rbp popq %rsi popq %rdi - movq 4656(%rax), %r11 + movq 4664(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindTransformFeedback), .-GL_PREFIX(BindTransformFeedback) @@ -22011,7 +22048,7 @@ GL_PREFIX(BindTransformFeedback): GL_PREFIX(DeleteTransformFeedbacks): #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 @@ -22021,13 +22058,13 @@ GL_PREFIX(DeleteTransformFeedbacks): popq %rbp 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 @@ -22037,7 +22074,7 @@ GL_PREFIX(DeleteTransformFeedbacks): popq %rbp popq %rsi popq %rdi - movq 4664(%rax), %r11 + movq 4672(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DeleteTransformFeedbacks), .-GL_PREFIX(DeleteTransformFeedbacks) @@ -22048,7 +22085,7 @@ GL_PREFIX(DeleteTransformFeedbacks): GL_PREFIX(DrawTransformFeedback): #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 @@ -22058,13 +22095,13 @@ GL_PREFIX(DrawTransformFeedback): popq %rbp popq %rsi 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 @@ -22074,7 +22111,7 @@ GL_PREFIX(DrawTransformFeedback): popq %rbp popq %rsi popq %rdi - movq 4672(%rax), %r11 + movq 4680(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DrawTransformFeedback), .-GL_PREFIX(DrawTransformFeedback) @@ -22085,7 +22122,7 @@ GL_PREFIX(DrawTransformFeedback): GL_PREFIX(GenTransformFeedbacks): #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 @@ -22095,13 +22132,13 @@ GL_PREFIX(GenTransformFeedbacks): 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 @@ -22111,7 +22148,7 @@ GL_PREFIX(GenTransformFeedbacks): popq %rbp popq %rsi popq %rdi - movq 4680(%rax), %r11 + movq 4688(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenTransformFeedbacks), .-GL_PREFIX(GenTransformFeedbacks) @@ -22122,25 +22159,25 @@ GL_PREFIX(GenTransformFeedbacks): GL_PREFIX(IsTransformFeedback): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 4688(%rax), %r11 + movq 4696(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IsTransformFeedback), .-GL_PREFIX(IsTransformFeedback) @@ -22151,25 +22188,25 @@ GL_PREFIX(IsTransformFeedback): GL_PREFIX(PauseTransformFeedback): #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 %rbp call _x86_64_get_dispatch@PLT popq %rbp - 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 %rbp call _glapi_get_dispatch popq %rbp - movq 4696(%rax), %r11 + movq 4704(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PauseTransformFeedback), .-GL_PREFIX(PauseTransformFeedback) @@ -22180,25 +22217,25 @@ GL_PREFIX(PauseTransformFeedback): GL_PREFIX(ResumeTransformFeedback): #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 %rbp call _x86_64_get_dispatch@PLT popq %rbp - 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 %rbp call _glapi_get_dispatch popq %rbp - movq 4704(%rax), %r11 + movq 4712(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ResumeTransformFeedback), .-GL_PREFIX(ResumeTransformFeedback) @@ -22209,7 +22246,7 @@ GL_PREFIX(ResumeTransformFeedback): GL_PREFIX(PolygonOffsetEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4712(%rax), %r11 + movq 4720(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -22219,13 +22256,13 @@ GL_PREFIX(PolygonOffsetEXT): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - 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: subq $24, %rsp @@ -22235,48 +22272,10 @@ GL_PREFIX(PolygonOffsetEXT): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 4712(%rax), %r11 - jmp *%r11 -#endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(PolygonOffsetEXT), .-GL_PREFIX(PolygonOffsetEXT) - - .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_590) - .type GL_PREFIX(_dispatch_stub_590), @function - HIDDEN(GL_PREFIX(_dispatch_stub_590)) -GL_PREFIX(_dispatch_stub_590): -#if defined(GLX_USE_TLS) - call _x86_64_get_dispatch@PLT - movq 4720(%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 4720(%rax), %r11 - jmp *%r11 -#else - movq _glapi_Dispatch(%rip), %rax - testq %rax, %rax - je 1f - movq 4720(%rax), %r11 - jmp *%r11 -1: - pushq %rdi - pushq %rsi - pushq %rbp - call _glapi_get_dispatch - popq %rbp - popq %rsi - popq %rdi movq 4720(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_590), .-GL_PREFIX(_dispatch_stub_590) + .size GL_PREFIX(PolygonOffsetEXT), .-GL_PREFIX(PolygonOffsetEXT) .p2align 4,,15 .globl GL_PREFIX(_dispatch_stub_591) @@ -22326,13 +22325,13 @@ GL_PREFIX(_dispatch_stub_592): movq 4736(%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 4736(%rax), %r11 jmp *%r11 #else @@ -22342,13 +22341,13 @@ GL_PREFIX(_dispatch_stub_592): movq 4736(%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 4736(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ @@ -22364,13 +22363,13 @@ GL_PREFIX(_dispatch_stub_593): movq 4744(%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 4744(%rax), %r11 jmp *%r11 #else @@ -22380,13 +22379,13 @@ GL_PREFIX(_dispatch_stub_593): movq 4744(%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 4744(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ @@ -22517,7 +22516,11 @@ GL_PREFIX(_dispatch_stub_597): jmp *%r11 #elif defined(PTHREADS) pushq %rdi + pushq %rsi + pushq %rbp call _x86_64_get_dispatch@PLT + popq %rbp + popq %rsi popq %rdi movq 4776(%rax), %r11 jmp *%r11 @@ -22529,7 +22532,11 @@ GL_PREFIX(_dispatch_stub_597): jmp *%r11 1: pushq %rdi + pushq %rsi + pushq %rbp call _glapi_get_dispatch + popq %rbp + popq %rsi popq %rdi movq 4776(%rax), %r11 jmp *%r11 @@ -22537,12 +22544,42 @@ GL_PREFIX(_dispatch_stub_597): .size GL_PREFIX(_dispatch_stub_597), .-GL_PREFIX(_dispatch_stub_597) .p2align 4,,15 + .globl GL_PREFIX(_dispatch_stub_598) + .type GL_PREFIX(_dispatch_stub_598), @function + HIDDEN(GL_PREFIX(_dispatch_stub_598)) +GL_PREFIX(_dispatch_stub_598): +#if defined(GLX_USE_TLS) + call _x86_64_get_dispatch@PLT + movq 4784(%rax), %r11 + jmp *%r11 +#elif defined(PTHREADS) + pushq %rdi + call _x86_64_get_dispatch@PLT + popq %rdi + movq 4784(%rax), %r11 + jmp *%r11 +#else + movq _glapi_Dispatch(%rip), %rax + testq %rax, %rax + je 1f + movq 4784(%rax), %r11 + jmp *%r11 +1: + pushq %rdi + call _glapi_get_dispatch + popq %rdi + movq 4784(%rax), %r11 + jmp *%r11 +#endif /* defined(GLX_USE_TLS) */ + .size GL_PREFIX(_dispatch_stub_598), .-GL_PREFIX(_dispatch_stub_598) + + .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 4784(%rax), %r11 + movq 4792(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -22556,13 +22593,13 @@ GL_PREFIX(ColorPointerEXT): popq %rdx popq %rsi popq %rdi - 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 %rdi @@ -22576,7 +22613,7 @@ GL_PREFIX(ColorPointerEXT): popq %rdx popq %rsi popq %rdi - movq 4784(%rax), %r11 + movq 4792(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorPointerEXT), .-GL_PREFIX(ColorPointerEXT) @@ -22587,7 +22624,7 @@ GL_PREFIX(ColorPointerEXT): GL_PREFIX(EdgeFlagPointerEXT): #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 %rdi @@ -22597,13 +22634,13 @@ GL_PREFIX(EdgeFlagPointerEXT): popq %rdx popq %rsi popq %rdi - 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 %rdi @@ -22613,7 +22650,7 @@ GL_PREFIX(EdgeFlagPointerEXT): popq %rdx popq %rsi popq %rdi - movq 4792(%rax), %r11 + movq 4800(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EdgeFlagPointerEXT), .-GL_PREFIX(EdgeFlagPointerEXT) @@ -22624,7 +22661,7 @@ GL_PREFIX(EdgeFlagPointerEXT): GL_PREFIX(IndexPointerEXT): #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 @@ -22638,13 +22675,13 @@ GL_PREFIX(IndexPointerEXT): popq %rdx popq %rsi 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 @@ -22658,7 +22695,7 @@ GL_PREFIX(IndexPointerEXT): popq %rdx popq %rsi popq %rdi - movq 4800(%rax), %r11 + movq 4808(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IndexPointerEXT), .-GL_PREFIX(IndexPointerEXT) @@ -22669,7 +22706,7 @@ GL_PREFIX(IndexPointerEXT): GL_PREFIX(NormalPointerEXT): #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 @@ -22683,13 +22720,13 @@ GL_PREFIX(NormalPointerEXT): popq %rdx 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 @@ -22703,7 +22740,7 @@ GL_PREFIX(NormalPointerEXT): popq %rdx popq %rsi popq %rdi - movq 4808(%rax), %r11 + movq 4816(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(NormalPointerEXT), .-GL_PREFIX(NormalPointerEXT) @@ -22714,7 +22751,7 @@ GL_PREFIX(NormalPointerEXT): GL_PREFIX(TexCoordPointerEXT): #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 @@ -22728,13 +22765,13 @@ GL_PREFIX(TexCoordPointerEXT): 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 @@ -22748,7 +22785,7 @@ GL_PREFIX(TexCoordPointerEXT): popq %rdx popq %rsi popq %rdi - movq 4816(%rax), %r11 + movq 4824(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexCoordPointerEXT), .-GL_PREFIX(TexCoordPointerEXT) @@ -22759,7 +22796,7 @@ GL_PREFIX(TexCoordPointerEXT): GL_PREFIX(VertexPointerEXT): #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 %rdi @@ -22773,13 +22810,13 @@ GL_PREFIX(VertexPointerEXT): popq %rdx popq %rsi popq %rdi - 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 %rdi @@ -22793,7 +22830,7 @@ GL_PREFIX(VertexPointerEXT): popq %rdx popq %rsi popq %rdi - movq 4824(%rax), %r11 + movq 4832(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexPointerEXT), .-GL_PREFIX(VertexPointerEXT) @@ -22804,7 +22841,7 @@ GL_PREFIX(VertexPointerEXT): GL_PREFIX(PointParameterfEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4832(%rax), %r11 + movq 4840(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -22814,13 +22851,13 @@ GL_PREFIX(PointParameterfEXT): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - 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: subq $24, %rsp @@ -22830,7 +22867,7 @@ GL_PREFIX(PointParameterfEXT): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 4832(%rax), %r11 + movq 4840(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PointParameterfEXT), .-GL_PREFIX(PointParameterfEXT) @@ -22841,7 +22878,7 @@ GL_PREFIX(PointParameterfEXT): GL_PREFIX(PointParameterfvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4840(%rax), %r11 + movq 4848(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -22851,13 +22888,13 @@ GL_PREFIX(PointParameterfvEXT): popq %rbp popq %rsi popq %rdi - 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: pushq %rdi @@ -22867,7 +22904,7 @@ GL_PREFIX(PointParameterfvEXT): popq %rbp popq %rsi popq %rdi - movq 4840(%rax), %r11 + movq 4848(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PointParameterfvEXT), .-GL_PREFIX(PointParameterfvEXT) @@ -22878,7 +22915,7 @@ GL_PREFIX(PointParameterfvEXT): GL_PREFIX(LockArraysEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4848(%rax), %r11 + movq 4856(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -22888,13 +22925,13 @@ GL_PREFIX(LockArraysEXT): popq %rbp popq %rsi popq %rdi - movq 4848(%rax), %r11 + movq 4856(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4848(%rax), %r11 + movq 4856(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -22904,7 +22941,7 @@ GL_PREFIX(LockArraysEXT): popq %rbp popq %rsi popq %rdi - movq 4848(%rax), %r11 + movq 4856(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(LockArraysEXT), .-GL_PREFIX(LockArraysEXT) @@ -22915,37 +22952,37 @@ GL_PREFIX(LockArraysEXT): GL_PREFIX(UnlockArraysEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4856(%rax), %r11 + movq 4864(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 4856(%rax), %r11 + movq 4864(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4856(%rax), %r11 + movq 4864(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 4856(%rax), %r11 + movq 4864(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(UnlockArraysEXT), .-GL_PREFIX(UnlockArraysEXT) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_608) - .type GL_PREFIX(_dispatch_stub_608), @function - HIDDEN(GL_PREFIX(_dispatch_stub_608)) -GL_PREFIX(_dispatch_stub_608): + .globl GL_PREFIX(_dispatch_stub_609) + .type GL_PREFIX(_dispatch_stub_609), @function + HIDDEN(GL_PREFIX(_dispatch_stub_609)) +GL_PREFIX(_dispatch_stub_609): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4864(%rax), %r11 + movq 4872(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -22955,13 +22992,13 @@ GL_PREFIX(_dispatch_stub_608): popq %rbp popq %rsi popq %rdi - movq 4864(%rax), %r11 + movq 4872(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4864(%rax), %r11 + movq 4872(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -22971,19 +23008,19 @@ GL_PREFIX(_dispatch_stub_608): popq %rbp popq %rsi popq %rdi - movq 4864(%rax), %r11 + movq 4872(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_608), .-GL_PREFIX(_dispatch_stub_608) + .size GL_PREFIX(_dispatch_stub_609), .-GL_PREFIX(_dispatch_stub_609) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_609) - .type GL_PREFIX(_dispatch_stub_609), @function - HIDDEN(GL_PREFIX(_dispatch_stub_609)) -GL_PREFIX(_dispatch_stub_609): + .globl GL_PREFIX(_dispatch_stub_610) + .type GL_PREFIX(_dispatch_stub_610), @function + HIDDEN(GL_PREFIX(_dispatch_stub_610)) +GL_PREFIX(_dispatch_stub_610): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4872(%rax), %r11 + movq 4880(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -22993,13 +23030,13 @@ GL_PREFIX(_dispatch_stub_609): popq %rbp popq %rsi popq %rdi - movq 4872(%rax), %r11 + movq 4880(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4872(%rax), %r11 + movq 4880(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23009,10 +23046,10 @@ GL_PREFIX(_dispatch_stub_609): popq %rbp popq %rsi popq %rdi - movq 4872(%rax), %r11 + movq 4880(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_609), .-GL_PREFIX(_dispatch_stub_609) + .size GL_PREFIX(_dispatch_stub_610), .-GL_PREFIX(_dispatch_stub_610) .p2align 4,,15 .globl GL_PREFIX(SecondaryColor3bEXT) @@ -23020,7 +23057,7 @@ GL_PREFIX(_dispatch_stub_609): GL_PREFIX(SecondaryColor3bEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4880(%rax), %r11 + movq 4888(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23030,13 +23067,13 @@ GL_PREFIX(SecondaryColor3bEXT): popq %rdx popq %rsi popq %rdi - movq 4880(%rax), %r11 + movq 4888(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4880(%rax), %r11 + movq 4888(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23046,7 +23083,7 @@ GL_PREFIX(SecondaryColor3bEXT): popq %rdx popq %rsi popq %rdi - movq 4880(%rax), %r11 + movq 4888(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3bEXT), .-GL_PREFIX(SecondaryColor3bEXT) @@ -23057,25 +23094,25 @@ GL_PREFIX(SecondaryColor3bEXT): GL_PREFIX(SecondaryColor3bvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4888(%rax), %r11 + movq 4896(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 4888(%rax), %r11 + movq 4896(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4888(%rax), %r11 + movq 4896(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 4888(%rax), %r11 + movq 4896(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3bvEXT), .-GL_PREFIX(SecondaryColor3bvEXT) @@ -23086,7 +23123,7 @@ GL_PREFIX(SecondaryColor3bvEXT): GL_PREFIX(SecondaryColor3dEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4896(%rax), %r11 + movq 4904(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -23098,13 +23135,13 @@ GL_PREFIX(SecondaryColor3dEXT): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 4896(%rax), %r11 + movq 4904(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4896(%rax), %r11 + movq 4904(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -23116,7 +23153,7 @@ GL_PREFIX(SecondaryColor3dEXT): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 4896(%rax), %r11 + movq 4904(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3dEXT), .-GL_PREFIX(SecondaryColor3dEXT) @@ -23127,25 +23164,25 @@ GL_PREFIX(SecondaryColor3dEXT): GL_PREFIX(SecondaryColor3dvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4904(%rax), %r11 + movq 4912(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 4904(%rax), %r11 + movq 4912(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4904(%rax), %r11 + movq 4912(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 4904(%rax), %r11 + movq 4912(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3dvEXT), .-GL_PREFIX(SecondaryColor3dvEXT) @@ -23156,7 +23193,7 @@ GL_PREFIX(SecondaryColor3dvEXT): GL_PREFIX(SecondaryColor3fEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4912(%rax), %r11 + movq 4920(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -23168,13 +23205,13 @@ GL_PREFIX(SecondaryColor3fEXT): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - 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: subq $24, %rsp @@ -23186,7 +23223,7 @@ GL_PREFIX(SecondaryColor3fEXT): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 4912(%rax), %r11 + movq 4920(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3fEXT), .-GL_PREFIX(SecondaryColor3fEXT) @@ -23197,25 +23234,25 @@ GL_PREFIX(SecondaryColor3fEXT): GL_PREFIX(SecondaryColor3fvEXT): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 4920(%rax), %r11 + movq 4928(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3fvEXT), .-GL_PREFIX(SecondaryColor3fvEXT) @@ -23226,7 +23263,7 @@ GL_PREFIX(SecondaryColor3fvEXT): GL_PREFIX(SecondaryColor3iEXT): #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 @@ -23236,13 +23273,13 @@ GL_PREFIX(SecondaryColor3iEXT): 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 @@ -23252,7 +23289,7 @@ GL_PREFIX(SecondaryColor3iEXT): popq %rdx popq %rsi popq %rdi - movq 4928(%rax), %r11 + movq 4936(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3iEXT), .-GL_PREFIX(SecondaryColor3iEXT) @@ -23263,25 +23300,25 @@ GL_PREFIX(SecondaryColor3iEXT): GL_PREFIX(SecondaryColor3ivEXT): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 4936(%rax), %r11 + movq 4944(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3ivEXT), .-GL_PREFIX(SecondaryColor3ivEXT) @@ -23292,7 +23329,7 @@ GL_PREFIX(SecondaryColor3ivEXT): GL_PREFIX(SecondaryColor3sEXT): #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 @@ -23302,13 +23339,13 @@ GL_PREFIX(SecondaryColor3sEXT): 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 @@ -23318,7 +23355,7 @@ GL_PREFIX(SecondaryColor3sEXT): popq %rdx popq %rsi popq %rdi - movq 4944(%rax), %r11 + movq 4952(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3sEXT), .-GL_PREFIX(SecondaryColor3sEXT) @@ -23329,25 +23366,25 @@ GL_PREFIX(SecondaryColor3sEXT): GL_PREFIX(SecondaryColor3svEXT): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 4952(%rax), %r11 + movq 4960(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3svEXT), .-GL_PREFIX(SecondaryColor3svEXT) @@ -23358,7 +23395,7 @@ GL_PREFIX(SecondaryColor3svEXT): GL_PREFIX(SecondaryColor3ubEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4960(%rax), %r11 + movq 4968(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23368,13 +23405,13 @@ GL_PREFIX(SecondaryColor3ubEXT): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -23384,7 +23421,7 @@ GL_PREFIX(SecondaryColor3ubEXT): popq %rdx popq %rsi popq %rdi - movq 4960(%rax), %r11 + movq 4968(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3ubEXT), .-GL_PREFIX(SecondaryColor3ubEXT) @@ -23395,25 +23432,25 @@ GL_PREFIX(SecondaryColor3ubEXT): GL_PREFIX(SecondaryColor3ubvEXT): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 4968(%rax), %r11 + movq 4976(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3ubvEXT), .-GL_PREFIX(SecondaryColor3ubvEXT) @@ -23424,7 +23461,7 @@ GL_PREFIX(SecondaryColor3ubvEXT): GL_PREFIX(SecondaryColor3uiEXT): #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 @@ -23434,13 +23471,13 @@ GL_PREFIX(SecondaryColor3uiEXT): popq %rdx 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 @@ -23450,7 +23487,7 @@ GL_PREFIX(SecondaryColor3uiEXT): popq %rdx popq %rsi popq %rdi - movq 4976(%rax), %r11 + movq 4984(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3uiEXT), .-GL_PREFIX(SecondaryColor3uiEXT) @@ -23461,25 +23498,25 @@ GL_PREFIX(SecondaryColor3uiEXT): GL_PREFIX(SecondaryColor3uivEXT): #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 %rdi call _x86_64_get_dispatch@PLT popq %rdi - 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 %rdi call _glapi_get_dispatch popq %rdi - movq 4984(%rax), %r11 + movq 4992(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3uivEXT), .-GL_PREFIX(SecondaryColor3uivEXT) @@ -23490,7 +23527,7 @@ GL_PREFIX(SecondaryColor3uivEXT): GL_PREFIX(SecondaryColor3usEXT): #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 @@ -23500,13 +23537,13 @@ GL_PREFIX(SecondaryColor3usEXT): 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 @@ -23516,7 +23553,7 @@ GL_PREFIX(SecondaryColor3usEXT): popq %rdx popq %rsi popq %rdi - movq 4992(%rax), %r11 + movq 5000(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3usEXT), .-GL_PREFIX(SecondaryColor3usEXT) @@ -23527,25 +23564,25 @@ GL_PREFIX(SecondaryColor3usEXT): GL_PREFIX(SecondaryColor3usvEXT): #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(SecondaryColor3usvEXT), .-GL_PREFIX(SecondaryColor3usvEXT) @@ -23556,7 +23593,7 @@ GL_PREFIX(SecondaryColor3usvEXT): GL_PREFIX(SecondaryColorPointerEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5008(%rax), %r11 + movq 5016(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23570,13 +23607,13 @@ GL_PREFIX(SecondaryColorPointerEXT): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -23590,7 +23627,7 @@ GL_PREFIX(SecondaryColorPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5008(%rax), %r11 + movq 5016(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColorPointerEXT), .-GL_PREFIX(SecondaryColorPointerEXT) @@ -23601,7 +23638,7 @@ GL_PREFIX(SecondaryColorPointerEXT): GL_PREFIX(MultiDrawArraysEXT): #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 @@ -23615,13 +23652,13 @@ GL_PREFIX(MultiDrawArraysEXT): popq %rdx popq %rsi 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 @@ -23635,7 +23672,7 @@ GL_PREFIX(MultiDrawArraysEXT): popq %rdx popq %rsi popq %rdi - movq 5016(%rax), %r11 + movq 5024(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MultiDrawArraysEXT), .-GL_PREFIX(MultiDrawArraysEXT) @@ -23646,7 +23683,7 @@ GL_PREFIX(MultiDrawArraysEXT): GL_PREFIX(MultiDrawElementsEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5024(%rax), %r11 + movq 5032(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23660,13 +23697,13 @@ GL_PREFIX(MultiDrawElementsEXT): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -23680,7 +23717,7 @@ GL_PREFIX(MultiDrawElementsEXT): popq %rdx popq %rsi popq %rdi - movq 5024(%rax), %r11 + movq 5032(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MultiDrawElementsEXT), .-GL_PREFIX(MultiDrawElementsEXT) @@ -23691,7 +23728,7 @@ GL_PREFIX(MultiDrawElementsEXT): GL_PREFIX(FogCoordPointerEXT): #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 @@ -23701,13 +23738,13 @@ GL_PREFIX(FogCoordPointerEXT): popq %rdx popq %rsi 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 @@ -23717,7 +23754,7 @@ GL_PREFIX(FogCoordPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5032(%rax), %r11 + movq 5040(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FogCoordPointerEXT), .-GL_PREFIX(FogCoordPointerEXT) @@ -23728,7 +23765,7 @@ GL_PREFIX(FogCoordPointerEXT): GL_PREFIX(FogCoorddEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5040(%rax), %r11 + movq 5048(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $8, %rsp @@ -23736,13 +23773,13 @@ GL_PREFIX(FogCoorddEXT): call _x86_64_get_dispatch@PLT movq (%rsp), %xmm0 addq $8, %rsp - 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: subq $8, %rsp @@ -23750,7 +23787,7 @@ GL_PREFIX(FogCoorddEXT): call _glapi_get_dispatch movq (%rsp), %xmm0 addq $8, %rsp - movq 5040(%rax), %r11 + movq 5048(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FogCoorddEXT), .-GL_PREFIX(FogCoorddEXT) @@ -23761,25 +23798,25 @@ GL_PREFIX(FogCoorddEXT): GL_PREFIX(FogCoorddvEXT): #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(FogCoorddvEXT), .-GL_PREFIX(FogCoorddvEXT) @@ -23790,7 +23827,7 @@ GL_PREFIX(FogCoorddvEXT): GL_PREFIX(FogCoordfEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5056(%rax), %r11 + movq 5064(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $8, %rsp @@ -23798,13 +23835,13 @@ GL_PREFIX(FogCoordfEXT): call _x86_64_get_dispatch@PLT movq (%rsp), %xmm0 addq $8, %rsp - 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: subq $8, %rsp @@ -23812,7 +23849,7 @@ GL_PREFIX(FogCoordfEXT): call _glapi_get_dispatch movq (%rsp), %xmm0 addq $8, %rsp - movq 5056(%rax), %r11 + movq 5064(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FogCoordfEXT), .-GL_PREFIX(FogCoordfEXT) @@ -23823,58 +23860,58 @@ GL_PREFIX(FogCoordfEXT): GL_PREFIX(FogCoordfvEXT): #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(FogCoordfvEXT), .-GL_PREFIX(FogCoordfvEXT) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_634) - .type GL_PREFIX(_dispatch_stub_634), @function - HIDDEN(GL_PREFIX(_dispatch_stub_634)) -GL_PREFIX(_dispatch_stub_634): + .globl GL_PREFIX(_dispatch_stub_635) + .type GL_PREFIX(_dispatch_stub_635), @function + HIDDEN(GL_PREFIX(_dispatch_stub_635)) +GL_PREFIX(_dispatch_stub_635): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 5072(%rax), %r11 + movq 5080(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_634), .-GL_PREFIX(_dispatch_stub_634) + .size GL_PREFIX(_dispatch_stub_635), .-GL_PREFIX(_dispatch_stub_635) .p2align 4,,15 .globl GL_PREFIX(BlendFuncSeparateEXT) @@ -23882,7 +23919,7 @@ GL_PREFIX(_dispatch_stub_634): GL_PREFIX(BlendFuncSeparateEXT): #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 @@ -23896,13 +23933,13 @@ GL_PREFIX(BlendFuncSeparateEXT): popq %rdx popq %rsi 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 @@ -23916,7 +23953,7 @@ GL_PREFIX(BlendFuncSeparateEXT): popq %rdx popq %rsi popq %rdi - movq 5080(%rax), %r11 + movq 5088(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BlendFuncSeparateEXT), .-GL_PREFIX(BlendFuncSeparateEXT) @@ -23927,25 +23964,25 @@ GL_PREFIX(BlendFuncSeparateEXT): GL_PREFIX(FlushVertexArrayRangeNV): #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 %rbp call _x86_64_get_dispatch@PLT popq %rbp - 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 %rbp call _glapi_get_dispatch popq %rbp - movq 5088(%rax), %r11 + movq 5096(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FlushVertexArrayRangeNV), .-GL_PREFIX(FlushVertexArrayRangeNV) @@ -23956,7 +23993,7 @@ GL_PREFIX(FlushVertexArrayRangeNV): GL_PREFIX(VertexArrayRangeNV): #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 @@ -23966,13 +24003,13 @@ GL_PREFIX(VertexArrayRangeNV): popq %rbp popq %rsi 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 @@ -23982,7 +24019,7 @@ GL_PREFIX(VertexArrayRangeNV): popq %rbp popq %rsi popq %rdi - movq 5096(%rax), %r11 + movq 5104(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexArrayRangeNV), .-GL_PREFIX(VertexArrayRangeNV) @@ -23993,7 +24030,7 @@ GL_PREFIX(VertexArrayRangeNV): GL_PREFIX(CombinerInputNV): #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 @@ -24011,13 +24048,13 @@ GL_PREFIX(CombinerInputNV): 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 @@ -24035,7 +24072,7 @@ GL_PREFIX(CombinerInputNV): popq %rdx popq %rsi popq %rdi - movq 5104(%rax), %r11 + movq 5112(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CombinerInputNV), .-GL_PREFIX(CombinerInputNV) @@ -24046,7 +24083,7 @@ GL_PREFIX(CombinerInputNV): GL_PREFIX(CombinerOutputNV): #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 @@ -24064,13 +24101,13 @@ GL_PREFIX(CombinerOutputNV): popq %rdx popq %rsi 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 @@ -24088,7 +24125,7 @@ GL_PREFIX(CombinerOutputNV): popq %rdx popq %rsi popq %rdi - movq 5112(%rax), %r11 + movq 5120(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CombinerOutputNV), .-GL_PREFIX(CombinerOutputNV) @@ -24099,7 +24136,7 @@ GL_PREFIX(CombinerOutputNV): GL_PREFIX(CombinerParameterfNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5120(%rax), %r11 + movq 5128(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -24109,13 +24146,13 @@ GL_PREFIX(CombinerParameterfNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - 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: subq $24, %rsp @@ -24125,7 +24162,7 @@ GL_PREFIX(CombinerParameterfNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 5120(%rax), %r11 + movq 5128(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CombinerParameterfNV), .-GL_PREFIX(CombinerParameterfNV) @@ -24136,7 +24173,7 @@ GL_PREFIX(CombinerParameterfNV): GL_PREFIX(CombinerParameterfvNV): #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 @@ -24146,13 +24183,13 @@ GL_PREFIX(CombinerParameterfvNV): popq %rbp 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 @@ -24162,7 +24199,7 @@ GL_PREFIX(CombinerParameterfvNV): popq %rbp popq %rsi popq %rdi - movq 5128(%rax), %r11 + movq 5136(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CombinerParameterfvNV), .-GL_PREFIX(CombinerParameterfvNV) @@ -24173,7 +24210,7 @@ GL_PREFIX(CombinerParameterfvNV): GL_PREFIX(CombinerParameteriNV): #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 @@ -24183,13 +24220,13 @@ GL_PREFIX(CombinerParameteriNV): popq %rbp 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 @@ -24199,7 +24236,7 @@ GL_PREFIX(CombinerParameteriNV): popq %rbp popq %rsi popq %rdi - movq 5136(%rax), %r11 + movq 5144(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CombinerParameteriNV), .-GL_PREFIX(CombinerParameteriNV) @@ -24210,7 +24247,7 @@ GL_PREFIX(CombinerParameteriNV): GL_PREFIX(CombinerParameterivNV): #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 @@ -24220,13 +24257,13 @@ GL_PREFIX(CombinerParameterivNV): popq %rbp 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 @@ -24236,7 +24273,7 @@ GL_PREFIX(CombinerParameterivNV): popq %rbp popq %rsi popq %rdi - movq 5144(%rax), %r11 + movq 5152(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CombinerParameterivNV), .-GL_PREFIX(CombinerParameterivNV) @@ -24247,7 +24284,7 @@ GL_PREFIX(CombinerParameterivNV): GL_PREFIX(FinalCombinerInputNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5152(%rax), %r11 + movq 5160(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24261,13 +24298,13 @@ GL_PREFIX(FinalCombinerInputNV): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -24281,7 +24318,7 @@ GL_PREFIX(FinalCombinerInputNV): popq %rdx popq %rsi popq %rdi - movq 5152(%rax), %r11 + movq 5160(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FinalCombinerInputNV), .-GL_PREFIX(FinalCombinerInputNV) @@ -24292,7 +24329,7 @@ GL_PREFIX(FinalCombinerInputNV): GL_PREFIX(GetCombinerInputParameterfvNV): #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 @@ -24306,13 +24343,13 @@ GL_PREFIX(GetCombinerInputParameterfvNV): popq %rdx popq %rsi 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 @@ -24326,7 +24363,7 @@ GL_PREFIX(GetCombinerInputParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 5160(%rax), %r11 + movq 5168(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetCombinerInputParameterfvNV), .-GL_PREFIX(GetCombinerInputParameterfvNV) @@ -24337,7 +24374,7 @@ GL_PREFIX(GetCombinerInputParameterfvNV): GL_PREFIX(GetCombinerInputParameterivNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5168(%rax), %r11 + movq 5176(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24351,13 +24388,13 @@ GL_PREFIX(GetCombinerInputParameterivNV): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -24371,7 +24408,7 @@ GL_PREFIX(GetCombinerInputParameterivNV): popq %rdx popq %rsi popq %rdi - movq 5168(%rax), %r11 + movq 5176(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetCombinerInputParameterivNV), .-GL_PREFIX(GetCombinerInputParameterivNV) @@ -24382,7 +24419,7 @@ GL_PREFIX(GetCombinerInputParameterivNV): GL_PREFIX(GetCombinerOutputParameterfvNV): #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 @@ -24396,13 +24433,13 @@ GL_PREFIX(GetCombinerOutputParameterfvNV): popq %rdx popq %rsi 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 @@ -24416,7 +24453,7 @@ GL_PREFIX(GetCombinerOutputParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 5176(%rax), %r11 + movq 5184(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetCombinerOutputParameterfvNV), .-GL_PREFIX(GetCombinerOutputParameterfvNV) @@ -24427,7 +24464,7 @@ GL_PREFIX(GetCombinerOutputParameterfvNV): GL_PREFIX(GetCombinerOutputParameterivNV): #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 @@ -24441,13 +24478,13 @@ GL_PREFIX(GetCombinerOutputParameterivNV): popq %rdx popq %rsi 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 @@ -24461,7 +24498,7 @@ GL_PREFIX(GetCombinerOutputParameterivNV): popq %rdx popq %rsi popq %rdi - movq 5184(%rax), %r11 + movq 5192(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetCombinerOutputParameterivNV), .-GL_PREFIX(GetCombinerOutputParameterivNV) @@ -24472,7 +24509,7 @@ GL_PREFIX(GetCombinerOutputParameterivNV): GL_PREFIX(GetFinalCombinerInputParameterfvNV): #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 @@ -24482,13 +24519,13 @@ GL_PREFIX(GetFinalCombinerInputParameterfvNV): 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 @@ -24498,7 +24535,7 @@ GL_PREFIX(GetFinalCombinerInputParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 5192(%rax), %r11 + movq 5200(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetFinalCombinerInputParameterfvNV), .-GL_PREFIX(GetFinalCombinerInputParameterfvNV) @@ -24509,7 +24546,7 @@ GL_PREFIX(GetFinalCombinerInputParameterfvNV): GL_PREFIX(GetFinalCombinerInputParameterivNV): #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 %rdi @@ -24519,13 +24556,13 @@ GL_PREFIX(GetFinalCombinerInputParameterivNV): popq %rdx popq %rsi popq %rdi - 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 %rdi @@ -24535,7 +24572,7 @@ GL_PREFIX(GetFinalCombinerInputParameterivNV): popq %rdx popq %rsi popq %rdi - movq 5200(%rax), %r11 + movq 5208(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetFinalCombinerInputParameterivNV), .-GL_PREFIX(GetFinalCombinerInputParameterivNV) @@ -24546,25 +24583,25 @@ GL_PREFIX(GetFinalCombinerInputParameterivNV): GL_PREFIX(ResizeBuffersMESA): #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 %rbp call _x86_64_get_dispatch@PLT popq %rbp - 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 %rbp call _glapi_get_dispatch popq %rbp - movq 5208(%rax), %r11 + movq 5216(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ResizeBuffersMESA), .-GL_PREFIX(ResizeBuffersMESA) @@ -24575,7 +24612,7 @@ GL_PREFIX(ResizeBuffersMESA): GL_PREFIX(WindowPos2dMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5216(%rax), %r11 + movq 5224(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -24585,13 +24622,13 @@ GL_PREFIX(WindowPos2dMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - 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: subq $24, %rsp @@ -24601,7 +24638,7 @@ GL_PREFIX(WindowPos2dMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 5216(%rax), %r11 + movq 5224(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2dMESA), .-GL_PREFIX(WindowPos2dMESA) @@ -24612,25 +24649,25 @@ GL_PREFIX(WindowPos2dMESA): GL_PREFIX(WindowPos2dvMESA): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 5224(%rax), %r11 + movq 5232(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2dvMESA), .-GL_PREFIX(WindowPos2dvMESA) @@ -24641,7 +24678,7 @@ GL_PREFIX(WindowPos2dvMESA): GL_PREFIX(WindowPos2fMESA): #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 @@ -24651,13 +24688,13 @@ GL_PREFIX(WindowPos2fMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 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 @@ -24667,7 +24704,7 @@ GL_PREFIX(WindowPos2fMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 5232(%rax), %r11 + movq 5240(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2fMESA), .-GL_PREFIX(WindowPos2fMESA) @@ -24678,25 +24715,25 @@ GL_PREFIX(WindowPos2fMESA): GL_PREFIX(WindowPos2fvMESA): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 5240(%rax), %r11 + movq 5248(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2fvMESA), .-GL_PREFIX(WindowPos2fvMESA) @@ -24707,7 +24744,7 @@ GL_PREFIX(WindowPos2fvMESA): GL_PREFIX(WindowPos2iMESA): #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 @@ -24717,13 +24754,13 @@ GL_PREFIX(WindowPos2iMESA): 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 @@ -24733,7 +24770,7 @@ GL_PREFIX(WindowPos2iMESA): popq %rbp popq %rsi popq %rdi - movq 5248(%rax), %r11 + movq 5256(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2iMESA), .-GL_PREFIX(WindowPos2iMESA) @@ -24744,25 +24781,25 @@ GL_PREFIX(WindowPos2iMESA): GL_PREFIX(WindowPos2ivMESA): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 5256(%rax), %r11 + movq 5264(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2ivMESA), .-GL_PREFIX(WindowPos2ivMESA) @@ -24773,7 +24810,7 @@ GL_PREFIX(WindowPos2ivMESA): GL_PREFIX(WindowPos2sMESA): #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 @@ -24783,13 +24820,13 @@ GL_PREFIX(WindowPos2sMESA): popq %rbp 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 @@ -24799,7 +24836,7 @@ GL_PREFIX(WindowPos2sMESA): popq %rbp popq %rsi popq %rdi - movq 5264(%rax), %r11 + movq 5272(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2sMESA), .-GL_PREFIX(WindowPos2sMESA) @@ -24810,25 +24847,25 @@ GL_PREFIX(WindowPos2sMESA): GL_PREFIX(WindowPos2svMESA): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 5272(%rax), %r11 + movq 5280(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2svMESA), .-GL_PREFIX(WindowPos2svMESA) @@ -24839,7 +24876,7 @@ GL_PREFIX(WindowPos2svMESA): GL_PREFIX(WindowPos3dMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5280(%rax), %r11 + movq 5288(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -24851,13 +24888,13 @@ GL_PREFIX(WindowPos3dMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - 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: subq $24, %rsp @@ -24869,7 +24906,7 @@ GL_PREFIX(WindowPos3dMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 5280(%rax), %r11 + movq 5288(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3dMESA), .-GL_PREFIX(WindowPos3dMESA) @@ -24880,25 +24917,25 @@ GL_PREFIX(WindowPos3dMESA): GL_PREFIX(WindowPos3dvMESA): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 5288(%rax), %r11 + movq 5296(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3dvMESA), .-GL_PREFIX(WindowPos3dvMESA) @@ -24909,7 +24946,7 @@ GL_PREFIX(WindowPos3dvMESA): GL_PREFIX(WindowPos3fMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5296(%rax), %r11 + movq 5304(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -24921,13 +24958,13 @@ GL_PREFIX(WindowPos3fMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - 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: subq $24, %rsp @@ -24939,7 +24976,7 @@ GL_PREFIX(WindowPos3fMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 5296(%rax), %r11 + movq 5304(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3fMESA), .-GL_PREFIX(WindowPos3fMESA) @@ -24950,25 +24987,25 @@ GL_PREFIX(WindowPos3fMESA): GL_PREFIX(WindowPos3fvMESA): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 5304(%rax), %r11 + movq 5312(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3fvMESA), .-GL_PREFIX(WindowPos3fvMESA) @@ -24979,7 +25016,7 @@ GL_PREFIX(WindowPos3fvMESA): GL_PREFIX(WindowPos3iMESA): #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 @@ -24989,13 +25026,13 @@ GL_PREFIX(WindowPos3iMESA): 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 @@ -25005,7 +25042,7 @@ GL_PREFIX(WindowPos3iMESA): popq %rdx popq %rsi popq %rdi - movq 5312(%rax), %r11 + movq 5320(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3iMESA), .-GL_PREFIX(WindowPos3iMESA) @@ -25016,25 +25053,25 @@ GL_PREFIX(WindowPos3iMESA): GL_PREFIX(WindowPos3ivMESA): #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 %rdi call _x86_64_get_dispatch@PLT popq %rdi - 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 %rdi call _glapi_get_dispatch popq %rdi - movq 5320(%rax), %r11 + movq 5328(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3ivMESA), .-GL_PREFIX(WindowPos3ivMESA) @@ -25045,7 +25082,7 @@ GL_PREFIX(WindowPos3ivMESA): GL_PREFIX(WindowPos3sMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5328(%rax), %r11 + movq 5336(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25055,13 +25092,13 @@ GL_PREFIX(WindowPos3sMESA): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -25071,7 +25108,7 @@ GL_PREFIX(WindowPos3sMESA): popq %rdx popq %rsi popq %rdi - movq 5328(%rax), %r11 + movq 5336(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3sMESA), .-GL_PREFIX(WindowPos3sMESA) @@ -25082,25 +25119,25 @@ GL_PREFIX(WindowPos3sMESA): GL_PREFIX(WindowPos3svMESA): #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(WindowPos3svMESA), .-GL_PREFIX(WindowPos3svMESA) @@ -25111,7 +25148,7 @@ GL_PREFIX(WindowPos3svMESA): GL_PREFIX(WindowPos4dMESA): #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 $40, %rsp @@ -25125,13 +25162,13 @@ GL_PREFIX(WindowPos4dMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $40, %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 $40, %rsp @@ -25145,7 +25182,7 @@ GL_PREFIX(WindowPos4dMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $40, %rsp - movq 5344(%rax), %r11 + movq 5352(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos4dMESA), .-GL_PREFIX(WindowPos4dMESA) @@ -25156,25 +25193,25 @@ GL_PREFIX(WindowPos4dMESA): GL_PREFIX(WindowPos4dvMESA): #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(WindowPos4dvMESA), .-GL_PREFIX(WindowPos4dvMESA) @@ -25185,7 +25222,7 @@ GL_PREFIX(WindowPos4dvMESA): GL_PREFIX(WindowPos4fMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5360(%rax), %r11 + movq 5368(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $40, %rsp @@ -25199,13 +25236,13 @@ GL_PREFIX(WindowPos4fMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $40, %rsp - 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: subq $40, %rsp @@ -25219,7 +25256,7 @@ GL_PREFIX(WindowPos4fMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $40, %rsp - movq 5360(%rax), %r11 + movq 5368(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos4fMESA), .-GL_PREFIX(WindowPos4fMESA) @@ -25230,25 +25267,25 @@ GL_PREFIX(WindowPos4fMESA): GL_PREFIX(WindowPos4fvMESA): #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(WindowPos4fvMESA), .-GL_PREFIX(WindowPos4fvMESA) @@ -25259,7 +25296,7 @@ GL_PREFIX(WindowPos4fvMESA): GL_PREFIX(WindowPos4iMESA): #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 @@ -25273,13 +25310,13 @@ GL_PREFIX(WindowPos4iMESA): popq %rdx 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 @@ -25293,7 +25330,7 @@ GL_PREFIX(WindowPos4iMESA): popq %rdx popq %rsi popq %rdi - movq 5376(%rax), %r11 + movq 5384(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos4iMESA), .-GL_PREFIX(WindowPos4iMESA) @@ -25304,25 +25341,25 @@ GL_PREFIX(WindowPos4iMESA): GL_PREFIX(WindowPos4ivMESA): #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(WindowPos4ivMESA), .-GL_PREFIX(WindowPos4ivMESA) @@ -25333,7 +25370,7 @@ GL_PREFIX(WindowPos4ivMESA): GL_PREFIX(WindowPos4sMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5392(%rax), %r11 + movq 5400(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25347,13 +25384,13 @@ GL_PREFIX(WindowPos4sMESA): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -25367,7 +25404,7 @@ GL_PREFIX(WindowPos4sMESA): popq %rdx popq %rsi popq %rdi - movq 5392(%rax), %r11 + movq 5400(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos4sMESA), .-GL_PREFIX(WindowPos4sMESA) @@ -25378,49 +25415,11 @@ GL_PREFIX(WindowPos4sMESA): GL_PREFIX(WindowPos4svMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5400(%rax), %r11 - jmp *%r11 -#elif defined(PTHREADS) - pushq %rdi - call _x86_64_get_dispatch@PLT - popq %rdi - movq 5400(%rax), %r11 - jmp *%r11 -#else - movq _glapi_Dispatch(%rip), %rax - testq %rax, %rax - je 1f - movq 5400(%rax), %r11 - jmp *%r11 -1: - pushq %rdi - call _glapi_get_dispatch - popq %rdi - movq 5400(%rax), %r11 - jmp *%r11 -#endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(WindowPos4svMESA), .-GL_PREFIX(WindowPos4svMESA) - - .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_676) - .type GL_PREFIX(_dispatch_stub_676), @function - HIDDEN(GL_PREFIX(_dispatch_stub_676)) -GL_PREFIX(_dispatch_stub_676): -#if defined(GLX_USE_TLS) - call _x86_64_get_dispatch@PLT movq 5408(%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 5408(%rax), %r11 jmp *%r11 @@ -25432,20 +25431,12 @@ GL_PREFIX(_dispatch_stub_676): 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 5408(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_676), .-GL_PREFIX(_dispatch_stub_676) + .size GL_PREFIX(WindowPos4svMESA), .-GL_PREFIX(WindowPos4svMESA) .p2align 4,,15 .globl GL_PREFIX(_dispatch_stub_677) @@ -25462,11 +25453,7 @@ GL_PREFIX(_dispatch_stub_677): 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 @@ -25486,11 +25473,7 @@ GL_PREFIX(_dispatch_stub_677): pushq %rdx pushq %rcx pushq %r8 - pushq %r9 - pushq %rbp call _glapi_get_dispatch - popq %rbp - popq %r9 popq %r8 popq %rcx popq %rdx @@ -25513,9 +25496,17 @@ GL_PREFIX(_dispatch_stub_678): #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 5424(%rax), %r11 @@ -25529,9 +25520,17 @@ GL_PREFIX(_dispatch_stub_678): 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 5424(%rax), %r11 @@ -25550,7 +25549,11 @@ GL_PREFIX(_dispatch_stub_679): jmp *%r11 #elif defined(PTHREADS) pushq %rdi + pushq %rsi + pushq %rbp call _x86_64_get_dispatch@PLT + popq %rbp + popq %rsi popq %rdi movq 5432(%rax), %r11 jmp *%r11 @@ -25562,7 +25565,11 @@ GL_PREFIX(_dispatch_stub_679): jmp *%r11 1: pushq %rdi + pushq %rsi + pushq %rbp call _glapi_get_dispatch + popq %rbp + popq %rsi popq %rdi movq 5432(%rax), %r11 jmp *%r11 @@ -25580,11 +25587,7 @@ GL_PREFIX(_dispatch_stub_680): jmp *%r11 #elif defined(PTHREADS) pushq %rdi - pushq %rsi - pushq %rbp call _x86_64_get_dispatch@PLT - popq %rbp - popq %rsi popq %rdi movq 5440(%rax), %r11 jmp *%r11 @@ -25596,11 +25599,7 @@ GL_PREFIX(_dispatch_stub_680): jmp *%r11 1: pushq %rdi - pushq %rsi - pushq %rbp call _glapi_get_dispatch - popq %rbp - popq %rsi popq %rdi movq 5440(%rax), %r11 jmp *%r11 @@ -25619,9 +25618,9 @@ GL_PREFIX(_dispatch_stub_681): #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 5448(%rax), %r11 @@ -25635,9 +25634,9 @@ GL_PREFIX(_dispatch_stub_681): 1: pushq %rdi pushq %rsi - pushq %rdx + pushq %rbp call _glapi_get_dispatch - popq %rdx + popq %rbp popq %rsi popq %rdi movq 5448(%rax), %r11 @@ -25656,7 +25655,11 @@ GL_PREFIX(_dispatch_stub_682): jmp *%r11 #elif defined(PTHREADS) pushq %rdi + pushq %rsi + pushq %rdx call _x86_64_get_dispatch@PLT + popq %rdx + popq %rsi popq %rdi movq 5456(%rax), %r11 jmp *%r11 @@ -25668,7 +25671,11 @@ GL_PREFIX(_dispatch_stub_682): jmp *%r11 1: pushq %rdi + pushq %rsi + pushq %rdx call _glapi_get_dispatch + popq %rdx + popq %rsi popq %rdi movq 5456(%rax), %r11 jmp *%r11 @@ -25686,11 +25693,7 @@ GL_PREFIX(_dispatch_stub_683): jmp *%r11 #elif defined(PTHREADS) pushq %rdi - pushq %rsi - pushq %rbp call _x86_64_get_dispatch@PLT - popq %rbp - popq %rsi popq %rdi movq 5464(%rax), %r11 jmp *%r11 @@ -25702,11 +25705,7 @@ GL_PREFIX(_dispatch_stub_683): jmp *%r11 1: pushq %rdi - pushq %rsi - pushq %rbp call _glapi_get_dispatch - popq %rbp - popq %rsi popq %rdi movq 5464(%rax), %r11 jmp *%r11 @@ -25724,7 +25723,11 @@ GL_PREFIX(_dispatch_stub_684): jmp *%r11 #elif defined(PTHREADS) pushq %rdi + pushq %rsi + pushq %rbp call _x86_64_get_dispatch@PLT + popq %rbp + popq %rsi popq %rdi movq 5472(%rax), %r11 jmp *%r11 @@ -25736,7 +25739,11 @@ GL_PREFIX(_dispatch_stub_684): jmp *%r11 1: pushq %rdi + pushq %rsi + pushq %rbp call _glapi_get_dispatch + popq %rbp + popq %rsi popq %rdi movq 5472(%rax), %r11 jmp *%r11 @@ -25744,12 +25751,42 @@ GL_PREFIX(_dispatch_stub_684): .size GL_PREFIX(_dispatch_stub_684), .-GL_PREFIX(_dispatch_stub_684) .p2align 4,,15 + .globl GL_PREFIX(_dispatch_stub_685) + .type GL_PREFIX(_dispatch_stub_685), @function + HIDDEN(GL_PREFIX(_dispatch_stub_685)) +GL_PREFIX(_dispatch_stub_685): +#if defined(GLX_USE_TLS) + call _x86_64_get_dispatch@PLT + movq 5480(%rax), %r11 + jmp *%r11 +#elif defined(PTHREADS) + pushq %rdi + call _x86_64_get_dispatch@PLT + popq %rdi + movq 5480(%rax), %r11 + jmp *%r11 +#else + movq _glapi_Dispatch(%rip), %rax + testq %rax, %rax + je 1f + movq 5480(%rax), %r11 + jmp *%r11 +1: + pushq %rdi + call _glapi_get_dispatch + popq %rdi + movq 5480(%rax), %r11 + jmp *%r11 +#endif /* defined(GLX_USE_TLS) */ + .size GL_PREFIX(_dispatch_stub_685), .-GL_PREFIX(_dispatch_stub_685) + + .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 5480(%rax), %r11 + movq 5488(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25759,13 +25796,13 @@ GL_PREFIX(AreProgramsResidentNV): popq %rdx popq %rsi 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 @@ -25775,7 +25812,7 @@ GL_PREFIX(AreProgramsResidentNV): popq %rdx popq %rsi popq %rdi - movq 5480(%rax), %r11 + movq 5488(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(AreProgramsResidentNV), .-GL_PREFIX(AreProgramsResidentNV) @@ -25786,7 +25823,7 @@ GL_PREFIX(AreProgramsResidentNV): GL_PREFIX(BindProgramNV): #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 @@ -25796,13 +25833,13 @@ GL_PREFIX(BindProgramNV): popq %rbp 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 @@ -25812,7 +25849,7 @@ GL_PREFIX(BindProgramNV): popq %rbp popq %rsi popq %rdi - movq 5488(%rax), %r11 + movq 5496(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindProgramNV), .-GL_PREFIX(BindProgramNV) @@ -25823,7 +25860,7 @@ GL_PREFIX(BindProgramNV): GL_PREFIX(DeleteProgramsNV): #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 @@ -25833,13 +25870,13 @@ GL_PREFIX(DeleteProgramsNV): popq %rbp popq %rsi 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 @@ -25849,7 +25886,7 @@ GL_PREFIX(DeleteProgramsNV): popq %rbp popq %rsi popq %rdi - movq 5496(%rax), %r11 + movq 5504(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DeleteProgramsNV), .-GL_PREFIX(DeleteProgramsNV) @@ -25860,7 +25897,7 @@ GL_PREFIX(DeleteProgramsNV): GL_PREFIX(ExecuteProgramNV): #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 @@ -25870,13 +25907,13 @@ GL_PREFIX(ExecuteProgramNV): 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 @@ -25886,7 +25923,7 @@ GL_PREFIX(ExecuteProgramNV): popq %rdx popq %rsi popq %rdi - movq 5504(%rax), %r11 + movq 5512(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ExecuteProgramNV), .-GL_PREFIX(ExecuteProgramNV) @@ -25897,7 +25934,7 @@ GL_PREFIX(ExecuteProgramNV): GL_PREFIX(GenProgramsNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5512(%rax), %r11 + movq 5520(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25907,13 +25944,13 @@ GL_PREFIX(GenProgramsNV): popq %rbp popq %rsi popq %rdi - movq 5512(%rax), %r11 + movq 5520(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5512(%rax), %r11 + movq 5520(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25923,7 +25960,7 @@ GL_PREFIX(GenProgramsNV): popq %rbp popq %rsi popq %rdi - movq 5512(%rax), %r11 + movq 5520(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenProgramsNV), .-GL_PREFIX(GenProgramsNV) @@ -25934,7 +25971,7 @@ GL_PREFIX(GenProgramsNV): GL_PREFIX(GetProgramParameterdvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5520(%rax), %r11 + movq 5528(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25948,13 +25985,13 @@ GL_PREFIX(GetProgramParameterdvNV): popq %rdx popq %rsi popq %rdi - movq 5520(%rax), %r11 + movq 5528(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5520(%rax), %r11 + movq 5528(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25968,7 +26005,7 @@ GL_PREFIX(GetProgramParameterdvNV): popq %rdx popq %rsi popq %rdi - movq 5520(%rax), %r11 + movq 5528(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetProgramParameterdvNV), .-GL_PREFIX(GetProgramParameterdvNV) @@ -25979,7 +26016,7 @@ GL_PREFIX(GetProgramParameterdvNV): GL_PREFIX(GetProgramParameterfvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5528(%rax), %r11 + movq 5536(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25993,13 +26030,13 @@ GL_PREFIX(GetProgramParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 5528(%rax), %r11 + movq 5536(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5528(%rax), %r11 + movq 5536(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26013,7 +26050,7 @@ GL_PREFIX(GetProgramParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 5528(%rax), %r11 + movq 5536(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetProgramParameterfvNV), .-GL_PREFIX(GetProgramParameterfvNV) @@ -26024,7 +26061,7 @@ GL_PREFIX(GetProgramParameterfvNV): GL_PREFIX(GetProgramStringNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5536(%rax), %r11 + movq 5544(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26034,13 +26071,13 @@ GL_PREFIX(GetProgramStringNV): popq %rdx popq %rsi popq %rdi - movq 5536(%rax), %r11 + movq 5544(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5536(%rax), %r11 + movq 5544(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26050,7 +26087,7 @@ GL_PREFIX(GetProgramStringNV): popq %rdx popq %rsi popq %rdi - movq 5536(%rax), %r11 + movq 5544(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetProgramStringNV), .-GL_PREFIX(GetProgramStringNV) @@ -26061,7 +26098,7 @@ GL_PREFIX(GetProgramStringNV): GL_PREFIX(GetProgramivNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5544(%rax), %r11 + movq 5552(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26071,13 +26108,13 @@ GL_PREFIX(GetProgramivNV): popq %rdx popq %rsi popq %rdi - movq 5544(%rax), %r11 + movq 5552(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5544(%rax), %r11 + movq 5552(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26087,7 +26124,7 @@ GL_PREFIX(GetProgramivNV): popq %rdx popq %rsi popq %rdi - movq 5544(%rax), %r11 + movq 5552(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetProgramivNV), .-GL_PREFIX(GetProgramivNV) @@ -26098,7 +26135,7 @@ GL_PREFIX(GetProgramivNV): GL_PREFIX(GetTrackMatrixivNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5552(%rax), %r11 + movq 5560(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26112,13 +26149,13 @@ GL_PREFIX(GetTrackMatrixivNV): popq %rdx popq %rsi popq %rdi - movq 5552(%rax), %r11 + movq 5560(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5552(%rax), %r11 + movq 5560(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26132,7 +26169,7 @@ GL_PREFIX(GetTrackMatrixivNV): popq %rdx popq %rsi popq %rdi - movq 5552(%rax), %r11 + movq 5560(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetTrackMatrixivNV), .-GL_PREFIX(GetTrackMatrixivNV) @@ -26143,7 +26180,7 @@ GL_PREFIX(GetTrackMatrixivNV): GL_PREFIX(GetVertexAttribPointervNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5560(%rax), %r11 + movq 5568(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26153,13 +26190,13 @@ GL_PREFIX(GetVertexAttribPointervNV): popq %rdx popq %rsi popq %rdi - movq 5560(%rax), %r11 + movq 5568(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5560(%rax), %r11 + movq 5568(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26169,7 +26206,7 @@ GL_PREFIX(GetVertexAttribPointervNV): popq %rdx popq %rsi popq %rdi - movq 5560(%rax), %r11 + movq 5568(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetVertexAttribPointervNV), .-GL_PREFIX(GetVertexAttribPointervNV) @@ -26180,7 +26217,7 @@ GL_PREFIX(GetVertexAttribPointervNV): GL_PREFIX(GetVertexAttribdvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5568(%rax), %r11 + movq 5576(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26190,13 +26227,13 @@ GL_PREFIX(GetVertexAttribdvNV): popq %rdx popq %rsi popq %rdi - movq 5568(%rax), %r11 + movq 5576(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5568(%rax), %r11 + movq 5576(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26206,7 +26243,7 @@ GL_PREFIX(GetVertexAttribdvNV): popq %rdx popq %rsi popq %rdi - movq 5568(%rax), %r11 + movq 5576(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetVertexAttribdvNV), .-GL_PREFIX(GetVertexAttribdvNV) @@ -26217,7 +26254,7 @@ GL_PREFIX(GetVertexAttribdvNV): GL_PREFIX(GetVertexAttribfvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5576(%rax), %r11 + movq 5584(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26227,13 +26264,13 @@ GL_PREFIX(GetVertexAttribfvNV): popq %rdx popq %rsi popq %rdi - movq 5576(%rax), %r11 + movq 5584(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5576(%rax), %r11 + movq 5584(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26243,7 +26280,7 @@ GL_PREFIX(GetVertexAttribfvNV): popq %rdx popq %rsi popq %rdi - movq 5576(%rax), %r11 + movq 5584(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetVertexAttribfvNV), .-GL_PREFIX(GetVertexAttribfvNV) @@ -26254,7 +26291,7 @@ GL_PREFIX(GetVertexAttribfvNV): GL_PREFIX(GetVertexAttribivNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5584(%rax), %r11 + movq 5592(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26264,13 +26301,13 @@ GL_PREFIX(GetVertexAttribivNV): popq %rdx popq %rsi popq %rdi - movq 5584(%rax), %r11 + movq 5592(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5584(%rax), %r11 + movq 5592(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26280,7 +26317,7 @@ GL_PREFIX(GetVertexAttribivNV): popq %rdx popq %rsi popq %rdi - movq 5584(%rax), %r11 + movq 5592(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetVertexAttribivNV), .-GL_PREFIX(GetVertexAttribivNV) @@ -26291,25 +26328,25 @@ GL_PREFIX(GetVertexAttribivNV): GL_PREFIX(IsProgramNV): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 5592(%rax), %r11 + movq 5600(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IsProgramNV), .-GL_PREFIX(IsProgramNV) @@ -26320,7 +26357,7 @@ GL_PREFIX(IsProgramNV): GL_PREFIX(LoadProgramNV): #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 @@ -26334,13 +26371,13 @@ GL_PREFIX(LoadProgramNV): popq %rdx 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 @@ -26354,7 +26391,7 @@ GL_PREFIX(LoadProgramNV): popq %rdx popq %rsi popq %rdi - movq 5600(%rax), %r11 + movq 5608(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(LoadProgramNV), .-GL_PREFIX(LoadProgramNV) @@ -26365,7 +26402,7 @@ GL_PREFIX(LoadProgramNV): GL_PREFIX(ProgramParameters4dvNV): #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 @@ -26379,13 +26416,13 @@ GL_PREFIX(ProgramParameters4dvNV): popq %rdx 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 @@ -26399,7 +26436,7 @@ GL_PREFIX(ProgramParameters4dvNV): popq %rdx popq %rsi popq %rdi - movq 5608(%rax), %r11 + movq 5616(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProgramParameters4dvNV), .-GL_PREFIX(ProgramParameters4dvNV) @@ -26410,7 +26447,7 @@ GL_PREFIX(ProgramParameters4dvNV): GL_PREFIX(ProgramParameters4fvNV): #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 @@ -26424,13 +26461,13 @@ GL_PREFIX(ProgramParameters4fvNV): 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 @@ -26444,7 +26481,7 @@ GL_PREFIX(ProgramParameters4fvNV): popq %rdx popq %rsi popq %rdi - movq 5616(%rax), %r11 + movq 5624(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProgramParameters4fvNV), .-GL_PREFIX(ProgramParameters4fvNV) @@ -26455,7 +26492,7 @@ GL_PREFIX(ProgramParameters4fvNV): GL_PREFIX(RequestResidentProgramsNV): #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 @@ -26465,13 +26502,13 @@ GL_PREFIX(RequestResidentProgramsNV): 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 @@ -26481,7 +26518,7 @@ GL_PREFIX(RequestResidentProgramsNV): popq %rbp popq %rsi popq %rdi - movq 5624(%rax), %r11 + movq 5632(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(RequestResidentProgramsNV), .-GL_PREFIX(RequestResidentProgramsNV) @@ -26492,7 +26529,7 @@ GL_PREFIX(RequestResidentProgramsNV): GL_PREFIX(TrackMatrixNV): #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 @@ -26506,13 +26543,13 @@ GL_PREFIX(TrackMatrixNV): 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 @@ -26526,7 +26563,7 @@ GL_PREFIX(TrackMatrixNV): popq %rdx popq %rsi popq %rdi - movq 5632(%rax), %r11 + movq 5640(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TrackMatrixNV), .-GL_PREFIX(TrackMatrixNV) @@ -26537,7 +26574,7 @@ GL_PREFIX(TrackMatrixNV): GL_PREFIX(VertexAttrib1dNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5640(%rax), %r11 + movq 5648(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -26547,13 +26584,13 @@ GL_PREFIX(VertexAttrib1dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - 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: subq $24, %rsp @@ -26563,7 +26600,7 @@ GL_PREFIX(VertexAttrib1dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 5640(%rax), %r11 + movq 5648(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib1dNV), .-GL_PREFIX(VertexAttrib1dNV) @@ -26574,7 +26611,7 @@ GL_PREFIX(VertexAttrib1dNV): GL_PREFIX(VertexAttrib1dvNV): #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 @@ -26584,13 +26621,13 @@ GL_PREFIX(VertexAttrib1dvNV): popq %rbp 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 @@ -26600,7 +26637,7 @@ GL_PREFIX(VertexAttrib1dvNV): popq %rbp popq %rsi popq %rdi - movq 5648(%rax), %r11 + movq 5656(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib1dvNV), .-GL_PREFIX(VertexAttrib1dvNV) @@ -26611,7 +26648,7 @@ GL_PREFIX(VertexAttrib1dvNV): GL_PREFIX(VertexAttrib1fNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5656(%rax), %r11 + movq 5664(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -26621,13 +26658,13 @@ GL_PREFIX(VertexAttrib1fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - 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: subq $24, %rsp @@ -26637,7 +26674,7 @@ GL_PREFIX(VertexAttrib1fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 5656(%rax), %r11 + movq 5664(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib1fNV), .-GL_PREFIX(VertexAttrib1fNV) @@ -26648,7 +26685,7 @@ GL_PREFIX(VertexAttrib1fNV): GL_PREFIX(VertexAttrib1fvNV): #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 @@ -26658,13 +26695,13 @@ GL_PREFIX(VertexAttrib1fvNV): popq %rbp 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 @@ -26674,7 +26711,7 @@ GL_PREFIX(VertexAttrib1fvNV): popq %rbp popq %rsi popq %rdi - movq 5664(%rax), %r11 + movq 5672(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib1fvNV), .-GL_PREFIX(VertexAttrib1fvNV) @@ -26685,7 +26722,7 @@ GL_PREFIX(VertexAttrib1fvNV): GL_PREFIX(VertexAttrib1sNV): #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 @@ -26695,13 +26732,13 @@ GL_PREFIX(VertexAttrib1sNV): popq %rbp 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 @@ -26711,7 +26748,7 @@ GL_PREFIX(VertexAttrib1sNV): popq %rbp popq %rsi popq %rdi - movq 5672(%rax), %r11 + movq 5680(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib1sNV), .-GL_PREFIX(VertexAttrib1sNV) @@ -26722,7 +26759,7 @@ GL_PREFIX(VertexAttrib1sNV): GL_PREFIX(VertexAttrib1svNV): #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 @@ -26732,13 +26769,13 @@ GL_PREFIX(VertexAttrib1svNV): popq %rbp 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 @@ -26748,7 +26785,7 @@ GL_PREFIX(VertexAttrib1svNV): popq %rbp popq %rsi popq %rdi - movq 5680(%rax), %r11 + movq 5688(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib1svNV), .-GL_PREFIX(VertexAttrib1svNV) @@ -26759,7 +26796,7 @@ GL_PREFIX(VertexAttrib1svNV): GL_PREFIX(VertexAttrib2dNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5688(%rax), %r11 + movq 5696(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -26771,13 +26808,13 @@ GL_PREFIX(VertexAttrib2dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - 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: subq $24, %rsp @@ -26789,7 +26826,7 @@ GL_PREFIX(VertexAttrib2dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 5688(%rax), %r11 + movq 5696(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib2dNV), .-GL_PREFIX(VertexAttrib2dNV) @@ -26800,7 +26837,7 @@ GL_PREFIX(VertexAttrib2dNV): GL_PREFIX(VertexAttrib2dvNV): #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 @@ -26810,13 +26847,13 @@ GL_PREFIX(VertexAttrib2dvNV): popq %rbp 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 @@ -26826,7 +26863,7 @@ GL_PREFIX(VertexAttrib2dvNV): popq %rbp popq %rsi popq %rdi - movq 5696(%rax), %r11 + movq 5704(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib2dvNV), .-GL_PREFIX(VertexAttrib2dvNV) @@ -26837,7 +26874,7 @@ GL_PREFIX(VertexAttrib2dvNV): GL_PREFIX(VertexAttrib2fNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5704(%rax), %r11 + movq 5712(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -26849,13 +26886,13 @@ GL_PREFIX(VertexAttrib2fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - 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: subq $24, %rsp @@ -26867,7 +26904,7 @@ GL_PREFIX(VertexAttrib2fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 5704(%rax), %r11 + movq 5712(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib2fNV), .-GL_PREFIX(VertexAttrib2fNV) @@ -26878,7 +26915,7 @@ GL_PREFIX(VertexAttrib2fNV): GL_PREFIX(VertexAttrib2fvNV): #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 @@ -26888,13 +26925,13 @@ GL_PREFIX(VertexAttrib2fvNV): popq %rbp 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 @@ -26904,7 +26941,7 @@ GL_PREFIX(VertexAttrib2fvNV): popq %rbp popq %rsi popq %rdi - movq 5712(%rax), %r11 + movq 5720(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib2fvNV), .-GL_PREFIX(VertexAttrib2fvNV) @@ -26915,7 +26952,7 @@ GL_PREFIX(VertexAttrib2fvNV): GL_PREFIX(VertexAttrib2sNV): #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 @@ -26925,13 +26962,13 @@ GL_PREFIX(VertexAttrib2sNV): 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 @@ -26941,7 +26978,7 @@ GL_PREFIX(VertexAttrib2sNV): popq %rdx popq %rsi popq %rdi - movq 5720(%rax), %r11 + movq 5728(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib2sNV), .-GL_PREFIX(VertexAttrib2sNV) @@ -26952,7 +26989,7 @@ GL_PREFIX(VertexAttrib2sNV): GL_PREFIX(VertexAttrib2svNV): #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 @@ -26962,13 +26999,13 @@ GL_PREFIX(VertexAttrib2svNV): popq %rbp 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 @@ -26978,7 +27015,7 @@ GL_PREFIX(VertexAttrib2svNV): popq %rbp popq %rsi popq %rdi - movq 5728(%rax), %r11 + movq 5736(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib2svNV), .-GL_PREFIX(VertexAttrib2svNV) @@ -26989,7 +27026,7 @@ GL_PREFIX(VertexAttrib2svNV): GL_PREFIX(VertexAttrib3dNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5736(%rax), %r11 + movq 5744(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $40, %rsp @@ -27003,13 +27040,13 @@ GL_PREFIX(VertexAttrib3dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - 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: subq $40, %rsp @@ -27023,7 +27060,7 @@ GL_PREFIX(VertexAttrib3dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - movq 5736(%rax), %r11 + movq 5744(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib3dNV), .-GL_PREFIX(VertexAttrib3dNV) @@ -27034,7 +27071,7 @@ GL_PREFIX(VertexAttrib3dNV): GL_PREFIX(VertexAttrib3dvNV): #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 @@ -27044,13 +27081,13 @@ GL_PREFIX(VertexAttrib3dvNV): popq %rbp 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 @@ -27060,7 +27097,7 @@ GL_PREFIX(VertexAttrib3dvNV): popq %rbp popq %rsi popq %rdi - movq 5744(%rax), %r11 + movq 5752(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib3dvNV), .-GL_PREFIX(VertexAttrib3dvNV) @@ -27071,7 +27108,7 @@ GL_PREFIX(VertexAttrib3dvNV): GL_PREFIX(VertexAttrib3fNV): #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 $40, %rsp @@ -27085,13 +27122,13 @@ GL_PREFIX(VertexAttrib3fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %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 $40, %rsp @@ -27105,7 +27142,7 @@ GL_PREFIX(VertexAttrib3fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - movq 5752(%rax), %r11 + movq 5760(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib3fNV), .-GL_PREFIX(VertexAttrib3fNV) @@ -27116,7 +27153,7 @@ GL_PREFIX(VertexAttrib3fNV): GL_PREFIX(VertexAttrib3fvNV): #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 @@ -27126,13 +27163,13 @@ GL_PREFIX(VertexAttrib3fvNV): 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 @@ -27142,7 +27179,7 @@ GL_PREFIX(VertexAttrib3fvNV): popq %rbp popq %rsi popq %rdi - movq 5760(%rax), %r11 + movq 5768(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib3fvNV), .-GL_PREFIX(VertexAttrib3fvNV) @@ -27153,7 +27190,7 @@ GL_PREFIX(VertexAttrib3fvNV): GL_PREFIX(VertexAttrib3sNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5768(%rax), %r11 + movq 5776(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27167,13 +27204,13 @@ GL_PREFIX(VertexAttrib3sNV): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -27187,7 +27224,7 @@ GL_PREFIX(VertexAttrib3sNV): popq %rdx popq %rsi popq %rdi - movq 5768(%rax), %r11 + movq 5776(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib3sNV), .-GL_PREFIX(VertexAttrib3sNV) @@ -27198,7 +27235,7 @@ GL_PREFIX(VertexAttrib3sNV): GL_PREFIX(VertexAttrib3svNV): #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 @@ -27208,13 +27245,13 @@ GL_PREFIX(VertexAttrib3svNV): 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 @@ -27224,7 +27261,7 @@ GL_PREFIX(VertexAttrib3svNV): popq %rbp popq %rsi popq %rdi - movq 5776(%rax), %r11 + movq 5784(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib3svNV), .-GL_PREFIX(VertexAttrib3svNV) @@ -27235,7 +27272,7 @@ GL_PREFIX(VertexAttrib3svNV): GL_PREFIX(VertexAttrib4dNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5784(%rax), %r11 + movq 5792(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $40, %rsp @@ -27251,13 +27288,13 @@ GL_PREFIX(VertexAttrib4dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - 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: subq $40, %rsp @@ -27273,7 +27310,7 @@ GL_PREFIX(VertexAttrib4dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - movq 5784(%rax), %r11 + movq 5792(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4dNV), .-GL_PREFIX(VertexAttrib4dNV) @@ -27284,7 +27321,7 @@ GL_PREFIX(VertexAttrib4dNV): GL_PREFIX(VertexAttrib4dvNV): #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 @@ -27294,13 +27331,13 @@ GL_PREFIX(VertexAttrib4dvNV): 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 @@ -27310,7 +27347,7 @@ GL_PREFIX(VertexAttrib4dvNV): popq %rbp popq %rsi popq %rdi - movq 5792(%rax), %r11 + movq 5800(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4dvNV), .-GL_PREFIX(VertexAttrib4dvNV) @@ -27321,7 +27358,7 @@ GL_PREFIX(VertexAttrib4dvNV): GL_PREFIX(VertexAttrib4fNV): #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 $40, %rsp @@ -27337,13 +27374,13 @@ GL_PREFIX(VertexAttrib4fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %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 $40, %rsp @@ -27359,7 +27396,7 @@ GL_PREFIX(VertexAttrib4fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - movq 5800(%rax), %r11 + movq 5808(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4fNV), .-GL_PREFIX(VertexAttrib4fNV) @@ -27370,7 +27407,7 @@ GL_PREFIX(VertexAttrib4fNV): GL_PREFIX(VertexAttrib4fvNV): #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 @@ -27380,13 +27417,13 @@ GL_PREFIX(VertexAttrib4fvNV): 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 @@ -27396,7 +27433,7 @@ GL_PREFIX(VertexAttrib4fvNV): popq %rbp popq %rsi popq %rdi - movq 5808(%rax), %r11 + movq 5816(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4fvNV), .-GL_PREFIX(VertexAttrib4fvNV) @@ -27407,7 +27444,7 @@ GL_PREFIX(VertexAttrib4fvNV): GL_PREFIX(VertexAttrib4sNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5816(%rax), %r11 + movq 5824(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27421,13 +27458,13 @@ GL_PREFIX(VertexAttrib4sNV): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -27441,7 +27478,7 @@ GL_PREFIX(VertexAttrib4sNV): popq %rdx popq %rsi popq %rdi - movq 5816(%rax), %r11 + movq 5824(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4sNV), .-GL_PREFIX(VertexAttrib4sNV) @@ -27452,7 +27489,7 @@ GL_PREFIX(VertexAttrib4sNV): GL_PREFIX(VertexAttrib4svNV): #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 @@ -27462,13 +27499,13 @@ GL_PREFIX(VertexAttrib4svNV): 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 @@ -27478,7 +27515,7 @@ GL_PREFIX(VertexAttrib4svNV): popq %rbp popq %rsi popq %rdi - movq 5824(%rax), %r11 + movq 5832(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4svNV), .-GL_PREFIX(VertexAttrib4svNV) @@ -27489,7 +27526,7 @@ GL_PREFIX(VertexAttrib4svNV): GL_PREFIX(VertexAttrib4ubNV): #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 @@ -27503,13 +27540,13 @@ GL_PREFIX(VertexAttrib4ubNV): 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 @@ -27523,7 +27560,7 @@ GL_PREFIX(VertexAttrib4ubNV): popq %rdx popq %rsi popq %rdi - movq 5832(%rax), %r11 + movq 5840(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4ubNV), .-GL_PREFIX(VertexAttrib4ubNV) @@ -27534,7 +27571,7 @@ GL_PREFIX(VertexAttrib4ubNV): GL_PREFIX(VertexAttrib4ubvNV): #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 @@ -27544,13 +27581,13 @@ GL_PREFIX(VertexAttrib4ubvNV): 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 @@ -27560,7 +27597,7 @@ GL_PREFIX(VertexAttrib4ubvNV): popq %rbp popq %rsi popq %rdi - movq 5840(%rax), %r11 + movq 5848(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4ubvNV), .-GL_PREFIX(VertexAttrib4ubvNV) @@ -27571,7 +27608,7 @@ GL_PREFIX(VertexAttrib4ubvNV): GL_PREFIX(VertexAttribPointerNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5848(%rax), %r11 + movq 5856(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27585,13 +27622,13 @@ GL_PREFIX(VertexAttribPointerNV): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -27605,7 +27642,7 @@ GL_PREFIX(VertexAttribPointerNV): popq %rdx popq %rsi popq %rdi - movq 5848(%rax), %r11 + movq 5856(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribPointerNV), .-GL_PREFIX(VertexAttribPointerNV) @@ -27616,7 +27653,7 @@ GL_PREFIX(VertexAttribPointerNV): GL_PREFIX(VertexAttribs1dvNV): #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 @@ -27626,13 +27663,13 @@ GL_PREFIX(VertexAttribs1dvNV): popq %rdx 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 @@ -27642,7 +27679,7 @@ GL_PREFIX(VertexAttribs1dvNV): popq %rdx popq %rsi popq %rdi - movq 5856(%rax), %r11 + movq 5864(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs1dvNV), .-GL_PREFIX(VertexAttribs1dvNV) @@ -27653,7 +27690,7 @@ GL_PREFIX(VertexAttribs1dvNV): GL_PREFIX(VertexAttribs1fvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5864(%rax), %r11 + movq 5872(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27663,13 +27700,13 @@ GL_PREFIX(VertexAttribs1fvNV): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -27679,7 +27716,7 @@ GL_PREFIX(VertexAttribs1fvNV): popq %rdx popq %rsi popq %rdi - movq 5864(%rax), %r11 + movq 5872(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs1fvNV), .-GL_PREFIX(VertexAttribs1fvNV) @@ -27690,7 +27727,7 @@ GL_PREFIX(VertexAttribs1fvNV): GL_PREFIX(VertexAttribs1svNV): #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 @@ -27700,13 +27737,13 @@ GL_PREFIX(VertexAttribs1svNV): popq %rdx 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 @@ -27716,7 +27753,7 @@ GL_PREFIX(VertexAttribs1svNV): popq %rdx popq %rsi popq %rdi - movq 5872(%rax), %r11 + movq 5880(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs1svNV), .-GL_PREFIX(VertexAttribs1svNV) @@ -27727,7 +27764,7 @@ GL_PREFIX(VertexAttribs1svNV): GL_PREFIX(VertexAttribs2dvNV): #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 @@ -27737,13 +27774,13 @@ GL_PREFIX(VertexAttribs2dvNV): 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 @@ -27753,7 +27790,7 @@ GL_PREFIX(VertexAttribs2dvNV): popq %rdx popq %rsi popq %rdi - movq 5880(%rax), %r11 + movq 5888(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs2dvNV), .-GL_PREFIX(VertexAttribs2dvNV) @@ -27764,7 +27801,7 @@ GL_PREFIX(VertexAttribs2dvNV): GL_PREFIX(VertexAttribs2fvNV): #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 @@ -27774,13 +27811,13 @@ GL_PREFIX(VertexAttribs2fvNV): popq %rdx 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 @@ -27790,7 +27827,7 @@ GL_PREFIX(VertexAttribs2fvNV): popq %rdx popq %rsi popq %rdi - movq 5888(%rax), %r11 + movq 5896(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs2fvNV), .-GL_PREFIX(VertexAttribs2fvNV) @@ -27801,7 +27838,7 @@ GL_PREFIX(VertexAttribs2fvNV): GL_PREFIX(VertexAttribs2svNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5896(%rax), %r11 + movq 5904(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27811,13 +27848,13 @@ GL_PREFIX(VertexAttribs2svNV): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -27827,7 +27864,7 @@ GL_PREFIX(VertexAttribs2svNV): popq %rdx popq %rsi popq %rdi - movq 5896(%rax), %r11 + movq 5904(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs2svNV), .-GL_PREFIX(VertexAttribs2svNV) @@ -27838,7 +27875,7 @@ GL_PREFIX(VertexAttribs2svNV): GL_PREFIX(VertexAttribs3dvNV): #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 @@ -27848,13 +27885,13 @@ GL_PREFIX(VertexAttribs3dvNV): popq %rdx 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 @@ -27864,7 +27901,7 @@ GL_PREFIX(VertexAttribs3dvNV): popq %rdx popq %rsi popq %rdi - movq 5904(%rax), %r11 + movq 5912(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs3dvNV), .-GL_PREFIX(VertexAttribs3dvNV) @@ -27875,7 +27912,7 @@ GL_PREFIX(VertexAttribs3dvNV): GL_PREFIX(VertexAttribs3fvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5912(%rax), %r11 + movq 5920(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27885,13 +27922,13 @@ GL_PREFIX(VertexAttribs3fvNV): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -27901,7 +27938,7 @@ GL_PREFIX(VertexAttribs3fvNV): popq %rdx popq %rsi popq %rdi - movq 5912(%rax), %r11 + movq 5920(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs3fvNV), .-GL_PREFIX(VertexAttribs3fvNV) @@ -27912,7 +27949,7 @@ GL_PREFIX(VertexAttribs3fvNV): GL_PREFIX(VertexAttribs3svNV): #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 @@ -27922,13 +27959,13 @@ GL_PREFIX(VertexAttribs3svNV): popq %rdx 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 @@ -27938,7 +27975,7 @@ GL_PREFIX(VertexAttribs3svNV): popq %rdx popq %rsi popq %rdi - movq 5920(%rax), %r11 + movq 5928(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs3svNV), .-GL_PREFIX(VertexAttribs3svNV) @@ -27949,7 +27986,7 @@ GL_PREFIX(VertexAttribs3svNV): GL_PREFIX(VertexAttribs4dvNV): #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 @@ -27959,13 +27996,13 @@ GL_PREFIX(VertexAttribs4dvNV): 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 @@ -27975,7 +28012,7 @@ GL_PREFIX(VertexAttribs4dvNV): popq %rdx popq %rsi popq %rdi - movq 5928(%rax), %r11 + movq 5936(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs4dvNV), .-GL_PREFIX(VertexAttribs4dvNV) @@ -27986,7 +28023,7 @@ GL_PREFIX(VertexAttribs4dvNV): GL_PREFIX(VertexAttribs4fvNV): #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 @@ -27996,13 +28033,13 @@ GL_PREFIX(VertexAttribs4fvNV): popq %rdx 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 @@ -28012,7 +28049,7 @@ GL_PREFIX(VertexAttribs4fvNV): popq %rdx popq %rsi popq %rdi - movq 5936(%rax), %r11 + movq 5944(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs4fvNV), .-GL_PREFIX(VertexAttribs4fvNV) @@ -28023,7 +28060,7 @@ GL_PREFIX(VertexAttribs4fvNV): GL_PREFIX(VertexAttribs4svNV): #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 @@ -28033,13 +28070,13 @@ GL_PREFIX(VertexAttribs4svNV): 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 @@ -28049,7 +28086,7 @@ GL_PREFIX(VertexAttribs4svNV): popq %rdx popq %rsi popq %rdi - movq 5944(%rax), %r11 + movq 5952(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs4svNV), .-GL_PREFIX(VertexAttribs4svNV) @@ -28060,7 +28097,7 @@ GL_PREFIX(VertexAttribs4svNV): GL_PREFIX(VertexAttribs4ubvNV): #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 @@ -28070,13 +28107,13 @@ GL_PREFIX(VertexAttribs4ubvNV): popq %rdx 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 @@ -28086,7 +28123,7 @@ GL_PREFIX(VertexAttribs4ubvNV): popq %rdx popq %rsi popq %rdi - movq 5952(%rax), %r11 + movq 5960(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs4ubvNV), .-GL_PREFIX(VertexAttribs4ubvNV) @@ -28097,7 +28134,7 @@ GL_PREFIX(VertexAttribs4ubvNV): GL_PREFIX(GetTexBumpParameterfvATI): #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 @@ -28107,13 +28144,13 @@ GL_PREFIX(GetTexBumpParameterfvATI): popq %rbp 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 @@ -28123,7 +28160,7 @@ GL_PREFIX(GetTexBumpParameterfvATI): popq %rbp popq %rsi popq %rdi - movq 5960(%rax), %r11 + movq 5968(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetTexBumpParameterfvATI), .-GL_PREFIX(GetTexBumpParameterfvATI) @@ -28134,7 +28171,7 @@ GL_PREFIX(GetTexBumpParameterfvATI): GL_PREFIX(GetTexBumpParameterivATI): #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 @@ -28144,13 +28181,13 @@ GL_PREFIX(GetTexBumpParameterivATI): popq %rbp 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 @@ -28160,7 +28197,7 @@ GL_PREFIX(GetTexBumpParameterivATI): popq %rbp popq %rsi popq %rdi - movq 5968(%rax), %r11 + movq 5976(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetTexBumpParameterivATI), .-GL_PREFIX(GetTexBumpParameterivATI) @@ -28171,7 +28208,7 @@ GL_PREFIX(GetTexBumpParameterivATI): GL_PREFIX(TexBumpParameterfvATI): #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 @@ -28181,13 +28218,13 @@ GL_PREFIX(TexBumpParameterfvATI): popq %rbp 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 @@ -28197,7 +28234,7 @@ GL_PREFIX(TexBumpParameterfvATI): popq %rbp popq %rsi popq %rdi - movq 5976(%rax), %r11 + movq 5984(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexBumpParameterfvATI), .-GL_PREFIX(TexBumpParameterfvATI) @@ -28208,7 +28245,7 @@ GL_PREFIX(TexBumpParameterfvATI): GL_PREFIX(TexBumpParameterivATI): #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 @@ -28218,13 +28255,13 @@ GL_PREFIX(TexBumpParameterivATI): popq %rbp 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 @@ -28234,7 +28271,7 @@ GL_PREFIX(TexBumpParameterivATI): popq %rbp popq %rsi popq %rdi - movq 5984(%rax), %r11 + movq 5992(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexBumpParameterivATI), .-GL_PREFIX(TexBumpParameterivATI) @@ -28245,7 +28282,7 @@ GL_PREFIX(TexBumpParameterivATI): GL_PREFIX(AlphaFragmentOp1ATI): #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 @@ -28263,13 +28300,13 @@ GL_PREFIX(AlphaFragmentOp1ATI): 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 @@ -28287,7 +28324,7 @@ GL_PREFIX(AlphaFragmentOp1ATI): popq %rdx popq %rsi popq %rdi - movq 5992(%rax), %r11 + movq 6000(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(AlphaFragmentOp1ATI), .-GL_PREFIX(AlphaFragmentOp1ATI) @@ -28298,7 +28335,7 @@ GL_PREFIX(AlphaFragmentOp1ATI): GL_PREFIX(AlphaFragmentOp2ATI): #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 @@ -28316,13 +28353,13 @@ GL_PREFIX(AlphaFragmentOp2ATI): 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 @@ -28340,7 +28377,7 @@ GL_PREFIX(AlphaFragmentOp2ATI): popq %rdx popq %rsi popq %rdi - movq 6000(%rax), %r11 + movq 6008(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(AlphaFragmentOp2ATI), .-GL_PREFIX(AlphaFragmentOp2ATI) @@ -28351,7 +28388,7 @@ GL_PREFIX(AlphaFragmentOp2ATI): GL_PREFIX(AlphaFragmentOp3ATI): #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 @@ -28369,13 +28406,13 @@ GL_PREFIX(AlphaFragmentOp3ATI): 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 @@ -28393,7 +28430,7 @@ GL_PREFIX(AlphaFragmentOp3ATI): popq %rdx popq %rsi popq %rdi - movq 6008(%rax), %r11 + movq 6016(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(AlphaFragmentOp3ATI), .-GL_PREFIX(AlphaFragmentOp3ATI) @@ -28404,25 +28441,25 @@ GL_PREFIX(AlphaFragmentOp3ATI): GL_PREFIX(BeginFragmentShaderATI): #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 %rbp call _x86_64_get_dispatch@PLT popq %rbp - 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 %rbp call _glapi_get_dispatch popq %rbp - movq 6016(%rax), %r11 + movq 6024(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BeginFragmentShaderATI), .-GL_PREFIX(BeginFragmentShaderATI) @@ -28433,25 +28470,25 @@ GL_PREFIX(BeginFragmentShaderATI): GL_PREFIX(BindFragmentShaderATI): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 6024(%rax), %r11 + movq 6032(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindFragmentShaderATI), .-GL_PREFIX(BindFragmentShaderATI) @@ -28462,7 +28499,7 @@ GL_PREFIX(BindFragmentShaderATI): GL_PREFIX(ColorFragmentOp1ATI): #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 @@ -28480,13 +28517,13 @@ GL_PREFIX(ColorFragmentOp1ATI): 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 @@ -28504,7 +28541,7 @@ GL_PREFIX(ColorFragmentOp1ATI): popq %rdx popq %rsi popq %rdi - movq 6032(%rax), %r11 + movq 6040(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorFragmentOp1ATI), .-GL_PREFIX(ColorFragmentOp1ATI) @@ -28515,7 +28552,7 @@ GL_PREFIX(ColorFragmentOp1ATI): GL_PREFIX(ColorFragmentOp2ATI): #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 @@ -28533,13 +28570,13 @@ GL_PREFIX(ColorFragmentOp2ATI): 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 @@ -28557,7 +28594,7 @@ GL_PREFIX(ColorFragmentOp2ATI): popq %rdx popq %rsi popq %rdi - movq 6040(%rax), %r11 + movq 6048(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorFragmentOp2ATI), .-GL_PREFIX(ColorFragmentOp2ATI) @@ -28568,7 +28605,7 @@ GL_PREFIX(ColorFragmentOp2ATI): GL_PREFIX(ColorFragmentOp3ATI): #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 @@ -28586,13 +28623,13 @@ GL_PREFIX(ColorFragmentOp3ATI): 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 @@ -28610,7 +28647,7 @@ GL_PREFIX(ColorFragmentOp3ATI): popq %rdx popq %rsi popq %rdi - movq 6048(%rax), %r11 + movq 6056(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorFragmentOp3ATI), .-GL_PREFIX(ColorFragmentOp3ATI) @@ -28621,25 +28658,25 @@ GL_PREFIX(ColorFragmentOp3ATI): GL_PREFIX(DeleteFragmentShaderATI): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 6056(%rax), %r11 + movq 6064(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DeleteFragmentShaderATI), .-GL_PREFIX(DeleteFragmentShaderATI) @@ -28650,25 +28687,25 @@ GL_PREFIX(DeleteFragmentShaderATI): GL_PREFIX(EndFragmentShaderATI): #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 %rbp call _x86_64_get_dispatch@PLT popq %rbp - 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 %rbp call _glapi_get_dispatch popq %rbp - movq 6064(%rax), %r11 + movq 6072(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EndFragmentShaderATI), .-GL_PREFIX(EndFragmentShaderATI) @@ -28679,25 +28716,25 @@ GL_PREFIX(EndFragmentShaderATI): GL_PREFIX(GenFragmentShadersATI): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 6072(%rax), %r11 + movq 6080(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenFragmentShadersATI), .-GL_PREFIX(GenFragmentShadersATI) @@ -28708,7 +28745,7 @@ GL_PREFIX(GenFragmentShadersATI): GL_PREFIX(PassTexCoordATI): #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 @@ -28718,13 +28755,13 @@ GL_PREFIX(PassTexCoordATI): popq %rdx 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 @@ -28734,7 +28771,7 @@ GL_PREFIX(PassTexCoordATI): popq %rdx popq %rsi popq %rdi - movq 6080(%rax), %r11 + movq 6088(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PassTexCoordATI), .-GL_PREFIX(PassTexCoordATI) @@ -28745,7 +28782,7 @@ GL_PREFIX(PassTexCoordATI): GL_PREFIX(SampleMapATI): #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 @@ -28755,13 +28792,13 @@ GL_PREFIX(SampleMapATI): popq %rdx 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 @@ -28771,7 +28808,7 @@ GL_PREFIX(SampleMapATI): popq %rdx popq %rsi popq %rdi - movq 6088(%rax), %r11 + movq 6096(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SampleMapATI), .-GL_PREFIX(SampleMapATI) @@ -28782,7 +28819,7 @@ GL_PREFIX(SampleMapATI): GL_PREFIX(SetFragmentShaderConstantATI): #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 @@ -28792,13 +28829,13 @@ GL_PREFIX(SetFragmentShaderConstantATI): 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 @@ -28808,7 +28845,7 @@ GL_PREFIX(SetFragmentShaderConstantATI): popq %rbp popq %rsi popq %rdi - movq 6096(%rax), %r11 + movq 6104(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SetFragmentShaderConstantATI), .-GL_PREFIX(SetFragmentShaderConstantATI) @@ -28819,7 +28856,7 @@ GL_PREFIX(SetFragmentShaderConstantATI): GL_PREFIX(PointParameteriNV): #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 @@ -28829,13 +28866,13 @@ GL_PREFIX(PointParameteriNV): popq %rbp 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 @@ -28845,7 +28882,7 @@ GL_PREFIX(PointParameteriNV): popq %rbp popq %rsi popq %rdi - movq 6104(%rax), %r11 + movq 6112(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PointParameteriNV), .-GL_PREFIX(PointParameteriNV) @@ -28856,7 +28893,7 @@ GL_PREFIX(PointParameteriNV): GL_PREFIX(PointParameterivNV): #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 @@ -28866,13 +28903,13 @@ GL_PREFIX(PointParameterivNV): popq %rbp 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 @@ -28882,40 +28919,10 @@ GL_PREFIX(PointParameterivNV): popq %rbp popq %rsi popq %rdi - movq 6112(%rax), %r11 - jmp *%r11 -#endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(PointParameterivNV), .-GL_PREFIX(PointParameterivNV) - - .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_765) - .type GL_PREFIX(_dispatch_stub_765), @function - HIDDEN(GL_PREFIX(_dispatch_stub_765)) -GL_PREFIX(_dispatch_stub_765): -#if defined(GLX_USE_TLS) - call _x86_64_get_dispatch@PLT - movq 6120(%rax), %r11 - jmp *%r11 -#elif defined(PTHREADS) - pushq %rdi - call _x86_64_get_dispatch@PLT - popq %rdi - movq 6120(%rax), %r11 - jmp *%r11 -#else - movq _glapi_Dispatch(%rip), %rax - testq %rax, %rax - je 1f - movq 6120(%rax), %r11 - jmp *%r11 -1: - pushq %rdi - call _glapi_get_dispatch - popq %rdi movq 6120(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_765), .-GL_PREFIX(_dispatch_stub_765) + .size GL_PREFIX(PointParameterivNV), .-GL_PREFIX(PointParameterivNV) .p2align 4,,15 .globl GL_PREFIX(_dispatch_stub_766) @@ -28958,11 +28965,7 @@ GL_PREFIX(_dispatch_stub_767): jmp *%r11 #elif defined(PTHREADS) pushq %rdi - pushq %rsi - pushq %rbp call _x86_64_get_dispatch@PLT - popq %rbp - popq %rsi popq %rdi movq 6136(%rax), %r11 jmp *%r11 @@ -28974,11 +28977,7 @@ GL_PREFIX(_dispatch_stub_767): jmp *%r11 1: pushq %rdi - pushq %rsi - pushq %rbp call _glapi_get_dispatch - popq %rbp - popq %rsi popq %rdi movq 6136(%rax), %r11 jmp *%r11 @@ -29034,7 +29033,11 @@ GL_PREFIX(_dispatch_stub_769): jmp *%r11 #elif defined(PTHREADS) pushq %rdi + pushq %rsi + pushq %rbp call _x86_64_get_dispatch@PLT + popq %rbp + popq %rsi popq %rdi movq 6152(%rax), %r11 jmp *%r11 @@ -29046,7 +29049,11 @@ GL_PREFIX(_dispatch_stub_769): jmp *%r11 1: pushq %rdi + pushq %rsi + pushq %rbp call _glapi_get_dispatch + popq %rbp + popq %rsi popq %rdi movq 6152(%rax), %r11 jmp *%r11 @@ -29054,12 +29061,42 @@ GL_PREFIX(_dispatch_stub_769): .size GL_PREFIX(_dispatch_stub_769), .-GL_PREFIX(_dispatch_stub_769) .p2align 4,,15 + .globl GL_PREFIX(_dispatch_stub_770) + .type GL_PREFIX(_dispatch_stub_770), @function + HIDDEN(GL_PREFIX(_dispatch_stub_770)) +GL_PREFIX(_dispatch_stub_770): +#if defined(GLX_USE_TLS) + call _x86_64_get_dispatch@PLT + movq 6160(%rax), %r11 + jmp *%r11 +#elif defined(PTHREADS) + pushq %rdi + call _x86_64_get_dispatch@PLT + popq %rdi + movq 6160(%rax), %r11 + jmp *%r11 +#else + movq _glapi_Dispatch(%rip), %rax + testq %rax, %rax + je 1f + movq 6160(%rax), %r11 + jmp *%r11 +1: + pushq %rdi + call _glapi_get_dispatch + popq %rdi + movq 6160(%rax), %r11 + jmp *%r11 +#endif /* defined(GLX_USE_TLS) */ + .size GL_PREFIX(_dispatch_stub_770), .-GL_PREFIX(_dispatch_stub_770) + + .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 6160(%rax), %r11 + movq 6168(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29073,13 +29110,13 @@ GL_PREFIX(GetProgramNamedParameterdvNV): 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 @@ -29093,7 +29130,7 @@ GL_PREFIX(GetProgramNamedParameterdvNV): popq %rdx popq %rsi popq %rdi - movq 6160(%rax), %r11 + movq 6168(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetProgramNamedParameterdvNV), .-GL_PREFIX(GetProgramNamedParameterdvNV) @@ -29104,7 +29141,7 @@ GL_PREFIX(GetProgramNamedParameterdvNV): GL_PREFIX(GetProgramNamedParameterfvNV): #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 @@ -29118,13 +29155,13 @@ GL_PREFIX(GetProgramNamedParameterfvNV): popq %rdx popq %rsi 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 @@ -29138,7 +29175,7 @@ GL_PREFIX(GetProgramNamedParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 6168(%rax), %r11 + movq 6176(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetProgramNamedParameterfvNV), .-GL_PREFIX(GetProgramNamedParameterfvNV) @@ -29149,7 +29186,7 @@ GL_PREFIX(GetProgramNamedParameterfvNV): GL_PREFIX(ProgramNamedParameter4dNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6176(%rax), %r11 + movq 6184(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $56, %rsp @@ -29169,13 +29206,13 @@ GL_PREFIX(ProgramNamedParameter4dNV): movq 8(%rsp), %rsi movq (%rsp), %rdi addq $56, %rsp - 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: subq $56, %rsp @@ -29195,7 +29232,7 @@ GL_PREFIX(ProgramNamedParameter4dNV): movq 8(%rsp), %rsi movq (%rsp), %rdi addq $56, %rsp - movq 6176(%rax), %r11 + movq 6184(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProgramNamedParameter4dNV), .-GL_PREFIX(ProgramNamedParameter4dNV) @@ -29206,7 +29243,7 @@ GL_PREFIX(ProgramNamedParameter4dNV): GL_PREFIX(ProgramNamedParameter4dvNV): #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 @@ -29220,13 +29257,13 @@ GL_PREFIX(ProgramNamedParameter4dvNV): popq %rdx popq %rsi 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 @@ -29240,7 +29277,7 @@ GL_PREFIX(ProgramNamedParameter4dvNV): popq %rdx popq %rsi popq %rdi - movq 6184(%rax), %r11 + movq 6192(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProgramNamedParameter4dvNV), .-GL_PREFIX(ProgramNamedParameter4dvNV) @@ -29251,7 +29288,7 @@ GL_PREFIX(ProgramNamedParameter4dvNV): GL_PREFIX(ProgramNamedParameter4fNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6192(%rax), %r11 + movq 6200(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $56, %rsp @@ -29271,13 +29308,13 @@ GL_PREFIX(ProgramNamedParameter4fNV): movq 8(%rsp), %rsi movq (%rsp), %rdi addq $56, %rsp - 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: subq $56, %rsp @@ -29297,7 +29334,7 @@ GL_PREFIX(ProgramNamedParameter4fNV): movq 8(%rsp), %rsi movq (%rsp), %rdi addq $56, %rsp - movq 6192(%rax), %r11 + movq 6200(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProgramNamedParameter4fNV), .-GL_PREFIX(ProgramNamedParameter4fNV) @@ -29308,7 +29345,7 @@ GL_PREFIX(ProgramNamedParameter4fNV): GL_PREFIX(ProgramNamedParameter4fvNV): #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 @@ -29322,13 +29359,13 @@ GL_PREFIX(ProgramNamedParameter4fvNV): 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 @@ -29342,19 +29379,19 @@ GL_PREFIX(ProgramNamedParameter4fvNV): popq %rdx popq %rsi popq %rdi - movq 6200(%rax), %r11 + movq 6208(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProgramNamedParameter4fvNV), .-GL_PREFIX(ProgramNamedParameter4fvNV) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_776) - .type GL_PREFIX(_dispatch_stub_776), @function - HIDDEN(GL_PREFIX(_dispatch_stub_776)) -GL_PREFIX(_dispatch_stub_776): + .globl GL_PREFIX(_dispatch_stub_777) + .type GL_PREFIX(_dispatch_stub_777), @function + HIDDEN(GL_PREFIX(_dispatch_stub_777)) +GL_PREFIX(_dispatch_stub_777): #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 @@ -29364,13 +29401,13 @@ GL_PREFIX(_dispatch_stub_776): 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 @@ -29380,19 +29417,19 @@ GL_PREFIX(_dispatch_stub_776): popq %rbp popq %rsi popq %rdi - movq 6208(%rax), %r11 + movq 6216(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_776), .-GL_PREFIX(_dispatch_stub_776) + .size GL_PREFIX(_dispatch_stub_777), .-GL_PREFIX(_dispatch_stub_777) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_777) - .type GL_PREFIX(_dispatch_stub_777), @function - HIDDEN(GL_PREFIX(_dispatch_stub_777)) -GL_PREFIX(_dispatch_stub_777): + .globl GL_PREFIX(_dispatch_stub_778) + .type GL_PREFIX(_dispatch_stub_778), @function + HIDDEN(GL_PREFIX(_dispatch_stub_778)) +GL_PREFIX(_dispatch_stub_778): #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 @@ -29402,13 +29439,13 @@ GL_PREFIX(_dispatch_stub_777): 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 @@ -29418,10 +29455,10 @@ GL_PREFIX(_dispatch_stub_777): popq %rbp popq %rsi popq %rdi - movq 6216(%rax), %r11 + movq 6224(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_777), .-GL_PREFIX(_dispatch_stub_777) + .size GL_PREFIX(_dispatch_stub_778), .-GL_PREFIX(_dispatch_stub_778) .p2align 4,,15 .globl GL_PREFIX(BindFramebufferEXT) @@ -29429,7 +29466,7 @@ GL_PREFIX(_dispatch_stub_777): GL_PREFIX(BindFramebufferEXT): #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 @@ -29439,13 +29476,13 @@ GL_PREFIX(BindFramebufferEXT): 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 @@ -29455,7 +29492,7 @@ GL_PREFIX(BindFramebufferEXT): popq %rbp popq %rsi popq %rdi - movq 6224(%rax), %r11 + movq 6232(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindFramebufferEXT), .-GL_PREFIX(BindFramebufferEXT) @@ -29466,7 +29503,7 @@ GL_PREFIX(BindFramebufferEXT): GL_PREFIX(BindRenderbufferEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6232(%rax), %r11 + movq 6240(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29476,13 +29513,13 @@ GL_PREFIX(BindRenderbufferEXT): popq %rbp popq %rsi popq %rdi - movq 6232(%rax), %r11 + movq 6240(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6232(%rax), %r11 + movq 6240(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29492,7 +29529,7 @@ GL_PREFIX(BindRenderbufferEXT): popq %rbp popq %rsi popq %rdi - movq 6232(%rax), %r11 + movq 6240(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindRenderbufferEXT), .-GL_PREFIX(BindRenderbufferEXT) @@ -29503,25 +29540,25 @@ GL_PREFIX(BindRenderbufferEXT): GL_PREFIX(CheckFramebufferStatusEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6240(%rax), %r11 + movq 6248(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6240(%rax), %r11 + movq 6248(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6240(%rax), %r11 + movq 6248(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6240(%rax), %r11 + movq 6248(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CheckFramebufferStatusEXT), .-GL_PREFIX(CheckFramebufferStatusEXT) @@ -29532,7 +29569,7 @@ GL_PREFIX(CheckFramebufferStatusEXT): GL_PREFIX(DeleteFramebuffersEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6248(%rax), %r11 + movq 6256(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29542,13 +29579,13 @@ GL_PREFIX(DeleteFramebuffersEXT): popq %rbp popq %rsi popq %rdi - movq 6248(%rax), %r11 + movq 6256(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6248(%rax), %r11 + movq 6256(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29558,7 +29595,7 @@ GL_PREFIX(DeleteFramebuffersEXT): popq %rbp popq %rsi popq %rdi - movq 6248(%rax), %r11 + movq 6256(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DeleteFramebuffersEXT), .-GL_PREFIX(DeleteFramebuffersEXT) @@ -29569,7 +29606,7 @@ GL_PREFIX(DeleteFramebuffersEXT): GL_PREFIX(DeleteRenderbuffersEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6256(%rax), %r11 + movq 6264(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29579,13 +29616,13 @@ GL_PREFIX(DeleteRenderbuffersEXT): popq %rbp popq %rsi popq %rdi - movq 6256(%rax), %r11 + movq 6264(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6256(%rax), %r11 + movq 6264(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29595,7 +29632,7 @@ GL_PREFIX(DeleteRenderbuffersEXT): popq %rbp popq %rsi popq %rdi - movq 6256(%rax), %r11 + movq 6264(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DeleteRenderbuffersEXT), .-GL_PREFIX(DeleteRenderbuffersEXT) @@ -29606,7 +29643,7 @@ GL_PREFIX(DeleteRenderbuffersEXT): GL_PREFIX(FramebufferRenderbufferEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6264(%rax), %r11 + movq 6272(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29620,13 +29657,13 @@ GL_PREFIX(FramebufferRenderbufferEXT): popq %rdx popq %rsi popq %rdi - movq 6264(%rax), %r11 + movq 6272(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6264(%rax), %r11 + movq 6272(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29640,7 +29677,7 @@ GL_PREFIX(FramebufferRenderbufferEXT): popq %rdx popq %rsi popq %rdi - movq 6264(%rax), %r11 + movq 6272(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FramebufferRenderbufferEXT), .-GL_PREFIX(FramebufferRenderbufferEXT) @@ -29651,7 +29688,7 @@ GL_PREFIX(FramebufferRenderbufferEXT): GL_PREFIX(FramebufferTexture1DEXT): #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 @@ -29665,13 +29702,13 @@ GL_PREFIX(FramebufferTexture1DEXT): 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 @@ -29685,7 +29722,7 @@ GL_PREFIX(FramebufferTexture1DEXT): popq %rdx popq %rsi popq %rdi - movq 6272(%rax), %r11 + movq 6280(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FramebufferTexture1DEXT), .-GL_PREFIX(FramebufferTexture1DEXT) @@ -29696,7 +29733,7 @@ GL_PREFIX(FramebufferTexture1DEXT): GL_PREFIX(FramebufferTexture2DEXT): #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 @@ -29710,13 +29747,13 @@ GL_PREFIX(FramebufferTexture2DEXT): 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 @@ -29730,7 +29767,7 @@ GL_PREFIX(FramebufferTexture2DEXT): popq %rdx popq %rsi popq %rdi - movq 6280(%rax), %r11 + movq 6288(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FramebufferTexture2DEXT), .-GL_PREFIX(FramebufferTexture2DEXT) @@ -29741,7 +29778,7 @@ GL_PREFIX(FramebufferTexture2DEXT): GL_PREFIX(FramebufferTexture3DEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6288(%rax), %r11 + movq 6296(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29759,13 +29796,13 @@ GL_PREFIX(FramebufferTexture3DEXT): popq %rdx popq %rsi popq %rdi - 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: pushq %rdi @@ -29783,7 +29820,7 @@ GL_PREFIX(FramebufferTexture3DEXT): popq %rdx popq %rsi popq %rdi - movq 6288(%rax), %r11 + movq 6296(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FramebufferTexture3DEXT), .-GL_PREFIX(FramebufferTexture3DEXT) @@ -29794,7 +29831,7 @@ GL_PREFIX(FramebufferTexture3DEXT): GL_PREFIX(GenFramebuffersEXT): #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 @@ -29804,13 +29841,13 @@ GL_PREFIX(GenFramebuffersEXT): popq %rbp 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 @@ -29820,7 +29857,7 @@ GL_PREFIX(GenFramebuffersEXT): popq %rbp popq %rsi popq %rdi - movq 6296(%rax), %r11 + movq 6304(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenFramebuffersEXT), .-GL_PREFIX(GenFramebuffersEXT) @@ -29831,7 +29868,7 @@ GL_PREFIX(GenFramebuffersEXT): GL_PREFIX(GenRenderbuffersEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6304(%rax), %r11 + movq 6312(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29841,13 +29878,13 @@ GL_PREFIX(GenRenderbuffersEXT): popq %rbp popq %rsi popq %rdi - 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: pushq %rdi @@ -29857,7 +29894,7 @@ GL_PREFIX(GenRenderbuffersEXT): popq %rbp popq %rsi popq %rdi - movq 6304(%rax), %r11 + movq 6312(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenRenderbuffersEXT), .-GL_PREFIX(GenRenderbuffersEXT) @@ -29868,25 +29905,25 @@ GL_PREFIX(GenRenderbuffersEXT): GL_PREFIX(GenerateMipmapEXT): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 6312(%rax), %r11 + movq 6320(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenerateMipmapEXT), .-GL_PREFIX(GenerateMipmapEXT) @@ -29897,7 +29934,7 @@ GL_PREFIX(GenerateMipmapEXT): GL_PREFIX(GetFramebufferAttachmentParameterivEXT): #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 @@ -29911,13 +29948,13 @@ GL_PREFIX(GetFramebufferAttachmentParameterivEXT): popq %rdx popq %rsi 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 @@ -29931,7 +29968,7 @@ GL_PREFIX(GetFramebufferAttachmentParameterivEXT): popq %rdx popq %rsi popq %rdi - movq 6320(%rax), %r11 + movq 6328(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetFramebufferAttachmentParameterivEXT), .-GL_PREFIX(GetFramebufferAttachmentParameterivEXT) @@ -29942,7 +29979,7 @@ GL_PREFIX(GetFramebufferAttachmentParameterivEXT): GL_PREFIX(GetRenderbufferParameterivEXT): #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 %rdi @@ -29952,13 +29989,13 @@ GL_PREFIX(GetRenderbufferParameterivEXT): popq %rdx popq %rsi popq %rdi - 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 %rdi @@ -29968,7 +30005,7 @@ GL_PREFIX(GetRenderbufferParameterivEXT): popq %rdx popq %rsi popq %rdi - movq 6328(%rax), %r11 + movq 6336(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetRenderbufferParameterivEXT), .-GL_PREFIX(GetRenderbufferParameterivEXT) @@ -29979,25 +30016,25 @@ GL_PREFIX(GetRenderbufferParameterivEXT): GL_PREFIX(IsFramebufferEXT): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 6336(%rax), %r11 + movq 6344(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IsFramebufferEXT), .-GL_PREFIX(IsFramebufferEXT) @@ -30008,25 +30045,25 @@ GL_PREFIX(IsFramebufferEXT): GL_PREFIX(IsRenderbufferEXT): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 6344(%rax), %r11 + movq 6352(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IsRenderbufferEXT), .-GL_PREFIX(IsRenderbufferEXT) @@ -30037,7 +30074,7 @@ GL_PREFIX(IsRenderbufferEXT): GL_PREFIX(RenderbufferStorageEXT): #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 @@ -30051,13 +30088,13 @@ GL_PREFIX(RenderbufferStorageEXT): popq %rdx 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 @@ -30071,19 +30108,19 @@ GL_PREFIX(RenderbufferStorageEXT): popq %rdx popq %rsi popq %rdi - movq 6352(%rax), %r11 + movq 6360(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(RenderbufferStorageEXT), .-GL_PREFIX(RenderbufferStorageEXT) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_795) - .type GL_PREFIX(_dispatch_stub_795), @function - HIDDEN(GL_PREFIX(_dispatch_stub_795)) -GL_PREFIX(_dispatch_stub_795): + .globl GL_PREFIX(_dispatch_stub_796) + .type GL_PREFIX(_dispatch_stub_796), @function + HIDDEN(GL_PREFIX(_dispatch_stub_796)) +GL_PREFIX(_dispatch_stub_796): #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 @@ -30101,13 +30138,13 @@ GL_PREFIX(_dispatch_stub_795): popq %rdx 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 @@ -30125,19 +30162,19 @@ GL_PREFIX(_dispatch_stub_795): popq %rdx popq %rsi popq %rdi - movq 6360(%rax), %r11 + movq 6368(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_795), .-GL_PREFIX(_dispatch_stub_795) + .size GL_PREFIX(_dispatch_stub_796), .-GL_PREFIX(_dispatch_stub_796) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_796) - .type GL_PREFIX(_dispatch_stub_796), @function - HIDDEN(GL_PREFIX(_dispatch_stub_796)) -GL_PREFIX(_dispatch_stub_796): + .globl GL_PREFIX(_dispatch_stub_797) + .type GL_PREFIX(_dispatch_stub_797), @function + HIDDEN(GL_PREFIX(_dispatch_stub_797)) +GL_PREFIX(_dispatch_stub_797): #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 @@ -30147,13 +30184,13 @@ GL_PREFIX(_dispatch_stub_796): popq %rdx popq %rsi 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 @@ -30163,19 +30200,19 @@ GL_PREFIX(_dispatch_stub_796): popq %rdx popq %rsi popq %rdi - movq 6368(%rax), %r11 + movq 6376(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_796), .-GL_PREFIX(_dispatch_stub_796) + .size GL_PREFIX(_dispatch_stub_797), .-GL_PREFIX(_dispatch_stub_797) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_797) - .type GL_PREFIX(_dispatch_stub_797), @function - HIDDEN(GL_PREFIX(_dispatch_stub_797)) -GL_PREFIX(_dispatch_stub_797): + .globl GL_PREFIX(_dispatch_stub_798) + .type GL_PREFIX(_dispatch_stub_798), @function + HIDDEN(GL_PREFIX(_dispatch_stub_798)) +GL_PREFIX(_dispatch_stub_798): #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 @@ -30185,13 +30222,13 @@ GL_PREFIX(_dispatch_stub_797): popq %rdx 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 @@ -30201,10 +30238,10 @@ GL_PREFIX(_dispatch_stub_797): popq %rdx popq %rsi popq %rdi - movq 6376(%rax), %r11 + movq 6384(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_797), .-GL_PREFIX(_dispatch_stub_797) + .size GL_PREFIX(_dispatch_stub_798), .-GL_PREFIX(_dispatch_stub_798) .p2align 4,,15 .globl GL_PREFIX(FramebufferTextureLayerEXT) @@ -30212,7 +30249,7 @@ GL_PREFIX(_dispatch_stub_797): GL_PREFIX(FramebufferTextureLayerEXT): #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 @@ -30226,13 +30263,13 @@ GL_PREFIX(FramebufferTextureLayerEXT): popq %rdx 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 @@ -30246,7 +30283,7 @@ GL_PREFIX(FramebufferTextureLayerEXT): popq %rdx popq %rsi popq %rdi - movq 6384(%rax), %r11 + movq 6392(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FramebufferTextureLayerEXT), .-GL_PREFIX(FramebufferTextureLayerEXT) @@ -30257,7 +30294,7 @@ GL_PREFIX(FramebufferTextureLayerEXT): GL_PREFIX(ColorMaskIndexedEXT): #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 @@ -30271,13 +30308,13 @@ GL_PREFIX(ColorMaskIndexedEXT): 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 @@ -30291,7 +30328,7 @@ GL_PREFIX(ColorMaskIndexedEXT): popq %rdx popq %rsi popq %rdi - movq 6392(%rax), %r11 + movq 6400(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorMaskIndexedEXT), .-GL_PREFIX(ColorMaskIndexedEXT) @@ -30302,7 +30339,7 @@ GL_PREFIX(ColorMaskIndexedEXT): GL_PREFIX(DisableIndexedEXT): #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 @@ -30312,13 +30349,13 @@ GL_PREFIX(DisableIndexedEXT): popq %rbp 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 @@ -30328,7 +30365,7 @@ GL_PREFIX(DisableIndexedEXT): popq %rbp popq %rsi popq %rdi - movq 6400(%rax), %r11 + movq 6408(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DisableIndexedEXT), .-GL_PREFIX(DisableIndexedEXT) @@ -30339,7 +30376,7 @@ GL_PREFIX(DisableIndexedEXT): GL_PREFIX(EnableIndexedEXT): #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 @@ -30349,13 +30386,13 @@ GL_PREFIX(EnableIndexedEXT): popq %rbp 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 @@ -30365,7 +30402,7 @@ GL_PREFIX(EnableIndexedEXT): popq %rbp popq %rsi popq %rdi - movq 6408(%rax), %r11 + movq 6416(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EnableIndexedEXT), .-GL_PREFIX(EnableIndexedEXT) @@ -30376,7 +30413,7 @@ GL_PREFIX(EnableIndexedEXT): GL_PREFIX(GetBooleanIndexedvEXT): #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 @@ -30386,13 +30423,13 @@ GL_PREFIX(GetBooleanIndexedvEXT): 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 @@ -30402,7 +30439,7 @@ GL_PREFIX(GetBooleanIndexedvEXT): popq %rdx popq %rsi popq %rdi - movq 6416(%rax), %r11 + movq 6424(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetBooleanIndexedvEXT), .-GL_PREFIX(GetBooleanIndexedvEXT) @@ -30413,7 +30450,7 @@ GL_PREFIX(GetBooleanIndexedvEXT): GL_PREFIX(GetIntegerIndexedvEXT): #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 @@ -30423,13 +30460,13 @@ GL_PREFIX(GetIntegerIndexedvEXT): popq %rdx 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 @@ -30439,7 +30476,7 @@ GL_PREFIX(GetIntegerIndexedvEXT): popq %rdx popq %rsi popq %rdi - movq 6424(%rax), %r11 + movq 6432(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetIntegerIndexedvEXT), .-GL_PREFIX(GetIntegerIndexedvEXT) @@ -30450,7 +30487,7 @@ GL_PREFIX(GetIntegerIndexedvEXT): GL_PREFIX(IsEnabledIndexedEXT): #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 @@ -30460,13 +30497,13 @@ GL_PREFIX(IsEnabledIndexedEXT): 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 @@ -30476,7 +30513,7 @@ GL_PREFIX(IsEnabledIndexedEXT): popq %rbp popq %rsi popq %rdi - movq 6432(%rax), %r11 + movq 6440(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IsEnabledIndexedEXT), .-GL_PREFIX(IsEnabledIndexedEXT) @@ -30487,7 +30524,7 @@ GL_PREFIX(IsEnabledIndexedEXT): GL_PREFIX(BeginConditionalRenderNV): #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 @@ -30497,13 +30534,13 @@ GL_PREFIX(BeginConditionalRenderNV): popq %rbp popq %rsi 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 @@ -30513,7 +30550,7 @@ GL_PREFIX(BeginConditionalRenderNV): popq %rbp popq %rsi popq %rdi - movq 6440(%rax), %r11 + movq 6448(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BeginConditionalRenderNV), .-GL_PREFIX(BeginConditionalRenderNV) @@ -30524,25 +30561,25 @@ GL_PREFIX(BeginConditionalRenderNV): GL_PREFIX(EndConditionalRenderNV): #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 %rbp call _x86_64_get_dispatch@PLT popq %rbp - 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 %rbp call _glapi_get_dispatch popq %rbp - movq 6448(%rax), %r11 + movq 6456(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EndConditionalRenderNV), .-GL_PREFIX(EndConditionalRenderNV) @@ -30553,25 +30590,25 @@ GL_PREFIX(EndConditionalRenderNV): GL_PREFIX(BeginTransformFeedbackEXT): #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 call _x86_64_get_dispatch@PLT 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 call _glapi_get_dispatch popq %rdi - movq 6456(%rax), %r11 + movq 6464(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BeginTransformFeedbackEXT), .-GL_PREFIX(BeginTransformFeedbackEXT) @@ -30582,7 +30619,7 @@ GL_PREFIX(BeginTransformFeedbackEXT): GL_PREFIX(BindBufferBaseEXT): #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 @@ -30592,13 +30629,13 @@ GL_PREFIX(BindBufferBaseEXT): popq %rdx popq %rsi 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 @@ -30608,7 +30645,7 @@ GL_PREFIX(BindBufferBaseEXT): popq %rdx popq %rsi popq %rdi - movq 6464(%rax), %r11 + movq 6472(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindBufferBaseEXT), .-GL_PREFIX(BindBufferBaseEXT) @@ -30619,7 +30656,7 @@ GL_PREFIX(BindBufferBaseEXT): GL_PREFIX(BindBufferOffsetEXT): #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 @@ -30633,13 +30670,13 @@ GL_PREFIX(BindBufferOffsetEXT): popq %rdx popq %rsi 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 @@ -30653,7 +30690,7 @@ GL_PREFIX(BindBufferOffsetEXT): popq %rdx popq %rsi popq %rdi - movq 6472(%rax), %r11 + movq 6480(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindBufferOffsetEXT), .-GL_PREFIX(BindBufferOffsetEXT) @@ -30664,7 +30701,7 @@ GL_PREFIX(BindBufferOffsetEXT): GL_PREFIX(BindBufferRangeEXT): #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 @@ -30678,13 +30715,13 @@ GL_PREFIX(BindBufferRangeEXT): 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 @@ -30698,7 +30735,7 @@ GL_PREFIX(BindBufferRangeEXT): popq %rdx popq %rsi popq %rdi - movq 6480(%rax), %r11 + movq 6488(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindBufferRangeEXT), .-GL_PREFIX(BindBufferRangeEXT) @@ -30709,25 +30746,25 @@ GL_PREFIX(BindBufferRangeEXT): GL_PREFIX(EndTransformFeedbackEXT): #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 %rbp call _x86_64_get_dispatch@PLT popq %rbp - 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 %rbp call _glapi_get_dispatch popq %rbp - movq 6488(%rax), %r11 + movq 6496(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EndTransformFeedbackEXT), .-GL_PREFIX(EndTransformFeedbackEXT) @@ -30738,7 +30775,7 @@ GL_PREFIX(EndTransformFeedbackEXT): GL_PREFIX(GetTransformFeedbackVaryingEXT): #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 @@ -30756,13 +30793,13 @@ GL_PREFIX(GetTransformFeedbackVaryingEXT): 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 @@ -30780,7 +30817,7 @@ GL_PREFIX(GetTransformFeedbackVaryingEXT): popq %rdx popq %rsi popq %rdi - movq 6496(%rax), %r11 + movq 6504(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetTransformFeedbackVaryingEXT), .-GL_PREFIX(GetTransformFeedbackVaryingEXT) @@ -30791,7 +30828,7 @@ GL_PREFIX(GetTransformFeedbackVaryingEXT): GL_PREFIX(TransformFeedbackVaryingsEXT): #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 @@ -30805,13 +30842,13 @@ GL_PREFIX(TransformFeedbackVaryingsEXT): 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 @@ -30825,7 +30862,7 @@ GL_PREFIX(TransformFeedbackVaryingsEXT): popq %rdx popq %rsi popq %rdi - movq 6504(%rax), %r11 + movq 6512(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TransformFeedbackVaryingsEXT), .-GL_PREFIX(TransformFeedbackVaryingsEXT) @@ -30836,45 +30873,11 @@ GL_PREFIX(TransformFeedbackVaryingsEXT): GL_PREFIX(ProvokingVertexEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6512(%rax), %r11 - jmp *%r11 -#elif defined(PTHREADS) - pushq %rdi - call _x86_64_get_dispatch@PLT - popq %rdi - movq 6512(%rax), %r11 - jmp *%r11 -#else - movq _glapi_Dispatch(%rip), %rax - testq %rax, %rax - je 1f - movq 6512(%rax), %r11 - jmp *%r11 -1: - pushq %rdi - call _glapi_get_dispatch - popq %rdi - movq 6512(%rax), %r11 - jmp *%r11 -#endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(ProvokingVertexEXT), .-GL_PREFIX(ProvokingVertexEXT) - - .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_815) - .type GL_PREFIX(_dispatch_stub_815), @function - HIDDEN(GL_PREFIX(_dispatch_stub_815)) -GL_PREFIX(_dispatch_stub_815): -#if defined(GLX_USE_TLS) - call _x86_64_get_dispatch@PLT movq 6520(%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 6520(%rax), %r11 jmp *%r11 @@ -30886,16 +30889,12 @@ GL_PREFIX(_dispatch_stub_815): jmp *%r11 1: pushq %rdi - pushq %rsi - pushq %rdx call _glapi_get_dispatch - popq %rdx - popq %rsi popq %rdi movq 6520(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_815), .-GL_PREFIX(_dispatch_stub_815) + .size GL_PREFIX(ProvokingVertexEXT), .-GL_PREFIX(ProvokingVertexEXT) .p2align 4,,15 .globl GL_PREFIX(_dispatch_stub_816) @@ -30936,9 +30935,10 @@ GL_PREFIX(_dispatch_stub_816): .size GL_PREFIX(_dispatch_stub_816), .-GL_PREFIX(_dispatch_stub_816) .p2align 4,,15 - .globl GL_PREFIX(GetObjectParameterivAPPLE) - .type GL_PREFIX(GetObjectParameterivAPPLE), @function -GL_PREFIX(GetObjectParameterivAPPLE): + .globl GL_PREFIX(_dispatch_stub_817) + .type GL_PREFIX(_dispatch_stub_817), @function + HIDDEN(GL_PREFIX(_dispatch_stub_817)) +GL_PREFIX(_dispatch_stub_817): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT movq 6536(%rax), %r11 @@ -30947,11 +30947,7 @@ GL_PREFIX(GetObjectParameterivAPPLE): 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 @@ -30967,23 +30963,19 @@ GL_PREFIX(GetObjectParameterivAPPLE): 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 6536(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(GetObjectParameterivAPPLE), .-GL_PREFIX(GetObjectParameterivAPPLE) + .size GL_PREFIX(_dispatch_stub_817), .-GL_PREFIX(_dispatch_stub_817) .p2align 4,,15 - .globl GL_PREFIX(ObjectPurgeableAPPLE) - .type GL_PREFIX(ObjectPurgeableAPPLE), @function -GL_PREFIX(ObjectPurgeableAPPLE): + .globl GL_PREFIX(GetObjectParameterivAPPLE) + .type GL_PREFIX(GetObjectParameterivAPPLE), @function +GL_PREFIX(GetObjectParameterivAPPLE): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT movq 6544(%rax), %r11 @@ -30992,7 +30984,11 @@ GL_PREFIX(ObjectPurgeableAPPLE): 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 @@ -31008,19 +31004,23 @@ GL_PREFIX(ObjectPurgeableAPPLE): 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 6544(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(ObjectPurgeableAPPLE), .-GL_PREFIX(ObjectPurgeableAPPLE) + .size GL_PREFIX(GetObjectParameterivAPPLE), .-GL_PREFIX(GetObjectParameterivAPPLE) .p2align 4,,15 - .globl GL_PREFIX(ObjectUnpurgeableAPPLE) - .type GL_PREFIX(ObjectUnpurgeableAPPLE), @function -GL_PREFIX(ObjectUnpurgeableAPPLE): + .globl GL_PREFIX(ObjectPurgeableAPPLE) + .type GL_PREFIX(ObjectPurgeableAPPLE), @function +GL_PREFIX(ObjectPurgeableAPPLE): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT movq 6552(%rax), %r11 @@ -31052,13 +31052,12 @@ GL_PREFIX(ObjectUnpurgeableAPPLE): movq 6552(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(ObjectUnpurgeableAPPLE), .-GL_PREFIX(ObjectUnpurgeableAPPLE) + .size GL_PREFIX(ObjectPurgeableAPPLE), .-GL_PREFIX(ObjectPurgeableAPPLE) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_820) - .type GL_PREFIX(_dispatch_stub_820), @function - HIDDEN(GL_PREFIX(_dispatch_stub_820)) -GL_PREFIX(_dispatch_stub_820): + .globl GL_PREFIX(ObjectUnpurgeableAPPLE) + .type GL_PREFIX(ObjectUnpurgeableAPPLE), @function +GL_PREFIX(ObjectUnpurgeableAPPLE): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT movq 6560(%rax), %r11 @@ -31067,11 +31066,7 @@ GL_PREFIX(_dispatch_stub_820): 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 @@ -31087,18 +31082,14 @@ GL_PREFIX(_dispatch_stub_820): 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 6560(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_820), .-GL_PREFIX(_dispatch_stub_820) + .size GL_PREFIX(ObjectUnpurgeableAPPLE), .-GL_PREFIX(ObjectUnpurgeableAPPLE) .p2align 4,,15 .globl GL_PREFIX(_dispatch_stub_821) @@ -31205,7 +31196,11 @@ GL_PREFIX(_dispatch_stub_823): 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 @@ -31221,7 +31216,11 @@ GL_PREFIX(_dispatch_stub_823): pushq %rdi pushq %rsi pushq %rdx + pushq %rcx + pushq %rbp call _glapi_get_dispatch + popq %rbp + popq %rcx popq %rdx popq %rsi popq %rdi @@ -31269,12 +31268,50 @@ GL_PREFIX(_dispatch_stub_824): .size GL_PREFIX(_dispatch_stub_824), .-GL_PREFIX(_dispatch_stub_824) .p2align 4,,15 + .globl GL_PREFIX(_dispatch_stub_825) + .type GL_PREFIX(_dispatch_stub_825), @function + HIDDEN(GL_PREFIX(_dispatch_stub_825)) +GL_PREFIX(_dispatch_stub_825): +#if defined(GLX_USE_TLS) + call _x86_64_get_dispatch@PLT + movq 6600(%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 6600(%rax), %r11 + jmp *%r11 +#else + movq _glapi_Dispatch(%rip), %rax + testq %rax, %rax + je 1f + movq 6600(%rax), %r11 + jmp *%r11 +1: + pushq %rdi + pushq %rsi + pushq %rdx + call _glapi_get_dispatch + popq %rdx + popq %rsi + popq %rdi + movq 6600(%rax), %r11 + jmp *%r11 +#endif /* defined(GLX_USE_TLS) */ + .size GL_PREFIX(_dispatch_stub_825), .-GL_PREFIX(_dispatch_stub_825) + + .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 6600(%rax), %r11 + movq 6608(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31284,13 +31321,13 @@ GL_PREFIX(EGLImageTargetRenderbufferStorageOES): popq %rbp 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 @@ -31300,7 +31337,7 @@ GL_PREFIX(EGLImageTargetRenderbufferStorageOES): popq %rbp popq %rsi popq %rdi - movq 6600(%rax), %r11 + movq 6608(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EGLImageTargetRenderbufferStorageOES), .-GL_PREFIX(EGLImageTargetRenderbufferStorageOES) @@ -31311,7 +31348,7 @@ GL_PREFIX(EGLImageTargetRenderbufferStorageOES): GL_PREFIX(EGLImageTargetTexture2DOES): #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 @@ -31321,13 +31358,13 @@ GL_PREFIX(EGLImageTargetTexture2DOES): popq %rbp 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 @@ -31337,7 +31374,7 @@ GL_PREFIX(EGLImageTargetTexture2DOES): popq %rbp popq %rsi popq %rdi - movq 6608(%rax), %r11 + movq 6616(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EGLImageTargetTexture2DOES), .-GL_PREFIX(EGLImageTargetTexture2DOES) @@ -31600,9 +31637,9 @@ 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_767) - .globl GL_PREFIX(IsVertexArray) ; .set GL_PREFIX(IsVertexArray), GL_PREFIX(_dispatch_stub_769) - .globl GL_PREFIX(BlendEquationSeparate) ; .set GL_PREFIX(BlendEquationSeparate), GL_PREFIX(_dispatch_stub_777) + .globl GL_PREFIX(DeleteVertexArrays) ; .set GL_PREFIX(DeleteVertexArrays), GL_PREFIX(_dispatch_stub_768) + .globl GL_PREFIX(IsVertexArray) ; .set GL_PREFIX(IsVertexArray), GL_PREFIX(_dispatch_stub_770) + .globl GL_PREFIX(BlendEquationSeparate) ; .set GL_PREFIX(BlendEquationSeparate), GL_PREFIX(_dispatch_stub_778) .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) @@ -31620,7 +31657,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_795) + .globl GL_PREFIX(BlitFramebuffer) ; .set GL_PREFIX(BlitFramebuffer), GL_PREFIX(_dispatch_stub_796) .globl GL_PREFIX(FramebufferTextureLayer) ; .set GL_PREFIX(FramebufferTextureLayer), GL_PREFIX(FramebufferTextureLayerEXT) .globl GL_PREFIX(BeginTransformFeedback) ; .set GL_PREFIX(BeginTransformFeedback), GL_PREFIX(BeginTransformFeedbackEXT) .globl GL_PREFIX(BindBufferBase) ; .set GL_PREFIX(BindBufferBase), GL_PREFIX(BindBufferBaseEXT) diff --git a/src/mapi/glapi/glapi_x86.S b/src/mapi/glapi/glapi_x86.S index 8b764c993c..30e6579d32 100644 --- a/src/mapi/glapi/glapi_x86.S +++ b/src/mapi/glapi/glapi_x86.S @@ -714,6 +714,7 @@ GLNAME(gl_dispatch_functions_start): GL_STUB(GetActiveAttribARB, _gloffset_GetActiveAttribARB, GetActiveAttribARB@28) GL_STUB(GetAttribLocationARB, _gloffset_GetAttribLocationARB, GetAttribLocationARB@8) GL_STUB(DrawBuffersARB, _gloffset_DrawBuffersARB, DrawBuffersARB@8) + GL_STUB(ClampColorARB, _gloffset_ClampColorARB, ClampColorARB@8) GL_STUB(RenderbufferStorageMultisample, _gloffset_RenderbufferStorageMultisample, RenderbufferStorageMultisample@20) GL_STUB(FramebufferTextureARB, _gloffset_FramebufferTextureARB, FramebufferTextureARB@16) GL_STUB(FramebufferTextureFaceARB, _gloffset_FramebufferTextureFaceARB, FramebufferTextureFaceARB@20) @@ -741,22 +742,22 @@ GLNAME(gl_dispatch_functions_start): GL_STUB(PauseTransformFeedback, _gloffset_PauseTransformFeedback, PauseTransformFeedback@0) GL_STUB(ResumeTransformFeedback, _gloffset_ResumeTransformFeedback, ResumeTransformFeedback@0) GL_STUB(PolygonOffsetEXT, _gloffset_PolygonOffsetEXT, PolygonOffsetEXT@8) - GL_STUB(_dispatch_stub_590, _gloffset_GetPixelTexGenParameterfvSGIS, _dispatch_stub_590@8) - HIDDEN(GL_PREFIX(_dispatch_stub_590, _dispatch_stub_590@8)) - GL_STUB(_dispatch_stub_591, _gloffset_GetPixelTexGenParameterivSGIS, _dispatch_stub_591@8) + GL_STUB(_dispatch_stub_591, _gloffset_GetPixelTexGenParameterfvSGIS, _dispatch_stub_591@8) HIDDEN(GL_PREFIX(_dispatch_stub_591, _dispatch_stub_591@8)) - GL_STUB(_dispatch_stub_592, _gloffset_PixelTexGenParameterfSGIS, _dispatch_stub_592@8) + GL_STUB(_dispatch_stub_592, _gloffset_GetPixelTexGenParameterivSGIS, _dispatch_stub_592@8) HIDDEN(GL_PREFIX(_dispatch_stub_592, _dispatch_stub_592@8)) - GL_STUB(_dispatch_stub_593, _gloffset_PixelTexGenParameterfvSGIS, _dispatch_stub_593@8) + GL_STUB(_dispatch_stub_593, _gloffset_PixelTexGenParameterfSGIS, _dispatch_stub_593@8) HIDDEN(GL_PREFIX(_dispatch_stub_593, _dispatch_stub_593@8)) - GL_STUB(_dispatch_stub_594, _gloffset_PixelTexGenParameteriSGIS, _dispatch_stub_594@8) + GL_STUB(_dispatch_stub_594, _gloffset_PixelTexGenParameterfvSGIS, _dispatch_stub_594@8) HIDDEN(GL_PREFIX(_dispatch_stub_594, _dispatch_stub_594@8)) - GL_STUB(_dispatch_stub_595, _gloffset_PixelTexGenParameterivSGIS, _dispatch_stub_595@8) + GL_STUB(_dispatch_stub_595, _gloffset_PixelTexGenParameteriSGIS, _dispatch_stub_595@8) HIDDEN(GL_PREFIX(_dispatch_stub_595, _dispatch_stub_595@8)) - GL_STUB(_dispatch_stub_596, _gloffset_SampleMaskSGIS, _dispatch_stub_596@8) + GL_STUB(_dispatch_stub_596, _gloffset_PixelTexGenParameterivSGIS, _dispatch_stub_596@8) HIDDEN(GL_PREFIX(_dispatch_stub_596, _dispatch_stub_596@8)) - GL_STUB(_dispatch_stub_597, _gloffset_SamplePatternSGIS, _dispatch_stub_597@4) - HIDDEN(GL_PREFIX(_dispatch_stub_597, _dispatch_stub_597@4)) + GL_STUB(_dispatch_stub_597, _gloffset_SampleMaskSGIS, _dispatch_stub_597@8) + HIDDEN(GL_PREFIX(_dispatch_stub_597, _dispatch_stub_597@8)) + GL_STUB(_dispatch_stub_598, _gloffset_SamplePatternSGIS, _dispatch_stub_598@4) + HIDDEN(GL_PREFIX(_dispatch_stub_598, _dispatch_stub_598@4)) GL_STUB(ColorPointerEXT, _gloffset_ColorPointerEXT, ColorPointerEXT@20) GL_STUB(EdgeFlagPointerEXT, _gloffset_EdgeFlagPointerEXT, EdgeFlagPointerEXT@12) GL_STUB(IndexPointerEXT, _gloffset_IndexPointerEXT, IndexPointerEXT@16) @@ -767,10 +768,10 @@ GLNAME(gl_dispatch_functions_start): GL_STUB(PointParameterfvEXT, _gloffset_PointParameterfvEXT, PointParameterfvEXT@8) GL_STUB(LockArraysEXT, _gloffset_LockArraysEXT, LockArraysEXT@8) GL_STUB(UnlockArraysEXT, _gloffset_UnlockArraysEXT, UnlockArraysEXT@0) - GL_STUB(_dispatch_stub_608, _gloffset_CullParameterdvEXT, _dispatch_stub_608@8) - HIDDEN(GL_PREFIX(_dispatch_stub_608, _dispatch_stub_608@8)) - GL_STUB(_dispatch_stub_609, _gloffset_CullParameterfvEXT, _dispatch_stub_609@8) + GL_STUB(_dispatch_stub_609, _gloffset_CullParameterdvEXT, _dispatch_stub_609@8) HIDDEN(GL_PREFIX(_dispatch_stub_609, _dispatch_stub_609@8)) + GL_STUB(_dispatch_stub_610, _gloffset_CullParameterfvEXT, _dispatch_stub_610@8) + HIDDEN(GL_PREFIX(_dispatch_stub_610, _dispatch_stub_610@8)) GL_STUB(SecondaryColor3bEXT, _gloffset_SecondaryColor3bEXT, SecondaryColor3bEXT@12) GL_STUB(SecondaryColor3bvEXT, _gloffset_SecondaryColor3bvEXT, SecondaryColor3bvEXT@4) GL_STUB(SecondaryColor3dEXT, _gloffset_SecondaryColor3dEXT, SecondaryColor3dEXT@24) @@ -795,8 +796,8 @@ GLNAME(gl_dispatch_functions_start): GL_STUB(FogCoorddvEXT, _gloffset_FogCoorddvEXT, FogCoorddvEXT@4) GL_STUB(FogCoordfEXT, _gloffset_FogCoordfEXT, FogCoordfEXT@4) GL_STUB(FogCoordfvEXT, _gloffset_FogCoordfvEXT, FogCoordfvEXT@4) - GL_STUB(_dispatch_stub_634, _gloffset_PixelTexGenSGIX, _dispatch_stub_634@4) - HIDDEN(GL_PREFIX(_dispatch_stub_634, _dispatch_stub_634@4)) + GL_STUB(_dispatch_stub_635, _gloffset_PixelTexGenSGIX, _dispatch_stub_635@4) + HIDDEN(GL_PREFIX(_dispatch_stub_635, _dispatch_stub_635@4)) GL_STUB(BlendFuncSeparateEXT, _gloffset_BlendFuncSeparateEXT, BlendFuncSeparateEXT@16) GL_STUB(FlushVertexArrayRangeNV, _gloffset_FlushVertexArrayRangeNV, FlushVertexArrayRangeNV@0) GL_STUB(VertexArrayRangeNV, _gloffset_VertexArrayRangeNV, VertexArrayRangeNV@8) @@ -838,24 +839,24 @@ GLNAME(gl_dispatch_functions_start): GL_STUB(WindowPos4ivMESA, _gloffset_WindowPos4ivMESA, WindowPos4ivMESA@4) GL_STUB(WindowPos4sMESA, _gloffset_WindowPos4sMESA, WindowPos4sMESA@16) GL_STUB(WindowPos4svMESA, _gloffset_WindowPos4svMESA, WindowPos4svMESA@4) - GL_STUB(_dispatch_stub_676, _gloffset_MultiModeDrawArraysIBM, _dispatch_stub_676@20) - HIDDEN(GL_PREFIX(_dispatch_stub_676, _dispatch_stub_676@20)) - GL_STUB(_dispatch_stub_677, _gloffset_MultiModeDrawElementsIBM, _dispatch_stub_677@24) - HIDDEN(GL_PREFIX(_dispatch_stub_677, _dispatch_stub_677@24)) - GL_STUB(_dispatch_stub_678, _gloffset_DeleteFencesNV, _dispatch_stub_678@8) - HIDDEN(GL_PREFIX(_dispatch_stub_678, _dispatch_stub_678@8)) - GL_STUB(_dispatch_stub_679, _gloffset_FinishFenceNV, _dispatch_stub_679@4) - HIDDEN(GL_PREFIX(_dispatch_stub_679, _dispatch_stub_679@4)) - GL_STUB(_dispatch_stub_680, _gloffset_GenFencesNV, _dispatch_stub_680@8) - HIDDEN(GL_PREFIX(_dispatch_stub_680, _dispatch_stub_680@8)) - GL_STUB(_dispatch_stub_681, _gloffset_GetFenceivNV, _dispatch_stub_681@12) - HIDDEN(GL_PREFIX(_dispatch_stub_681, _dispatch_stub_681@12)) - GL_STUB(_dispatch_stub_682, _gloffset_IsFenceNV, _dispatch_stub_682@4) - HIDDEN(GL_PREFIX(_dispatch_stub_682, _dispatch_stub_682@4)) - GL_STUB(_dispatch_stub_683, _gloffset_SetFenceNV, _dispatch_stub_683@8) - HIDDEN(GL_PREFIX(_dispatch_stub_683, _dispatch_stub_683@8)) - GL_STUB(_dispatch_stub_684, _gloffset_TestFenceNV, _dispatch_stub_684@4) - HIDDEN(GL_PREFIX(_dispatch_stub_684, _dispatch_stub_684@4)) + GL_STUB(_dispatch_stub_677, _gloffset_MultiModeDrawArraysIBM, _dispatch_stub_677@20) + HIDDEN(GL_PREFIX(_dispatch_stub_677, _dispatch_stub_677@20)) + GL_STUB(_dispatch_stub_678, _gloffset_MultiModeDrawElementsIBM, _dispatch_stub_678@24) + HIDDEN(GL_PREFIX(_dispatch_stub_678, _dispatch_stub_678@24)) + GL_STUB(_dispatch_stub_679, _gloffset_DeleteFencesNV, _dispatch_stub_679@8) + HIDDEN(GL_PREFIX(_dispatch_stub_679, _dispatch_stub_679@8)) + GL_STUB(_dispatch_stub_680, _gloffset_FinishFenceNV, _dispatch_stub_680@4) + HIDDEN(GL_PREFIX(_dispatch_stub_680, _dispatch_stub_680@4)) + GL_STUB(_dispatch_stub_681, _gloffset_GenFencesNV, _dispatch_stub_681@8) + HIDDEN(GL_PREFIX(_dispatch_stub_681, _dispatch_stub_681@8)) + GL_STUB(_dispatch_stub_682, _gloffset_GetFenceivNV, _dispatch_stub_682@12) + HIDDEN(GL_PREFIX(_dispatch_stub_682, _dispatch_stub_682@12)) + GL_STUB(_dispatch_stub_683, _gloffset_IsFenceNV, _dispatch_stub_683@4) + HIDDEN(GL_PREFIX(_dispatch_stub_683, _dispatch_stub_683@4)) + GL_STUB(_dispatch_stub_684, _gloffset_SetFenceNV, _dispatch_stub_684@8) + HIDDEN(GL_PREFIX(_dispatch_stub_684, _dispatch_stub_684@8)) + GL_STUB(_dispatch_stub_685, _gloffset_TestFenceNV, _dispatch_stub_685@4) + HIDDEN(GL_PREFIX(_dispatch_stub_685, _dispatch_stub_685@4)) GL_STUB(AreProgramsResidentNV, _gloffset_AreProgramsResidentNV, AreProgramsResidentNV@12) GL_STUB(BindProgramNV, _gloffset_BindProgramNV, BindProgramNV@8) GL_STUB(DeleteProgramsNV, _gloffset_DeleteProgramsNV, DeleteProgramsNV@8) @@ -936,26 +937,26 @@ GLNAME(gl_dispatch_functions_start): GL_STUB(SetFragmentShaderConstantATI, _gloffset_SetFragmentShaderConstantATI, SetFragmentShaderConstantATI@8) GL_STUB(PointParameteriNV, _gloffset_PointParameteriNV, PointParameteriNV@8) GL_STUB(PointParameterivNV, _gloffset_PointParameterivNV, PointParameterivNV@8) - GL_STUB(_dispatch_stub_765, _gloffset_ActiveStencilFaceEXT, _dispatch_stub_765@4) - HIDDEN(GL_PREFIX(_dispatch_stub_765, _dispatch_stub_765@4)) - GL_STUB(_dispatch_stub_766, _gloffset_BindVertexArrayAPPLE, _dispatch_stub_766@4) + GL_STUB(_dispatch_stub_766, _gloffset_ActiveStencilFaceEXT, _dispatch_stub_766@4) HIDDEN(GL_PREFIX(_dispatch_stub_766, _dispatch_stub_766@4)) - GL_STUB(_dispatch_stub_767, _gloffset_DeleteVertexArraysAPPLE, _dispatch_stub_767@8) - HIDDEN(GL_PREFIX(_dispatch_stub_767, _dispatch_stub_767@8)) - GL_STUB(_dispatch_stub_768, _gloffset_GenVertexArraysAPPLE, _dispatch_stub_768@8) + GL_STUB(_dispatch_stub_767, _gloffset_BindVertexArrayAPPLE, _dispatch_stub_767@4) + HIDDEN(GL_PREFIX(_dispatch_stub_767, _dispatch_stub_767@4)) + GL_STUB(_dispatch_stub_768, _gloffset_DeleteVertexArraysAPPLE, _dispatch_stub_768@8) HIDDEN(GL_PREFIX(_dispatch_stub_768, _dispatch_stub_768@8)) - GL_STUB(_dispatch_stub_769, _gloffset_IsVertexArrayAPPLE, _dispatch_stub_769@4) - HIDDEN(GL_PREFIX(_dispatch_stub_769, _dispatch_stub_769@4)) + GL_STUB(_dispatch_stub_769, _gloffset_GenVertexArraysAPPLE, _dispatch_stub_769@8) + HIDDEN(GL_PREFIX(_dispatch_stub_769, _dispatch_stub_769@8)) + GL_STUB(_dispatch_stub_770, _gloffset_IsVertexArrayAPPLE, _dispatch_stub_770@4) + HIDDEN(GL_PREFIX(_dispatch_stub_770, _dispatch_stub_770@4)) GL_STUB(GetProgramNamedParameterdvNV, _gloffset_GetProgramNamedParameterdvNV, GetProgramNamedParameterdvNV@16) GL_STUB(GetProgramNamedParameterfvNV, _gloffset_GetProgramNamedParameterfvNV, GetProgramNamedParameterfvNV@16) GL_STUB(ProgramNamedParameter4dNV, _gloffset_ProgramNamedParameter4dNV, ProgramNamedParameter4dNV@44) GL_STUB(ProgramNamedParameter4dvNV, _gloffset_ProgramNamedParameter4dvNV, ProgramNamedParameter4dvNV@16) GL_STUB(ProgramNamedParameter4fNV, _gloffset_ProgramNamedParameter4fNV, ProgramNamedParameter4fNV@28) GL_STUB(ProgramNamedParameter4fvNV, _gloffset_ProgramNamedParameter4fvNV, ProgramNamedParameter4fvNV@16) - GL_STUB(_dispatch_stub_776, _gloffset_DepthBoundsEXT, _dispatch_stub_776@16) - HIDDEN(GL_PREFIX(_dispatch_stub_776, _dispatch_stub_776@16)) - GL_STUB(_dispatch_stub_777, _gloffset_BlendEquationSeparateEXT, _dispatch_stub_777@8) - HIDDEN(GL_PREFIX(_dispatch_stub_777, _dispatch_stub_777@8)) + GL_STUB(_dispatch_stub_777, _gloffset_DepthBoundsEXT, _dispatch_stub_777@16) + HIDDEN(GL_PREFIX(_dispatch_stub_777, _dispatch_stub_777@16)) + GL_STUB(_dispatch_stub_778, _gloffset_BlendEquationSeparateEXT, _dispatch_stub_778@8) + HIDDEN(GL_PREFIX(_dispatch_stub_778, _dispatch_stub_778@8)) GL_STUB(BindFramebufferEXT, _gloffset_BindFramebufferEXT, BindFramebufferEXT@8) GL_STUB(BindRenderbufferEXT, _gloffset_BindRenderbufferEXT, BindRenderbufferEXT@8) GL_STUB(CheckFramebufferStatusEXT, _gloffset_CheckFramebufferStatusEXT, CheckFramebufferStatusEXT@4) @@ -973,12 +974,12 @@ GLNAME(gl_dispatch_functions_start): GL_STUB(IsFramebufferEXT, _gloffset_IsFramebufferEXT, IsFramebufferEXT@4) GL_STUB(IsRenderbufferEXT, _gloffset_IsRenderbufferEXT, IsRenderbufferEXT@4) GL_STUB(RenderbufferStorageEXT, _gloffset_RenderbufferStorageEXT, RenderbufferStorageEXT@16) - GL_STUB(_dispatch_stub_795, _gloffset_BlitFramebufferEXT, _dispatch_stub_795@40) - HIDDEN(GL_PREFIX(_dispatch_stub_795, _dispatch_stub_795@40)) - GL_STUB(_dispatch_stub_796, _gloffset_BufferParameteriAPPLE, _dispatch_stub_796@12) - HIDDEN(GL_PREFIX(_dispatch_stub_796, _dispatch_stub_796@12)) - GL_STUB(_dispatch_stub_797, _gloffset_FlushMappedBufferRangeAPPLE, _dispatch_stub_797@12) + GL_STUB(_dispatch_stub_796, _gloffset_BlitFramebufferEXT, _dispatch_stub_796@40) + HIDDEN(GL_PREFIX(_dispatch_stub_796, _dispatch_stub_796@40)) + GL_STUB(_dispatch_stub_797, _gloffset_BufferParameteriAPPLE, _dispatch_stub_797@12) HIDDEN(GL_PREFIX(_dispatch_stub_797, _dispatch_stub_797@12)) + GL_STUB(_dispatch_stub_798, _gloffset_FlushMappedBufferRangeAPPLE, _dispatch_stub_798@12) + HIDDEN(GL_PREFIX(_dispatch_stub_798, _dispatch_stub_798@12)) GL_STUB(FramebufferTextureLayerEXT, _gloffset_FramebufferTextureLayerEXT, FramebufferTextureLayerEXT@20) GL_STUB(ColorMaskIndexedEXT, _gloffset_ColorMaskIndexedEXT, ColorMaskIndexedEXT@20) GL_STUB(DisableIndexedEXT, _gloffset_DisableIndexedEXT, DisableIndexedEXT@8) @@ -996,23 +997,23 @@ GLNAME(gl_dispatch_functions_start): GL_STUB(GetTransformFeedbackVaryingEXT, _gloffset_GetTransformFeedbackVaryingEXT, GetTransformFeedbackVaryingEXT@28) GL_STUB(TransformFeedbackVaryingsEXT, _gloffset_TransformFeedbackVaryingsEXT, TransformFeedbackVaryingsEXT@16) GL_STUB(ProvokingVertexEXT, _gloffset_ProvokingVertexEXT, ProvokingVertexEXT@4) - GL_STUB(_dispatch_stub_815, _gloffset_GetTexParameterPointervAPPLE, _dispatch_stub_815@12) - HIDDEN(GL_PREFIX(_dispatch_stub_815, _dispatch_stub_815@12)) - GL_STUB(_dispatch_stub_816, _gloffset_TextureRangeAPPLE, _dispatch_stub_816@12) + GL_STUB(_dispatch_stub_816, _gloffset_GetTexParameterPointervAPPLE, _dispatch_stub_816@12) HIDDEN(GL_PREFIX(_dispatch_stub_816, _dispatch_stub_816@12)) + GL_STUB(_dispatch_stub_817, _gloffset_TextureRangeAPPLE, _dispatch_stub_817@12) + HIDDEN(GL_PREFIX(_dispatch_stub_817, _dispatch_stub_817@12)) GL_STUB(GetObjectParameterivAPPLE, _gloffset_GetObjectParameterivAPPLE, GetObjectParameterivAPPLE@16) GL_STUB(ObjectPurgeableAPPLE, _gloffset_ObjectPurgeableAPPLE, ObjectPurgeableAPPLE@12) GL_STUB(ObjectUnpurgeableAPPLE, _gloffset_ObjectUnpurgeableAPPLE, ObjectUnpurgeableAPPLE@12) - GL_STUB(_dispatch_stub_820, _gloffset_StencilFuncSeparateATI, _dispatch_stub_820@16) - HIDDEN(GL_PREFIX(_dispatch_stub_820, _dispatch_stub_820@16)) - GL_STUB(_dispatch_stub_821, _gloffset_ProgramEnvParameters4fvEXT, _dispatch_stub_821@16) + GL_STUB(_dispatch_stub_821, _gloffset_StencilFuncSeparateATI, _dispatch_stub_821@16) HIDDEN(GL_PREFIX(_dispatch_stub_821, _dispatch_stub_821@16)) - GL_STUB(_dispatch_stub_822, _gloffset_ProgramLocalParameters4fvEXT, _dispatch_stub_822@16) + GL_STUB(_dispatch_stub_822, _gloffset_ProgramEnvParameters4fvEXT, _dispatch_stub_822@16) HIDDEN(GL_PREFIX(_dispatch_stub_822, _dispatch_stub_822@16)) - GL_STUB(_dispatch_stub_823, _gloffset_GetQueryObjecti64vEXT, _dispatch_stub_823@12) - HIDDEN(GL_PREFIX(_dispatch_stub_823, _dispatch_stub_823@12)) - GL_STUB(_dispatch_stub_824, _gloffset_GetQueryObjectui64vEXT, _dispatch_stub_824@12) + GL_STUB(_dispatch_stub_823, _gloffset_ProgramLocalParameters4fvEXT, _dispatch_stub_823@16) + HIDDEN(GL_PREFIX(_dispatch_stub_823, _dispatch_stub_823@16)) + GL_STUB(_dispatch_stub_824, _gloffset_GetQueryObjecti64vEXT, _dispatch_stub_824@12) HIDDEN(GL_PREFIX(_dispatch_stub_824, _dispatch_stub_824@12)) + GL_STUB(_dispatch_stub_825, _gloffset_GetQueryObjectui64vEXT, _dispatch_stub_825@12) + HIDDEN(GL_PREFIX(_dispatch_stub_825, _dispatch_stub_825@12)) GL_STUB(EGLImageTargetRenderbufferStorageOES, _gloffset_EGLImageTargetRenderbufferStorageOES, EGLImageTargetRenderbufferStorageOES@8) GL_STUB(EGLImageTargetTexture2DOES, _gloffset_EGLImageTargetTexture2DOES, EGLImageTargetTexture2DOES@8) GL_STUB_ALIAS(ArrayElementEXT, _gloffset_ArrayElement, ArrayElementEXT@4, ArrayElement, ArrayElement@4) @@ -1273,9 +1274,9 @@ GLNAME(gl_dispatch_functions_start): GL_STUB_ALIAS(IsProgramARB, _gloffset_IsProgramNV, IsProgramARB@4, IsProgramNV, IsProgramNV@4) GL_STUB_ALIAS(PointParameteri, _gloffset_PointParameteriNV, PointParameteri@8, PointParameteriNV, PointParameteriNV@8) GL_STUB_ALIAS(PointParameteriv, _gloffset_PointParameterivNV, PointParameteriv@8, PointParameterivNV, PointParameterivNV@8) - GL_STUB_ALIAS(DeleteVertexArrays, _gloffset_DeleteVertexArraysAPPLE, DeleteVertexArrays@8, _dispatch_stub_767, _dispatch_stub_767@8) - GL_STUB_ALIAS(IsVertexArray, _gloffset_IsVertexArrayAPPLE, IsVertexArray@4, _dispatch_stub_769, _dispatch_stub_769@4) - GL_STUB_ALIAS(BlendEquationSeparate, _gloffset_BlendEquationSeparateEXT, BlendEquationSeparate@8, _dispatch_stub_777, _dispatch_stub_777@8) + GL_STUB_ALIAS(DeleteVertexArrays, _gloffset_DeleteVertexArraysAPPLE, DeleteVertexArrays@8, _dispatch_stub_768, _dispatch_stub_768@8) + GL_STUB_ALIAS(IsVertexArray, _gloffset_IsVertexArrayAPPLE, IsVertexArray@4, _dispatch_stub_770, _dispatch_stub_770@4) + GL_STUB_ALIAS(BlendEquationSeparate, _gloffset_BlendEquationSeparateEXT, BlendEquationSeparate@8, _dispatch_stub_778, _dispatch_stub_778@8) GL_STUB_ALIAS(BindFramebuffer, _gloffset_BindFramebufferEXT, BindFramebuffer@8, BindFramebufferEXT, BindFramebufferEXT@8) GL_STUB_ALIAS(BindRenderbuffer, _gloffset_BindRenderbufferEXT, BindRenderbuffer@8, BindRenderbufferEXT, BindRenderbufferEXT@8) GL_STUB_ALIAS(CheckFramebufferStatus, _gloffset_CheckFramebufferStatusEXT, CheckFramebufferStatus@4, CheckFramebufferStatusEXT, CheckFramebufferStatusEXT@4) @@ -1293,7 +1294,7 @@ GLNAME(gl_dispatch_functions_start): GL_STUB_ALIAS(IsFramebuffer, _gloffset_IsFramebufferEXT, IsFramebuffer@4, IsFramebufferEXT, IsFramebufferEXT@4) GL_STUB_ALIAS(IsRenderbuffer, _gloffset_IsRenderbufferEXT, IsRenderbuffer@4, IsRenderbufferEXT, IsRenderbufferEXT@4) GL_STUB_ALIAS(RenderbufferStorage, _gloffset_RenderbufferStorageEXT, RenderbufferStorage@16, RenderbufferStorageEXT, RenderbufferStorageEXT@16) - GL_STUB_ALIAS(BlitFramebuffer, _gloffset_BlitFramebufferEXT, BlitFramebuffer@40, _dispatch_stub_795, _dispatch_stub_795@40) + GL_STUB_ALIAS(BlitFramebuffer, _gloffset_BlitFramebufferEXT, BlitFramebuffer@40, _dispatch_stub_796, _dispatch_stub_796@40) GL_STUB_ALIAS(FramebufferTextureLayer, _gloffset_FramebufferTextureLayerEXT, FramebufferTextureLayer@20, FramebufferTextureLayerEXT, FramebufferTextureLayerEXT@20) GL_STUB_ALIAS(BeginTransformFeedback, _gloffset_BeginTransformFeedbackEXT, BeginTransformFeedback@4, BeginTransformFeedbackEXT, BeginTransformFeedbackEXT@4) GL_STUB_ALIAS(BindBufferBase, _gloffset_BindBufferBaseEXT, BindBufferBase@12, BindBufferBaseEXT, BindBufferBaseEXT@12) diff --git a/src/mapi/glapi/glapidispatch.h b/src/mapi/glapi/glapidispatch.h index f8a68ee302..9c8ca98324 100644 --- a/src/mapi/glapi/glapidispatch.h +++ b/src/mapi/glapi/glapidispatch.h @@ -1750,6 +1750,9 @@ #define CALL_DrawBuffersARB(disp, parameters) (*((disp)->DrawBuffersARB)) parameters #define GET_DrawBuffersARB(disp) ((disp)->DrawBuffersARB) #define SET_DrawBuffersARB(disp, fn) ((disp)->DrawBuffersARB = fn) +#define CALL_ClampColorARB(disp, parameters) (*((disp)->ClampColorARB)) parameters +#define GET_ClampColorARB(disp) ((disp)->ClampColorARB) +#define SET_ClampColorARB(disp, fn) ((disp)->ClampColorARB = fn) #define CALL_RenderbufferStorageMultisample(disp, parameters) (*((disp)->RenderbufferStorageMultisample)) parameters #define GET_RenderbufferStorageMultisample(disp) ((disp)->RenderbufferStorageMultisample) #define SET_RenderbufferStorageMultisample(disp, fn) ((disp)->RenderbufferStorageMultisample = fn) @@ -2545,7 +2548,7 @@ #else -#define driDispatchRemapTable_size 419 +#define driDispatchRemapTable_size 420 extern int driDispatchRemapTable[ driDispatchRemapTable_size ]; #define AttachShader_remap_index 0 @@ -2703,270 +2706,271 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ]; #define GetActiveAttribARB_remap_index 152 #define GetAttribLocationARB_remap_index 153 #define DrawBuffersARB_remap_index 154 -#define RenderbufferStorageMultisample_remap_index 155 -#define FramebufferTextureARB_remap_index 156 -#define FramebufferTextureFaceARB_remap_index 157 -#define ProgramParameteriARB_remap_index 158 -#define FlushMappedBufferRange_remap_index 159 -#define MapBufferRange_remap_index 160 -#define BindVertexArray_remap_index 161 -#define GenVertexArrays_remap_index 162 -#define CopyBufferSubData_remap_index 163 -#define ClientWaitSync_remap_index 164 -#define DeleteSync_remap_index 165 -#define FenceSync_remap_index 166 -#define GetInteger64v_remap_index 167 -#define GetSynciv_remap_index 168 -#define IsSync_remap_index 169 -#define WaitSync_remap_index 170 -#define DrawElementsBaseVertex_remap_index 171 -#define DrawRangeElementsBaseVertex_remap_index 172 -#define MultiDrawElementsBaseVertex_remap_index 173 -#define BindTransformFeedback_remap_index 174 -#define DeleteTransformFeedbacks_remap_index 175 -#define DrawTransformFeedback_remap_index 176 -#define GenTransformFeedbacks_remap_index 177 -#define IsTransformFeedback_remap_index 178 -#define PauseTransformFeedback_remap_index 179 -#define ResumeTransformFeedback_remap_index 180 -#define PolygonOffsetEXT_remap_index 181 -#define GetPixelTexGenParameterfvSGIS_remap_index 182 -#define GetPixelTexGenParameterivSGIS_remap_index 183 -#define PixelTexGenParameterfSGIS_remap_index 184 -#define PixelTexGenParameterfvSGIS_remap_index 185 -#define PixelTexGenParameteriSGIS_remap_index 186 -#define PixelTexGenParameterivSGIS_remap_index 187 -#define SampleMaskSGIS_remap_index 188 -#define SamplePatternSGIS_remap_index 189 -#define ColorPointerEXT_remap_index 190 -#define EdgeFlagPointerEXT_remap_index 191 -#define IndexPointerEXT_remap_index 192 -#define NormalPointerEXT_remap_index 193 -#define TexCoordPointerEXT_remap_index 194 -#define VertexPointerEXT_remap_index 195 -#define PointParameterfEXT_remap_index 196 -#define PointParameterfvEXT_remap_index 197 -#define LockArraysEXT_remap_index 198 -#define UnlockArraysEXT_remap_index 199 -#define CullParameterdvEXT_remap_index 200 -#define CullParameterfvEXT_remap_index 201 -#define SecondaryColor3bEXT_remap_index 202 -#define SecondaryColor3bvEXT_remap_index 203 -#define SecondaryColor3dEXT_remap_index 204 -#define SecondaryColor3dvEXT_remap_index 205 -#define SecondaryColor3fEXT_remap_index 206 -#define SecondaryColor3fvEXT_remap_index 207 -#define SecondaryColor3iEXT_remap_index 208 -#define SecondaryColor3ivEXT_remap_index 209 -#define SecondaryColor3sEXT_remap_index 210 -#define SecondaryColor3svEXT_remap_index 211 -#define SecondaryColor3ubEXT_remap_index 212 -#define SecondaryColor3ubvEXT_remap_index 213 -#define SecondaryColor3uiEXT_remap_index 214 -#define SecondaryColor3uivEXT_remap_index 215 -#define SecondaryColor3usEXT_remap_index 216 -#define SecondaryColor3usvEXT_remap_index 217 -#define SecondaryColorPointerEXT_remap_index 218 -#define MultiDrawArraysEXT_remap_index 219 -#define MultiDrawElementsEXT_remap_index 220 -#define FogCoordPointerEXT_remap_index 221 -#define FogCoorddEXT_remap_index 222 -#define FogCoorddvEXT_remap_index 223 -#define FogCoordfEXT_remap_index 224 -#define FogCoordfvEXT_remap_index 225 -#define PixelTexGenSGIX_remap_index 226 -#define BlendFuncSeparateEXT_remap_index 227 -#define FlushVertexArrayRangeNV_remap_index 228 -#define VertexArrayRangeNV_remap_index 229 -#define CombinerInputNV_remap_index 230 -#define CombinerOutputNV_remap_index 231 -#define CombinerParameterfNV_remap_index 232 -#define CombinerParameterfvNV_remap_index 233 -#define CombinerParameteriNV_remap_index 234 -#define CombinerParameterivNV_remap_index 235 -#define FinalCombinerInputNV_remap_index 236 -#define GetCombinerInputParameterfvNV_remap_index 237 -#define GetCombinerInputParameterivNV_remap_index 238 -#define GetCombinerOutputParameterfvNV_remap_index 239 -#define GetCombinerOutputParameterivNV_remap_index 240 -#define GetFinalCombinerInputParameterfvNV_remap_index 241 -#define GetFinalCombinerInputParameterivNV_remap_index 242 -#define ResizeBuffersMESA_remap_index 243 -#define WindowPos2dMESA_remap_index 244 -#define WindowPos2dvMESA_remap_index 245 -#define WindowPos2fMESA_remap_index 246 -#define WindowPos2fvMESA_remap_index 247 -#define WindowPos2iMESA_remap_index 248 -#define WindowPos2ivMESA_remap_index 249 -#define WindowPos2sMESA_remap_index 250 -#define WindowPos2svMESA_remap_index 251 -#define WindowPos3dMESA_remap_index 252 -#define WindowPos3dvMESA_remap_index 253 -#define WindowPos3fMESA_remap_index 254 -#define WindowPos3fvMESA_remap_index 255 -#define WindowPos3iMESA_remap_index 256 -#define WindowPos3ivMESA_remap_index 257 -#define WindowPos3sMESA_remap_index 258 -#define WindowPos3svMESA_remap_index 259 -#define WindowPos4dMESA_remap_index 260 -#define WindowPos4dvMESA_remap_index 261 -#define WindowPos4fMESA_remap_index 262 -#define WindowPos4fvMESA_remap_index 263 -#define WindowPos4iMESA_remap_index 264 -#define WindowPos4ivMESA_remap_index 265 -#define WindowPos4sMESA_remap_index 266 -#define WindowPos4svMESA_remap_index 267 -#define MultiModeDrawArraysIBM_remap_index 268 -#define MultiModeDrawElementsIBM_remap_index 269 -#define DeleteFencesNV_remap_index 270 -#define FinishFenceNV_remap_index 271 -#define GenFencesNV_remap_index 272 -#define GetFenceivNV_remap_index 273 -#define IsFenceNV_remap_index 274 -#define SetFenceNV_remap_index 275 -#define TestFenceNV_remap_index 276 -#define AreProgramsResidentNV_remap_index 277 -#define BindProgramNV_remap_index 278 -#define DeleteProgramsNV_remap_index 279 -#define ExecuteProgramNV_remap_index 280 -#define GenProgramsNV_remap_index 281 -#define GetProgramParameterdvNV_remap_index 282 -#define GetProgramParameterfvNV_remap_index 283 -#define GetProgramStringNV_remap_index 284 -#define GetProgramivNV_remap_index 285 -#define GetTrackMatrixivNV_remap_index 286 -#define GetVertexAttribPointervNV_remap_index 287 -#define GetVertexAttribdvNV_remap_index 288 -#define GetVertexAttribfvNV_remap_index 289 -#define GetVertexAttribivNV_remap_index 290 -#define IsProgramNV_remap_index 291 -#define LoadProgramNV_remap_index 292 -#define ProgramParameters4dvNV_remap_index 293 -#define ProgramParameters4fvNV_remap_index 294 -#define RequestResidentProgramsNV_remap_index 295 -#define TrackMatrixNV_remap_index 296 -#define VertexAttrib1dNV_remap_index 297 -#define VertexAttrib1dvNV_remap_index 298 -#define VertexAttrib1fNV_remap_index 299 -#define VertexAttrib1fvNV_remap_index 300 -#define VertexAttrib1sNV_remap_index 301 -#define VertexAttrib1svNV_remap_index 302 -#define VertexAttrib2dNV_remap_index 303 -#define VertexAttrib2dvNV_remap_index 304 -#define VertexAttrib2fNV_remap_index 305 -#define VertexAttrib2fvNV_remap_index 306 -#define VertexAttrib2sNV_remap_index 307 -#define VertexAttrib2svNV_remap_index 308 -#define VertexAttrib3dNV_remap_index 309 -#define VertexAttrib3dvNV_remap_index 310 -#define VertexAttrib3fNV_remap_index 311 -#define VertexAttrib3fvNV_remap_index 312 -#define VertexAttrib3sNV_remap_index 313 -#define VertexAttrib3svNV_remap_index 314 -#define VertexAttrib4dNV_remap_index 315 -#define VertexAttrib4dvNV_remap_index 316 -#define VertexAttrib4fNV_remap_index 317 -#define VertexAttrib4fvNV_remap_index 318 -#define VertexAttrib4sNV_remap_index 319 -#define VertexAttrib4svNV_remap_index 320 -#define VertexAttrib4ubNV_remap_index 321 -#define VertexAttrib4ubvNV_remap_index 322 -#define VertexAttribPointerNV_remap_index 323 -#define VertexAttribs1dvNV_remap_index 324 -#define VertexAttribs1fvNV_remap_index 325 -#define VertexAttribs1svNV_remap_index 326 -#define VertexAttribs2dvNV_remap_index 327 -#define VertexAttribs2fvNV_remap_index 328 -#define VertexAttribs2svNV_remap_index 329 -#define VertexAttribs3dvNV_remap_index 330 -#define VertexAttribs3fvNV_remap_index 331 -#define VertexAttribs3svNV_remap_index 332 -#define VertexAttribs4dvNV_remap_index 333 -#define VertexAttribs4fvNV_remap_index 334 -#define VertexAttribs4svNV_remap_index 335 -#define VertexAttribs4ubvNV_remap_index 336 -#define GetTexBumpParameterfvATI_remap_index 337 -#define GetTexBumpParameterivATI_remap_index 338 -#define TexBumpParameterfvATI_remap_index 339 -#define TexBumpParameterivATI_remap_index 340 -#define AlphaFragmentOp1ATI_remap_index 341 -#define AlphaFragmentOp2ATI_remap_index 342 -#define AlphaFragmentOp3ATI_remap_index 343 -#define BeginFragmentShaderATI_remap_index 344 -#define BindFragmentShaderATI_remap_index 345 -#define ColorFragmentOp1ATI_remap_index 346 -#define ColorFragmentOp2ATI_remap_index 347 -#define ColorFragmentOp3ATI_remap_index 348 -#define DeleteFragmentShaderATI_remap_index 349 -#define EndFragmentShaderATI_remap_index 350 -#define GenFragmentShadersATI_remap_index 351 -#define PassTexCoordATI_remap_index 352 -#define SampleMapATI_remap_index 353 -#define SetFragmentShaderConstantATI_remap_index 354 -#define PointParameteriNV_remap_index 355 -#define PointParameterivNV_remap_index 356 -#define ActiveStencilFaceEXT_remap_index 357 -#define BindVertexArrayAPPLE_remap_index 358 -#define DeleteVertexArraysAPPLE_remap_index 359 -#define GenVertexArraysAPPLE_remap_index 360 -#define IsVertexArrayAPPLE_remap_index 361 -#define GetProgramNamedParameterdvNV_remap_index 362 -#define GetProgramNamedParameterfvNV_remap_index 363 -#define ProgramNamedParameter4dNV_remap_index 364 -#define ProgramNamedParameter4dvNV_remap_index 365 -#define ProgramNamedParameter4fNV_remap_index 366 -#define ProgramNamedParameter4fvNV_remap_index 367 -#define DepthBoundsEXT_remap_index 368 -#define BlendEquationSeparateEXT_remap_index 369 -#define BindFramebufferEXT_remap_index 370 -#define BindRenderbufferEXT_remap_index 371 -#define CheckFramebufferStatusEXT_remap_index 372 -#define DeleteFramebuffersEXT_remap_index 373 -#define DeleteRenderbuffersEXT_remap_index 374 -#define FramebufferRenderbufferEXT_remap_index 375 -#define FramebufferTexture1DEXT_remap_index 376 -#define FramebufferTexture2DEXT_remap_index 377 -#define FramebufferTexture3DEXT_remap_index 378 -#define GenFramebuffersEXT_remap_index 379 -#define GenRenderbuffersEXT_remap_index 380 -#define GenerateMipmapEXT_remap_index 381 -#define GetFramebufferAttachmentParameterivEXT_remap_index 382 -#define GetRenderbufferParameterivEXT_remap_index 383 -#define IsFramebufferEXT_remap_index 384 -#define IsRenderbufferEXT_remap_index 385 -#define RenderbufferStorageEXT_remap_index 386 -#define BlitFramebufferEXT_remap_index 387 -#define BufferParameteriAPPLE_remap_index 388 -#define FlushMappedBufferRangeAPPLE_remap_index 389 -#define FramebufferTextureLayerEXT_remap_index 390 -#define ColorMaskIndexedEXT_remap_index 391 -#define DisableIndexedEXT_remap_index 392 -#define EnableIndexedEXT_remap_index 393 -#define GetBooleanIndexedvEXT_remap_index 394 -#define GetIntegerIndexedvEXT_remap_index 395 -#define IsEnabledIndexedEXT_remap_index 396 -#define BeginConditionalRenderNV_remap_index 397 -#define EndConditionalRenderNV_remap_index 398 -#define BeginTransformFeedbackEXT_remap_index 399 -#define BindBufferBaseEXT_remap_index 400 -#define BindBufferOffsetEXT_remap_index 401 -#define BindBufferRangeEXT_remap_index 402 -#define EndTransformFeedbackEXT_remap_index 403 -#define GetTransformFeedbackVaryingEXT_remap_index 404 -#define TransformFeedbackVaryingsEXT_remap_index 405 -#define ProvokingVertexEXT_remap_index 406 -#define GetTexParameterPointervAPPLE_remap_index 407 -#define TextureRangeAPPLE_remap_index 408 -#define GetObjectParameterivAPPLE_remap_index 409 -#define ObjectPurgeableAPPLE_remap_index 410 -#define ObjectUnpurgeableAPPLE_remap_index 411 -#define StencilFuncSeparateATI_remap_index 412 -#define ProgramEnvParameters4fvEXT_remap_index 413 -#define ProgramLocalParameters4fvEXT_remap_index 414 -#define GetQueryObjecti64vEXT_remap_index 415 -#define GetQueryObjectui64vEXT_remap_index 416 -#define EGLImageTargetRenderbufferStorageOES_remap_index 417 -#define EGLImageTargetTexture2DOES_remap_index 418 +#define ClampColorARB_remap_index 155 +#define RenderbufferStorageMultisample_remap_index 156 +#define FramebufferTextureARB_remap_index 157 +#define FramebufferTextureFaceARB_remap_index 158 +#define ProgramParameteriARB_remap_index 159 +#define FlushMappedBufferRange_remap_index 160 +#define MapBufferRange_remap_index 161 +#define BindVertexArray_remap_index 162 +#define GenVertexArrays_remap_index 163 +#define CopyBufferSubData_remap_index 164 +#define ClientWaitSync_remap_index 165 +#define DeleteSync_remap_index 166 +#define FenceSync_remap_index 167 +#define GetInteger64v_remap_index 168 +#define GetSynciv_remap_index 169 +#define IsSync_remap_index 170 +#define WaitSync_remap_index 171 +#define DrawElementsBaseVertex_remap_index 172 +#define DrawRangeElementsBaseVertex_remap_index 173 +#define MultiDrawElementsBaseVertex_remap_index 174 +#define BindTransformFeedback_remap_index 175 +#define DeleteTransformFeedbacks_remap_index 176 +#define DrawTransformFeedback_remap_index 177 +#define GenTransformFeedbacks_remap_index 178 +#define IsTransformFeedback_remap_index 179 +#define PauseTransformFeedback_remap_index 180 +#define ResumeTransformFeedback_remap_index 181 +#define PolygonOffsetEXT_remap_index 182 +#define GetPixelTexGenParameterfvSGIS_remap_index 183 +#define GetPixelTexGenParameterivSGIS_remap_index 184 +#define PixelTexGenParameterfSGIS_remap_index 185 +#define PixelTexGenParameterfvSGIS_remap_index 186 +#define PixelTexGenParameteriSGIS_remap_index 187 +#define PixelTexGenParameterivSGIS_remap_index 188 +#define SampleMaskSGIS_remap_index 189 +#define SamplePatternSGIS_remap_index 190 +#define ColorPointerEXT_remap_index 191 +#define EdgeFlagPointerEXT_remap_index 192 +#define IndexPointerEXT_remap_index 193 +#define NormalPointerEXT_remap_index 194 +#define TexCoordPointerEXT_remap_index 195 +#define VertexPointerEXT_remap_index 196 +#define PointParameterfEXT_remap_index 197 +#define PointParameterfvEXT_remap_index 198 +#define LockArraysEXT_remap_index 199 +#define UnlockArraysEXT_remap_index 200 +#define CullParameterdvEXT_remap_index 201 +#define CullParameterfvEXT_remap_index 202 +#define SecondaryColor3bEXT_remap_index 203 +#define SecondaryColor3bvEXT_remap_index 204 +#define SecondaryColor3dEXT_remap_index 205 +#define SecondaryColor3dvEXT_remap_index 206 +#define SecondaryColor3fEXT_remap_index 207 +#define SecondaryColor3fvEXT_remap_index 208 +#define SecondaryColor3iEXT_remap_index 209 +#define SecondaryColor3ivEXT_remap_index 210 +#define SecondaryColor3sEXT_remap_index 211 +#define SecondaryColor3svEXT_remap_index 212 +#define SecondaryColor3ubEXT_remap_index 213 +#define SecondaryColor3ubvEXT_remap_index 214 +#define SecondaryColor3uiEXT_remap_index 215 +#define SecondaryColor3uivEXT_remap_index 216 +#define SecondaryColor3usEXT_remap_index 217 +#define SecondaryColor3usvEXT_remap_index 218 +#define SecondaryColorPointerEXT_remap_index 219 +#define MultiDrawArraysEXT_remap_index 220 +#define MultiDrawElementsEXT_remap_index 221 +#define FogCoordPointerEXT_remap_index 222 +#define FogCoorddEXT_remap_index 223 +#define FogCoorddvEXT_remap_index 224 +#define FogCoordfEXT_remap_index 225 +#define FogCoordfvEXT_remap_index 226 +#define PixelTexGenSGIX_remap_index 227 +#define BlendFuncSeparateEXT_remap_index 228 +#define FlushVertexArrayRangeNV_remap_index 229 +#define VertexArrayRangeNV_remap_index 230 +#define CombinerInputNV_remap_index 231 +#define CombinerOutputNV_remap_index 232 +#define CombinerParameterfNV_remap_index 233 +#define CombinerParameterfvNV_remap_index 234 +#define CombinerParameteriNV_remap_index 235 +#define CombinerParameterivNV_remap_index 236 +#define FinalCombinerInputNV_remap_index 237 +#define GetCombinerInputParameterfvNV_remap_index 238 +#define GetCombinerInputParameterivNV_remap_index 239 +#define GetCombinerOutputParameterfvNV_remap_index 240 +#define GetCombinerOutputParameterivNV_remap_index 241 +#define GetFinalCombinerInputParameterfvNV_remap_index 242 +#define GetFinalCombinerInputParameterivNV_remap_index 243 +#define ResizeBuffersMESA_remap_index 244 +#define WindowPos2dMESA_remap_index 245 +#define WindowPos2dvMESA_remap_index 246 +#define WindowPos2fMESA_remap_index 247 +#define WindowPos2fvMESA_remap_index 248 +#define WindowPos2iMESA_remap_index 249 +#define WindowPos2ivMESA_remap_index 250 +#define WindowPos2sMESA_remap_index 251 +#define WindowPos2svMESA_remap_index 252 +#define WindowPos3dMESA_remap_index 253 +#define WindowPos3dvMESA_remap_index 254 +#define WindowPos3fMESA_remap_index 255 +#define WindowPos3fvMESA_remap_index 256 +#define WindowPos3iMESA_remap_index 257 +#define WindowPos3ivMESA_remap_index 258 +#define WindowPos3sMESA_remap_index 259 +#define WindowPos3svMESA_remap_index 260 +#define WindowPos4dMESA_remap_index 261 +#define WindowPos4dvMESA_remap_index 262 +#define WindowPos4fMESA_remap_index 263 +#define WindowPos4fvMESA_remap_index 264 +#define WindowPos4iMESA_remap_index 265 +#define WindowPos4ivMESA_remap_index 266 +#define WindowPos4sMESA_remap_index 267 +#define WindowPos4svMESA_remap_index 268 +#define MultiModeDrawArraysIBM_remap_index 269 +#define MultiModeDrawElementsIBM_remap_index 270 +#define DeleteFencesNV_remap_index 271 +#define FinishFenceNV_remap_index 272 +#define GenFencesNV_remap_index 273 +#define GetFenceivNV_remap_index 274 +#define IsFenceNV_remap_index 275 +#define SetFenceNV_remap_index 276 +#define TestFenceNV_remap_index 277 +#define AreProgramsResidentNV_remap_index 278 +#define BindProgramNV_remap_index 279 +#define DeleteProgramsNV_remap_index 280 +#define ExecuteProgramNV_remap_index 281 +#define GenProgramsNV_remap_index 282 +#define GetProgramParameterdvNV_remap_index 283 +#define GetProgramParameterfvNV_remap_index 284 +#define GetProgramStringNV_remap_index 285 +#define GetProgramivNV_remap_index 286 +#define GetTrackMatrixivNV_remap_index 287 +#define GetVertexAttribPointervNV_remap_index 288 +#define GetVertexAttribdvNV_remap_index 289 +#define GetVertexAttribfvNV_remap_index 290 +#define GetVertexAttribivNV_remap_index 291 +#define IsProgramNV_remap_index 292 +#define LoadProgramNV_remap_index 293 +#define ProgramParameters4dvNV_remap_index 294 +#define ProgramParameters4fvNV_remap_index 295 +#define RequestResidentProgramsNV_remap_index 296 +#define TrackMatrixNV_remap_index 297 +#define VertexAttrib1dNV_remap_index 298 +#define VertexAttrib1dvNV_remap_index 299 +#define VertexAttrib1fNV_remap_index 300 +#define VertexAttrib1fvNV_remap_index 301 +#define VertexAttrib1sNV_remap_index 302 +#define VertexAttrib1svNV_remap_index 303 +#define VertexAttrib2dNV_remap_index 304 +#define VertexAttrib2dvNV_remap_index 305 +#define VertexAttrib2fNV_remap_index 306 +#define VertexAttrib2fvNV_remap_index 307 +#define VertexAttrib2sNV_remap_index 308 +#define VertexAttrib2svNV_remap_index 309 +#define VertexAttrib3dNV_remap_index 310 +#define VertexAttrib3dvNV_remap_index 311 +#define VertexAttrib3fNV_remap_index 312 +#define VertexAttrib3fvNV_remap_index 313 +#define VertexAttrib3sNV_remap_index 314 +#define VertexAttrib3svNV_remap_index 315 +#define VertexAttrib4dNV_remap_index 316 +#define VertexAttrib4dvNV_remap_index 317 +#define VertexAttrib4fNV_remap_index 318 +#define VertexAttrib4fvNV_remap_index 319 +#define VertexAttrib4sNV_remap_index 320 +#define VertexAttrib4svNV_remap_index 321 +#define VertexAttrib4ubNV_remap_index 322 +#define VertexAttrib4ubvNV_remap_index 323 +#define VertexAttribPointerNV_remap_index 324 +#define VertexAttribs1dvNV_remap_index 325 +#define VertexAttribs1fvNV_remap_index 326 +#define VertexAttribs1svNV_remap_index 327 +#define VertexAttribs2dvNV_remap_index 328 +#define VertexAttribs2fvNV_remap_index 329 +#define VertexAttribs2svNV_remap_index 330 +#define VertexAttribs3dvNV_remap_index 331 +#define VertexAttribs3fvNV_remap_index 332 +#define VertexAttribs3svNV_remap_index 333 +#define VertexAttribs4dvNV_remap_index 334 +#define VertexAttribs4fvNV_remap_index 335 +#define VertexAttribs4svNV_remap_index 336 +#define VertexAttribs4ubvNV_remap_index 337 +#define GetTexBumpParameterfvATI_remap_index 338 +#define GetTexBumpParameterivATI_remap_index 339 +#define TexBumpParameterfvATI_remap_index 340 +#define TexBumpParameterivATI_remap_index 341 +#define AlphaFragmentOp1ATI_remap_index 342 +#define AlphaFragmentOp2ATI_remap_index 343 +#define AlphaFragmentOp3ATI_remap_index 344 +#define BeginFragmentShaderATI_remap_index 345 +#define BindFragmentShaderATI_remap_index 346 +#define ColorFragmentOp1ATI_remap_index 347 +#define ColorFragmentOp2ATI_remap_index 348 +#define ColorFragmentOp3ATI_remap_index 349 +#define DeleteFragmentShaderATI_remap_index 350 +#define EndFragmentShaderATI_remap_index 351 +#define GenFragmentShadersATI_remap_index 352 +#define PassTexCoordATI_remap_index 353 +#define SampleMapATI_remap_index 354 +#define SetFragmentShaderConstantATI_remap_index 355 +#define PointParameteriNV_remap_index 356 +#define PointParameterivNV_remap_index 357 +#define ActiveStencilFaceEXT_remap_index 358 +#define BindVertexArrayAPPLE_remap_index 359 +#define DeleteVertexArraysAPPLE_remap_index 360 +#define GenVertexArraysAPPLE_remap_index 361 +#define IsVertexArrayAPPLE_remap_index 362 +#define GetProgramNamedParameterdvNV_remap_index 363 +#define GetProgramNamedParameterfvNV_remap_index 364 +#define ProgramNamedParameter4dNV_remap_index 365 +#define ProgramNamedParameter4dvNV_remap_index 366 +#define ProgramNamedParameter4fNV_remap_index 367 +#define ProgramNamedParameter4fvNV_remap_index 368 +#define DepthBoundsEXT_remap_index 369 +#define BlendEquationSeparateEXT_remap_index 370 +#define BindFramebufferEXT_remap_index 371 +#define BindRenderbufferEXT_remap_index 372 +#define CheckFramebufferStatusEXT_remap_index 373 +#define DeleteFramebuffersEXT_remap_index 374 +#define DeleteRenderbuffersEXT_remap_index 375 +#define FramebufferRenderbufferEXT_remap_index 376 +#define FramebufferTexture1DEXT_remap_index 377 +#define FramebufferTexture2DEXT_remap_index 378 +#define FramebufferTexture3DEXT_remap_index 379 +#define GenFramebuffersEXT_remap_index 380 +#define GenRenderbuffersEXT_remap_index 381 +#define GenerateMipmapEXT_remap_index 382 +#define GetFramebufferAttachmentParameterivEXT_remap_index 383 +#define GetRenderbufferParameterivEXT_remap_index 384 +#define IsFramebufferEXT_remap_index 385 +#define IsRenderbufferEXT_remap_index 386 +#define RenderbufferStorageEXT_remap_index 387 +#define BlitFramebufferEXT_remap_index 388 +#define BufferParameteriAPPLE_remap_index 389 +#define FlushMappedBufferRangeAPPLE_remap_index 390 +#define FramebufferTextureLayerEXT_remap_index 391 +#define ColorMaskIndexedEXT_remap_index 392 +#define DisableIndexedEXT_remap_index 393 +#define EnableIndexedEXT_remap_index 394 +#define GetBooleanIndexedvEXT_remap_index 395 +#define GetIntegerIndexedvEXT_remap_index 396 +#define IsEnabledIndexedEXT_remap_index 397 +#define BeginConditionalRenderNV_remap_index 398 +#define EndConditionalRenderNV_remap_index 399 +#define BeginTransformFeedbackEXT_remap_index 400 +#define BindBufferBaseEXT_remap_index 401 +#define BindBufferOffsetEXT_remap_index 402 +#define BindBufferRangeEXT_remap_index 403 +#define EndTransformFeedbackEXT_remap_index 404 +#define GetTransformFeedbackVaryingEXT_remap_index 405 +#define TransformFeedbackVaryingsEXT_remap_index 406 +#define ProvokingVertexEXT_remap_index 407 +#define GetTexParameterPointervAPPLE_remap_index 408 +#define TextureRangeAPPLE_remap_index 409 +#define GetObjectParameterivAPPLE_remap_index 410 +#define ObjectPurgeableAPPLE_remap_index 411 +#define ObjectUnpurgeableAPPLE_remap_index 412 +#define StencilFuncSeparateATI_remap_index 413 +#define ProgramEnvParameters4fvEXT_remap_index 414 +#define ProgramLocalParameters4fvEXT_remap_index 415 +#define GetQueryObjecti64vEXT_remap_index 416 +#define GetQueryObjectui64vEXT_remap_index 417 +#define EGLImageTargetRenderbufferStorageOES_remap_index 418 +#define EGLImageTargetTexture2DOES_remap_index 419 #define CALL_AttachShader(disp, parameters) CALL_by_offset(disp, (void (GLAPIENTRYP)(GLuint, GLuint)), driDispatchRemapTable[AttachShader_remap_index], parameters) #define GET_AttachShader(disp) GET_by_offset(disp, driDispatchRemapTable[AttachShader_remap_index]) @@ -3433,6 +3437,9 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ]; #define CALL_DrawBuffersARB(disp, parameters) CALL_by_offset(disp, (void (GLAPIENTRYP)(GLsizei, const GLenum *)), driDispatchRemapTable[DrawBuffersARB_remap_index], parameters) #define GET_DrawBuffersARB(disp) GET_by_offset(disp, driDispatchRemapTable[DrawBuffersARB_remap_index]) #define SET_DrawBuffersARB(disp, fn) SET_by_offset(disp, driDispatchRemapTable[DrawBuffersARB_remap_index], fn) +#define CALL_ClampColorARB(disp, parameters) CALL_by_offset(disp, (void (GLAPIENTRYP)(GLenum, GLenum)), driDispatchRemapTable[ClampColorARB_remap_index], parameters) +#define GET_ClampColorARB(disp) GET_by_offset(disp, driDispatchRemapTable[ClampColorARB_remap_index]) +#define SET_ClampColorARB(disp, fn) SET_by_offset(disp, driDispatchRemapTable[ClampColorARB_remap_index], fn) #define CALL_RenderbufferStorageMultisample(disp, parameters) CALL_by_offset(disp, (void (GLAPIENTRYP)(GLenum, GLsizei, GLenum, GLsizei, GLsizei)), driDispatchRemapTable[RenderbufferStorageMultisample_remap_index], parameters) #define GET_RenderbufferStorageMultisample(disp) GET_by_offset(disp, driDispatchRemapTable[RenderbufferStorageMultisample_remap_index]) #define SET_RenderbufferStorageMultisample(disp, fn) SET_by_offset(disp, driDispatchRemapTable[RenderbufferStorageMultisample_remap_index], fn) diff --git a/src/mapi/glapi/glapioffsets.h b/src/mapi/glapi/glapioffsets.h index a790d87322..656dcad4e9 100644 --- a/src/mapi/glapi/glapioffsets.h +++ b/src/mapi/glapi/glapioffsets.h @@ -597,271 +597,272 @@ #define _gloffset_GetActiveAttribARB 560 #define _gloffset_GetAttribLocationARB 561 #define _gloffset_DrawBuffersARB 562 -#define _gloffset_RenderbufferStorageMultisample 563 -#define _gloffset_FramebufferTextureARB 564 -#define _gloffset_FramebufferTextureFaceARB 565 -#define _gloffset_ProgramParameteriARB 566 -#define _gloffset_FlushMappedBufferRange 567 -#define _gloffset_MapBufferRange 568 -#define _gloffset_BindVertexArray 569 -#define _gloffset_GenVertexArrays 570 -#define _gloffset_CopyBufferSubData 571 -#define _gloffset_ClientWaitSync 572 -#define _gloffset_DeleteSync 573 -#define _gloffset_FenceSync 574 -#define _gloffset_GetInteger64v 575 -#define _gloffset_GetSynciv 576 -#define _gloffset_IsSync 577 -#define _gloffset_WaitSync 578 -#define _gloffset_DrawElementsBaseVertex 579 -#define _gloffset_DrawRangeElementsBaseVertex 580 -#define _gloffset_MultiDrawElementsBaseVertex 581 -#define _gloffset_BindTransformFeedback 582 -#define _gloffset_DeleteTransformFeedbacks 583 -#define _gloffset_DrawTransformFeedback 584 -#define _gloffset_GenTransformFeedbacks 585 -#define _gloffset_IsTransformFeedback 586 -#define _gloffset_PauseTransformFeedback 587 -#define _gloffset_ResumeTransformFeedback 588 -#define _gloffset_PolygonOffsetEXT 589 -#define _gloffset_GetPixelTexGenParameterfvSGIS 590 -#define _gloffset_GetPixelTexGenParameterivSGIS 591 -#define _gloffset_PixelTexGenParameterfSGIS 592 -#define _gloffset_PixelTexGenParameterfvSGIS 593 -#define _gloffset_PixelTexGenParameteriSGIS 594 -#define _gloffset_PixelTexGenParameterivSGIS 595 -#define _gloffset_SampleMaskSGIS 596 -#define _gloffset_SamplePatternSGIS 597 -#define _gloffset_ColorPointerEXT 598 -#define _gloffset_EdgeFlagPointerEXT 599 -#define _gloffset_IndexPointerEXT 600 -#define _gloffset_NormalPointerEXT 601 -#define _gloffset_TexCoordPointerEXT 602 -#define _gloffset_VertexPointerEXT 603 -#define _gloffset_PointParameterfEXT 604 -#define _gloffset_PointParameterfvEXT 605 -#define _gloffset_LockArraysEXT 606 -#define _gloffset_UnlockArraysEXT 607 -#define _gloffset_CullParameterdvEXT 608 -#define _gloffset_CullParameterfvEXT 609 -#define _gloffset_SecondaryColor3bEXT 610 -#define _gloffset_SecondaryColor3bvEXT 611 -#define _gloffset_SecondaryColor3dEXT 612 -#define _gloffset_SecondaryColor3dvEXT 613 -#define _gloffset_SecondaryColor3fEXT 614 -#define _gloffset_SecondaryColor3fvEXT 615 -#define _gloffset_SecondaryColor3iEXT 616 -#define _gloffset_SecondaryColor3ivEXT 617 -#define _gloffset_SecondaryColor3sEXT 618 -#define _gloffset_SecondaryColor3svEXT 619 -#define _gloffset_SecondaryColor3ubEXT 620 -#define _gloffset_SecondaryColor3ubvEXT 621 -#define _gloffset_SecondaryColor3uiEXT 622 -#define _gloffset_SecondaryColor3uivEXT 623 -#define _gloffset_SecondaryColor3usEXT 624 -#define _gloffset_SecondaryColor3usvEXT 625 -#define _gloffset_SecondaryColorPointerEXT 626 -#define _gloffset_MultiDrawArraysEXT 627 -#define _gloffset_MultiDrawElementsEXT 628 -#define _gloffset_FogCoordPointerEXT 629 -#define _gloffset_FogCoorddEXT 630 -#define _gloffset_FogCoorddvEXT 631 -#define _gloffset_FogCoordfEXT 632 -#define _gloffset_FogCoordfvEXT 633 -#define _gloffset_PixelTexGenSGIX 634 -#define _gloffset_BlendFuncSeparateEXT 635 -#define _gloffset_FlushVertexArrayRangeNV 636 -#define _gloffset_VertexArrayRangeNV 637 -#define _gloffset_CombinerInputNV 638 -#define _gloffset_CombinerOutputNV 639 -#define _gloffset_CombinerParameterfNV 640 -#define _gloffset_CombinerParameterfvNV 641 -#define _gloffset_CombinerParameteriNV 642 -#define _gloffset_CombinerParameterivNV 643 -#define _gloffset_FinalCombinerInputNV 644 -#define _gloffset_GetCombinerInputParameterfvNV 645 -#define _gloffset_GetCombinerInputParameterivNV 646 -#define _gloffset_GetCombinerOutputParameterfvNV 647 -#define _gloffset_GetCombinerOutputParameterivNV 648 -#define _gloffset_GetFinalCombinerInputParameterfvNV 649 -#define _gloffset_GetFinalCombinerInputParameterivNV 650 -#define _gloffset_ResizeBuffersMESA 651 -#define _gloffset_WindowPos2dMESA 652 -#define _gloffset_WindowPos2dvMESA 653 -#define _gloffset_WindowPos2fMESA 654 -#define _gloffset_WindowPos2fvMESA 655 -#define _gloffset_WindowPos2iMESA 656 -#define _gloffset_WindowPos2ivMESA 657 -#define _gloffset_WindowPos2sMESA 658 -#define _gloffset_WindowPos2svMESA 659 -#define _gloffset_WindowPos3dMESA 660 -#define _gloffset_WindowPos3dvMESA 661 -#define _gloffset_WindowPos3fMESA 662 -#define _gloffset_WindowPos3fvMESA 663 -#define _gloffset_WindowPos3iMESA 664 -#define _gloffset_WindowPos3ivMESA 665 -#define _gloffset_WindowPos3sMESA 666 -#define _gloffset_WindowPos3svMESA 667 -#define _gloffset_WindowPos4dMESA 668 -#define _gloffset_WindowPos4dvMESA 669 -#define _gloffset_WindowPos4fMESA 670 -#define _gloffset_WindowPos4fvMESA 671 -#define _gloffset_WindowPos4iMESA 672 -#define _gloffset_WindowPos4ivMESA 673 -#define _gloffset_WindowPos4sMESA 674 -#define _gloffset_WindowPos4svMESA 675 -#define _gloffset_MultiModeDrawArraysIBM 676 -#define _gloffset_MultiModeDrawElementsIBM 677 -#define _gloffset_DeleteFencesNV 678 -#define _gloffset_FinishFenceNV 679 -#define _gloffset_GenFencesNV 680 -#define _gloffset_GetFenceivNV 681 -#define _gloffset_IsFenceNV 682 -#define _gloffset_SetFenceNV 683 -#define _gloffset_TestFenceNV 684 -#define _gloffset_AreProgramsResidentNV 685 -#define _gloffset_BindProgramNV 686 -#define _gloffset_DeleteProgramsNV 687 -#define _gloffset_ExecuteProgramNV 688 -#define _gloffset_GenProgramsNV 689 -#define _gloffset_GetProgramParameterdvNV 690 -#define _gloffset_GetProgramParameterfvNV 691 -#define _gloffset_GetProgramStringNV 692 -#define _gloffset_GetProgramivNV 693 -#define _gloffset_GetTrackMatrixivNV 694 -#define _gloffset_GetVertexAttribPointervNV 695 -#define _gloffset_GetVertexAttribdvNV 696 -#define _gloffset_GetVertexAttribfvNV 697 -#define _gloffset_GetVertexAttribivNV 698 -#define _gloffset_IsProgramNV 699 -#define _gloffset_LoadProgramNV 700 -#define _gloffset_ProgramParameters4dvNV 701 -#define _gloffset_ProgramParameters4fvNV 702 -#define _gloffset_RequestResidentProgramsNV 703 -#define _gloffset_TrackMatrixNV 704 -#define _gloffset_VertexAttrib1dNV 705 -#define _gloffset_VertexAttrib1dvNV 706 -#define _gloffset_VertexAttrib1fNV 707 -#define _gloffset_VertexAttrib1fvNV 708 -#define _gloffset_VertexAttrib1sNV 709 -#define _gloffset_VertexAttrib1svNV 710 -#define _gloffset_VertexAttrib2dNV 711 -#define _gloffset_VertexAttrib2dvNV 712 -#define _gloffset_VertexAttrib2fNV 713 -#define _gloffset_VertexAttrib2fvNV 714 -#define _gloffset_VertexAttrib2sNV 715 -#define _gloffset_VertexAttrib2svNV 716 -#define _gloffset_VertexAttrib3dNV 717 -#define _gloffset_VertexAttrib3dvNV 718 -#define _gloffset_VertexAttrib3fNV 719 -#define _gloffset_VertexAttrib3fvNV 720 -#define _gloffset_VertexAttrib3sNV 721 -#define _gloffset_VertexAttrib3svNV 722 -#define _gloffset_VertexAttrib4dNV 723 -#define _gloffset_VertexAttrib4dvNV 724 -#define _gloffset_VertexAttrib4fNV 725 -#define _gloffset_VertexAttrib4fvNV 726 -#define _gloffset_VertexAttrib4sNV 727 -#define _gloffset_VertexAttrib4svNV 728 -#define _gloffset_VertexAttrib4ubNV 729 -#define _gloffset_VertexAttrib4ubvNV 730 -#define _gloffset_VertexAttribPointerNV 731 -#define _gloffset_VertexAttribs1dvNV 732 -#define _gloffset_VertexAttribs1fvNV 733 -#define _gloffset_VertexAttribs1svNV 734 -#define _gloffset_VertexAttribs2dvNV 735 -#define _gloffset_VertexAttribs2fvNV 736 -#define _gloffset_VertexAttribs2svNV 737 -#define _gloffset_VertexAttribs3dvNV 738 -#define _gloffset_VertexAttribs3fvNV 739 -#define _gloffset_VertexAttribs3svNV 740 -#define _gloffset_VertexAttribs4dvNV 741 -#define _gloffset_VertexAttribs4fvNV 742 -#define _gloffset_VertexAttribs4svNV 743 -#define _gloffset_VertexAttribs4ubvNV 744 -#define _gloffset_GetTexBumpParameterfvATI 745 -#define _gloffset_GetTexBumpParameterivATI 746 -#define _gloffset_TexBumpParameterfvATI 747 -#define _gloffset_TexBumpParameterivATI 748 -#define _gloffset_AlphaFragmentOp1ATI 749 -#define _gloffset_AlphaFragmentOp2ATI 750 -#define _gloffset_AlphaFragmentOp3ATI 751 -#define _gloffset_BeginFragmentShaderATI 752 -#define _gloffset_BindFragmentShaderATI 753 -#define _gloffset_ColorFragmentOp1ATI 754 -#define _gloffset_ColorFragmentOp2ATI 755 -#define _gloffset_ColorFragmentOp3ATI 756 -#define _gloffset_DeleteFragmentShaderATI 757 -#define _gloffset_EndFragmentShaderATI 758 -#define _gloffset_GenFragmentShadersATI 759 -#define _gloffset_PassTexCoordATI 760 -#define _gloffset_SampleMapATI 761 -#define _gloffset_SetFragmentShaderConstantATI 762 -#define _gloffset_PointParameteriNV 763 -#define _gloffset_PointParameterivNV 764 -#define _gloffset_ActiveStencilFaceEXT 765 -#define _gloffset_BindVertexArrayAPPLE 766 -#define _gloffset_DeleteVertexArraysAPPLE 767 -#define _gloffset_GenVertexArraysAPPLE 768 -#define _gloffset_IsVertexArrayAPPLE 769 -#define _gloffset_GetProgramNamedParameterdvNV 770 -#define _gloffset_GetProgramNamedParameterfvNV 771 -#define _gloffset_ProgramNamedParameter4dNV 772 -#define _gloffset_ProgramNamedParameter4dvNV 773 -#define _gloffset_ProgramNamedParameter4fNV 774 -#define _gloffset_ProgramNamedParameter4fvNV 775 -#define _gloffset_DepthBoundsEXT 776 -#define _gloffset_BlendEquationSeparateEXT 777 -#define _gloffset_BindFramebufferEXT 778 -#define _gloffset_BindRenderbufferEXT 779 -#define _gloffset_CheckFramebufferStatusEXT 780 -#define _gloffset_DeleteFramebuffersEXT 781 -#define _gloffset_DeleteRenderbuffersEXT 782 -#define _gloffset_FramebufferRenderbufferEXT 783 -#define _gloffset_FramebufferTexture1DEXT 784 -#define _gloffset_FramebufferTexture2DEXT 785 -#define _gloffset_FramebufferTexture3DEXT 786 -#define _gloffset_GenFramebuffersEXT 787 -#define _gloffset_GenRenderbuffersEXT 788 -#define _gloffset_GenerateMipmapEXT 789 -#define _gloffset_GetFramebufferAttachmentParameterivEXT 790 -#define _gloffset_GetRenderbufferParameterivEXT 791 -#define _gloffset_IsFramebufferEXT 792 -#define _gloffset_IsRenderbufferEXT 793 -#define _gloffset_RenderbufferStorageEXT 794 -#define _gloffset_BlitFramebufferEXT 795 -#define _gloffset_BufferParameteriAPPLE 796 -#define _gloffset_FlushMappedBufferRangeAPPLE 797 -#define _gloffset_FramebufferTextureLayerEXT 798 -#define _gloffset_ColorMaskIndexedEXT 799 -#define _gloffset_DisableIndexedEXT 800 -#define _gloffset_EnableIndexedEXT 801 -#define _gloffset_GetBooleanIndexedvEXT 802 -#define _gloffset_GetIntegerIndexedvEXT 803 -#define _gloffset_IsEnabledIndexedEXT 804 -#define _gloffset_BeginConditionalRenderNV 805 -#define _gloffset_EndConditionalRenderNV 806 -#define _gloffset_BeginTransformFeedbackEXT 807 -#define _gloffset_BindBufferBaseEXT 808 -#define _gloffset_BindBufferOffsetEXT 809 -#define _gloffset_BindBufferRangeEXT 810 -#define _gloffset_EndTransformFeedbackEXT 811 -#define _gloffset_GetTransformFeedbackVaryingEXT 812 -#define _gloffset_TransformFeedbackVaryingsEXT 813 -#define _gloffset_ProvokingVertexEXT 814 -#define _gloffset_GetTexParameterPointervAPPLE 815 -#define _gloffset_TextureRangeAPPLE 816 -#define _gloffset_GetObjectParameterivAPPLE 817 -#define _gloffset_ObjectPurgeableAPPLE 818 -#define _gloffset_ObjectUnpurgeableAPPLE 819 -#define _gloffset_StencilFuncSeparateATI 820 -#define _gloffset_ProgramEnvParameters4fvEXT 821 -#define _gloffset_ProgramLocalParameters4fvEXT 822 -#define _gloffset_GetQueryObjecti64vEXT 823 -#define _gloffset_GetQueryObjectui64vEXT 824 -#define _gloffset_EGLImageTargetRenderbufferStorageOES 825 -#define _gloffset_EGLImageTargetTexture2DOES 826 -#define _gloffset_FIRST_DYNAMIC 827 +#define _gloffset_ClampColorARB 563 +#define _gloffset_RenderbufferStorageMultisample 564 +#define _gloffset_FramebufferTextureARB 565 +#define _gloffset_FramebufferTextureFaceARB 566 +#define _gloffset_ProgramParameteriARB 567 +#define _gloffset_FlushMappedBufferRange 568 +#define _gloffset_MapBufferRange 569 +#define _gloffset_BindVertexArray 570 +#define _gloffset_GenVertexArrays 571 +#define _gloffset_CopyBufferSubData 572 +#define _gloffset_ClientWaitSync 573 +#define _gloffset_DeleteSync 574 +#define _gloffset_FenceSync 575 +#define _gloffset_GetInteger64v 576 +#define _gloffset_GetSynciv 577 +#define _gloffset_IsSync 578 +#define _gloffset_WaitSync 579 +#define _gloffset_DrawElementsBaseVertex 580 +#define _gloffset_DrawRangeElementsBaseVertex 581 +#define _gloffset_MultiDrawElementsBaseVertex 582 +#define _gloffset_BindTransformFeedback 583 +#define _gloffset_DeleteTransformFeedbacks 584 +#define _gloffset_DrawTransformFeedback 585 +#define _gloffset_GenTransformFeedbacks 586 +#define _gloffset_IsTransformFeedback 587 +#define _gloffset_PauseTransformFeedback 588 +#define _gloffset_ResumeTransformFeedback 589 +#define _gloffset_PolygonOffsetEXT 590 +#define _gloffset_GetPixelTexGenParameterfvSGIS 591 +#define _gloffset_GetPixelTexGenParameterivSGIS 592 +#define _gloffset_PixelTexGenParameterfSGIS 593 +#define _gloffset_PixelTexGenParameterfvSGIS 594 +#define _gloffset_PixelTexGenParameteriSGIS 595 +#define _gloffset_PixelTexGenParameterivSGIS 596 +#define _gloffset_SampleMaskSGIS 597 +#define _gloffset_SamplePatternSGIS 598 +#define _gloffset_ColorPointerEXT 599 +#define _gloffset_EdgeFlagPointerEXT 600 +#define _gloffset_IndexPointerEXT 601 +#define _gloffset_NormalPointerEXT 602 +#define _gloffset_TexCoordPointerEXT 603 +#define _gloffset_VertexPointerEXT 604 +#define _gloffset_PointParameterfEXT 605 +#define _gloffset_PointParameterfvEXT 606 +#define _gloffset_LockArraysEXT 607 +#define _gloffset_UnlockArraysEXT 608 +#define _gloffset_CullParameterdvEXT 609 +#define _gloffset_CullParameterfvEXT 610 +#define _gloffset_SecondaryColor3bEXT 611 +#define _gloffset_SecondaryColor3bvEXT 612 +#define _gloffset_SecondaryColor3dEXT 613 +#define _gloffset_SecondaryColor3dvEXT 614 +#define _gloffset_SecondaryColor3fEXT 615 +#define _gloffset_SecondaryColor3fvEXT 616 +#define _gloffset_SecondaryColor3iEXT 617 +#define _gloffset_SecondaryColor3ivEXT 618 +#define _gloffset_SecondaryColor3sEXT 619 +#define _gloffset_SecondaryColor3svEXT 620 +#define _gloffset_SecondaryColor3ubEXT 621 +#define _gloffset_SecondaryColor3ubvEXT 622 +#define _gloffset_SecondaryColor3uiEXT 623 +#define _gloffset_SecondaryColor3uivEXT 624 +#define _gloffset_SecondaryColor3usEXT 625 +#define _gloffset_SecondaryColor3usvEXT 626 +#define _gloffset_SecondaryColorPointerEXT 627 +#define _gloffset_MultiDrawArraysEXT 628 +#define _gloffset_MultiDrawElementsEXT 629 +#define _gloffset_FogCoordPointerEXT 630 +#define _gloffset_FogCoorddEXT 631 +#define _gloffset_FogCoorddvEXT 632 +#define _gloffset_FogCoordfEXT 633 +#define _gloffset_FogCoordfvEXT 634 +#define _gloffset_PixelTexGenSGIX 635 +#define _gloffset_BlendFuncSeparateEXT 636 +#define _gloffset_FlushVertexArrayRangeNV 637 +#define _gloffset_VertexArrayRangeNV 638 +#define _gloffset_CombinerInputNV 639 +#define _gloffset_CombinerOutputNV 640 +#define _gloffset_CombinerParameterfNV 641 +#define _gloffset_CombinerParameterfvNV 642 +#define _gloffset_CombinerParameteriNV 643 +#define _gloffset_CombinerParameterivNV 644 +#define _gloffset_FinalCombinerInputNV 645 +#define _gloffset_GetCombinerInputParameterfvNV 646 +#define _gloffset_GetCombinerInputParameterivNV 647 +#define _gloffset_GetCombinerOutputParameterfvNV 648 +#define _gloffset_GetCombinerOutputParameterivNV 649 +#define _gloffset_GetFinalCombinerInputParameterfvNV 650 +#define _gloffset_GetFinalCombinerInputParameterivNV 651 +#define _gloffset_ResizeBuffersMESA 652 +#define _gloffset_WindowPos2dMESA 653 +#define _gloffset_WindowPos2dvMESA 654 +#define _gloffset_WindowPos2fMESA 655 +#define _gloffset_WindowPos2fvMESA 656 +#define _gloffset_WindowPos2iMESA 657 +#define _gloffset_WindowPos2ivMESA 658 +#define _gloffset_WindowPos2sMESA 659 +#define _gloffset_WindowPos2svMESA 660 +#define _gloffset_WindowPos3dMESA 661 +#define _gloffset_WindowPos3dvMESA 662 +#define _gloffset_WindowPos3fMESA 663 +#define _gloffset_WindowPos3fvMESA 664 +#define _gloffset_WindowPos3iMESA 665 +#define _gloffset_WindowPos3ivMESA 666 +#define _gloffset_WindowPos3sMESA 667 +#define _gloffset_WindowPos3svMESA 668 +#define _gloffset_WindowPos4dMESA 669 +#define _gloffset_WindowPos4dvMESA 670 +#define _gloffset_WindowPos4fMESA 671 +#define _gloffset_WindowPos4fvMESA 672 +#define _gloffset_WindowPos4iMESA 673 +#define _gloffset_WindowPos4ivMESA 674 +#define _gloffset_WindowPos4sMESA 675 +#define _gloffset_WindowPos4svMESA 676 +#define _gloffset_MultiModeDrawArraysIBM 677 +#define _gloffset_MultiModeDrawElementsIBM 678 +#define _gloffset_DeleteFencesNV 679 +#define _gloffset_FinishFenceNV 680 +#define _gloffset_GenFencesNV 681 +#define _gloffset_GetFenceivNV 682 +#define _gloffset_IsFenceNV 683 +#define _gloffset_SetFenceNV 684 +#define _gloffset_TestFenceNV 685 +#define _gloffset_AreProgramsResidentNV 686 +#define _gloffset_BindProgramNV 687 +#define _gloffset_DeleteProgramsNV 688 +#define _gloffset_ExecuteProgramNV 689 +#define _gloffset_GenProgramsNV 690 +#define _gloffset_GetProgramParameterdvNV 691 +#define _gloffset_GetProgramParameterfvNV 692 +#define _gloffset_GetProgramStringNV 693 +#define _gloffset_GetProgramivNV 694 +#define _gloffset_GetTrackMatrixivNV 695 +#define _gloffset_GetVertexAttribPointervNV 696 +#define _gloffset_GetVertexAttribdvNV 697 +#define _gloffset_GetVertexAttribfvNV 698 +#define _gloffset_GetVertexAttribivNV 699 +#define _gloffset_IsProgramNV 700 +#define _gloffset_LoadProgramNV 701 +#define _gloffset_ProgramParameters4dvNV 702 +#define _gloffset_ProgramParameters4fvNV 703 +#define _gloffset_RequestResidentProgramsNV 704 +#define _gloffset_TrackMatrixNV 705 +#define _gloffset_VertexAttrib1dNV 706 +#define _gloffset_VertexAttrib1dvNV 707 +#define _gloffset_VertexAttrib1fNV 708 +#define _gloffset_VertexAttrib1fvNV 709 +#define _gloffset_VertexAttrib1sNV 710 +#define _gloffset_VertexAttrib1svNV 711 +#define _gloffset_VertexAttrib2dNV 712 +#define _gloffset_VertexAttrib2dvNV 713 +#define _gloffset_VertexAttrib2fNV 714 +#define _gloffset_VertexAttrib2fvNV 715 +#define _gloffset_VertexAttrib2sNV 716 +#define _gloffset_VertexAttrib2svNV 717 +#define _gloffset_VertexAttrib3dNV 718 +#define _gloffset_VertexAttrib3dvNV 719 +#define _gloffset_VertexAttrib3fNV 720 +#define _gloffset_VertexAttrib3fvNV 721 +#define _gloffset_VertexAttrib3sNV 722 +#define _gloffset_VertexAttrib3svNV 723 +#define _gloffset_VertexAttrib4dNV 724 +#define _gloffset_VertexAttrib4dvNV 725 +#define _gloffset_VertexAttrib4fNV 726 +#define _gloffset_VertexAttrib4fvNV 727 +#define _gloffset_VertexAttrib4sNV 728 +#define _gloffset_VertexAttrib4svNV 729 +#define _gloffset_VertexAttrib4ubNV 730 +#define _gloffset_VertexAttrib4ubvNV 731 +#define _gloffset_VertexAttribPointerNV 732 +#define _gloffset_VertexAttribs1dvNV 733 +#define _gloffset_VertexAttribs1fvNV 734 +#define _gloffset_VertexAttribs1svNV 735 +#define _gloffset_VertexAttribs2dvNV 736 +#define _gloffset_VertexAttribs2fvNV 737 +#define _gloffset_VertexAttribs2svNV 738 +#define _gloffset_VertexAttribs3dvNV 739 +#define _gloffset_VertexAttribs3fvNV 740 +#define _gloffset_VertexAttribs3svNV 741 +#define _gloffset_VertexAttribs4dvNV 742 +#define _gloffset_VertexAttribs4fvNV 743 +#define _gloffset_VertexAttribs4svNV 744 +#define _gloffset_VertexAttribs4ubvNV 745 +#define _gloffset_GetTexBumpParameterfvATI 746 +#define _gloffset_GetTexBumpParameterivATI 747 +#define _gloffset_TexBumpParameterfvATI 748 +#define _gloffset_TexBumpParameterivATI 749 +#define _gloffset_AlphaFragmentOp1ATI 750 +#define _gloffset_AlphaFragmentOp2ATI 751 +#define _gloffset_AlphaFragmentOp3ATI 752 +#define _gloffset_BeginFragmentShaderATI 753 +#define _gloffset_BindFragmentShaderATI 754 +#define _gloffset_ColorFragmentOp1ATI 755 +#define _gloffset_ColorFragmentOp2ATI 756 +#define _gloffset_ColorFragmentOp3ATI 757 +#define _gloffset_DeleteFragmentShaderATI 758 +#define _gloffset_EndFragmentShaderATI 759 +#define _gloffset_GenFragmentShadersATI 760 +#define _gloffset_PassTexCoordATI 761 +#define _gloffset_SampleMapATI 762 +#define _gloffset_SetFragmentShaderConstantATI 763 +#define _gloffset_PointParameteriNV 764 +#define _gloffset_PointParameterivNV 765 +#define _gloffset_ActiveStencilFaceEXT 766 +#define _gloffset_BindVertexArrayAPPLE 767 +#define _gloffset_DeleteVertexArraysAPPLE 768 +#define _gloffset_GenVertexArraysAPPLE 769 +#define _gloffset_IsVertexArrayAPPLE 770 +#define _gloffset_GetProgramNamedParameterdvNV 771 +#define _gloffset_GetProgramNamedParameterfvNV 772 +#define _gloffset_ProgramNamedParameter4dNV 773 +#define _gloffset_ProgramNamedParameter4dvNV 774 +#define _gloffset_ProgramNamedParameter4fNV 775 +#define _gloffset_ProgramNamedParameter4fvNV 776 +#define _gloffset_DepthBoundsEXT 777 +#define _gloffset_BlendEquationSeparateEXT 778 +#define _gloffset_BindFramebufferEXT 779 +#define _gloffset_BindRenderbufferEXT 780 +#define _gloffset_CheckFramebufferStatusEXT 781 +#define _gloffset_DeleteFramebuffersEXT 782 +#define _gloffset_DeleteRenderbuffersEXT 783 +#define _gloffset_FramebufferRenderbufferEXT 784 +#define _gloffset_FramebufferTexture1DEXT 785 +#define _gloffset_FramebufferTexture2DEXT 786 +#define _gloffset_FramebufferTexture3DEXT 787 +#define _gloffset_GenFramebuffersEXT 788 +#define _gloffset_GenRenderbuffersEXT 789 +#define _gloffset_GenerateMipmapEXT 790 +#define _gloffset_GetFramebufferAttachmentParameterivEXT 791 +#define _gloffset_GetRenderbufferParameterivEXT 792 +#define _gloffset_IsFramebufferEXT 793 +#define _gloffset_IsRenderbufferEXT 794 +#define _gloffset_RenderbufferStorageEXT 795 +#define _gloffset_BlitFramebufferEXT 796 +#define _gloffset_BufferParameteriAPPLE 797 +#define _gloffset_FlushMappedBufferRangeAPPLE 798 +#define _gloffset_FramebufferTextureLayerEXT 799 +#define _gloffset_ColorMaskIndexedEXT 800 +#define _gloffset_DisableIndexedEXT 801 +#define _gloffset_EnableIndexedEXT 802 +#define _gloffset_GetBooleanIndexedvEXT 803 +#define _gloffset_GetIntegerIndexedvEXT 804 +#define _gloffset_IsEnabledIndexedEXT 805 +#define _gloffset_BeginConditionalRenderNV 806 +#define _gloffset_EndConditionalRenderNV 807 +#define _gloffset_BeginTransformFeedbackEXT 808 +#define _gloffset_BindBufferBaseEXT 809 +#define _gloffset_BindBufferOffsetEXT 810 +#define _gloffset_BindBufferRangeEXT 811 +#define _gloffset_EndTransformFeedbackEXT 812 +#define _gloffset_GetTransformFeedbackVaryingEXT 813 +#define _gloffset_TransformFeedbackVaryingsEXT 814 +#define _gloffset_ProvokingVertexEXT 815 +#define _gloffset_GetTexParameterPointervAPPLE 816 +#define _gloffset_TextureRangeAPPLE 817 +#define _gloffset_GetObjectParameterivAPPLE 818 +#define _gloffset_ObjectPurgeableAPPLE 819 +#define _gloffset_ObjectUnpurgeableAPPLE 820 +#define _gloffset_StencilFuncSeparateATI 821 +#define _gloffset_ProgramEnvParameters4fvEXT 822 +#define _gloffset_ProgramLocalParameters4fvEXT 823 +#define _gloffset_GetQueryObjecti64vEXT 824 +#define _gloffset_GetQueryObjectui64vEXT 825 +#define _gloffset_EGLImageTargetRenderbufferStorageOES 826 +#define _gloffset_EGLImageTargetTexture2DOES 827 +#define _gloffset_FIRST_DYNAMIC 828 #else @@ -1020,6 +1021,7 @@ #define _gloffset_GetActiveAttribARB driDispatchRemapTable[GetActiveAttribARB_remap_index] #define _gloffset_GetAttribLocationARB driDispatchRemapTable[GetAttribLocationARB_remap_index] #define _gloffset_DrawBuffersARB driDispatchRemapTable[DrawBuffersARB_remap_index] +#define _gloffset_ClampColorARB driDispatchRemapTable[ClampColorARB_remap_index] #define _gloffset_RenderbufferStorageMultisample driDispatchRemapTable[RenderbufferStorageMultisample_remap_index] #define _gloffset_FramebufferTextureARB driDispatchRemapTable[FramebufferTextureARB_remap_index] #define _gloffset_FramebufferTextureFaceARB driDispatchRemapTable[FramebufferTextureFaceARB_remap_index] diff --git a/src/mapi/glapi/glapitable.h b/src/mapi/glapi/glapitable.h index 7da958981a..8a504d8c3e 100644 --- a/src/mapi/glapi/glapitable.h +++ b/src/mapi/glapi/glapitable.h @@ -603,270 +603,271 @@ struct _glapi_table void (GLAPIENTRYP GetActiveAttribARB)(GLhandleARB program, GLuint index, GLsizei bufSize, GLsizei * length, GLint * size, GLenum * type, GLcharARB * name); /* 560 */ GLint (GLAPIENTRYP GetAttribLocationARB)(GLhandleARB program, const GLcharARB * name); /* 561 */ void (GLAPIENTRYP DrawBuffersARB)(GLsizei n, const GLenum * bufs); /* 562 */ - void (GLAPIENTRYP RenderbufferStorageMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); /* 563 */ - void (GLAPIENTRYP FramebufferTextureARB)(GLenum target, GLenum attachment, GLuint texture, GLint level); /* 564 */ - void (GLAPIENTRYP FramebufferTextureFaceARB)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); /* 565 */ - void (GLAPIENTRYP ProgramParameteriARB)(GLuint program, GLenum pname, GLint value); /* 566 */ - void (GLAPIENTRYP FlushMappedBufferRange)(GLenum target, GLintptr offset, GLsizeiptr length); /* 567 */ - GLvoid * (GLAPIENTRYP MapBufferRange)(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); /* 568 */ - void (GLAPIENTRYP BindVertexArray)(GLuint array); /* 569 */ - void (GLAPIENTRYP GenVertexArrays)(GLsizei n, GLuint * arrays); /* 570 */ - void (GLAPIENTRYP CopyBufferSubData)(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); /* 571 */ - GLenum (GLAPIENTRYP ClientWaitSync)(GLsync sync, GLbitfield flags, GLuint64 timeout); /* 572 */ - void (GLAPIENTRYP DeleteSync)(GLsync sync); /* 573 */ - GLsync (GLAPIENTRYP FenceSync)(GLenum condition, GLbitfield flags); /* 574 */ - void (GLAPIENTRYP GetInteger64v)(GLenum pname, GLint64 * params); /* 575 */ - void (GLAPIENTRYP GetSynciv)(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei * length, GLint * values); /* 576 */ - GLboolean (GLAPIENTRYP IsSync)(GLsync sync); /* 577 */ - void (GLAPIENTRYP WaitSync)(GLsync sync, GLbitfield flags, GLuint64 timeout); /* 578 */ - void (GLAPIENTRYP DrawElementsBaseVertex)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex); /* 579 */ - void (GLAPIENTRYP DrawRangeElementsBaseVertex)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex); /* 580 */ - void (GLAPIENTRYP MultiDrawElementsBaseVertex)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount, const GLint * basevertex); /* 581 */ - void (GLAPIENTRYP BindTransformFeedback)(GLenum target, GLuint id); /* 582 */ - void (GLAPIENTRYP DeleteTransformFeedbacks)(GLsizei n, const GLuint * ids); /* 583 */ - void (GLAPIENTRYP DrawTransformFeedback)(GLenum mode, GLuint id); /* 584 */ - void (GLAPIENTRYP GenTransformFeedbacks)(GLsizei n, GLuint * ids); /* 585 */ - GLboolean (GLAPIENTRYP IsTransformFeedback)(GLuint id); /* 586 */ - void (GLAPIENTRYP PauseTransformFeedback)(void); /* 587 */ - void (GLAPIENTRYP ResumeTransformFeedback)(void); /* 588 */ - void (GLAPIENTRYP PolygonOffsetEXT)(GLfloat factor, GLfloat bias); /* 589 */ - void (GLAPIENTRYP GetPixelTexGenParameterfvSGIS)(GLenum pname, GLfloat * params); /* 590 */ - void (GLAPIENTRYP GetPixelTexGenParameterivSGIS)(GLenum pname, GLint * params); /* 591 */ - void (GLAPIENTRYP PixelTexGenParameterfSGIS)(GLenum pname, GLfloat param); /* 592 */ - void (GLAPIENTRYP PixelTexGenParameterfvSGIS)(GLenum pname, const GLfloat * params); /* 593 */ - void (GLAPIENTRYP PixelTexGenParameteriSGIS)(GLenum pname, GLint param); /* 594 */ - void (GLAPIENTRYP PixelTexGenParameterivSGIS)(GLenum pname, const GLint * params); /* 595 */ - void (GLAPIENTRYP SampleMaskSGIS)(GLclampf value, GLboolean invert); /* 596 */ - void (GLAPIENTRYP SamplePatternSGIS)(GLenum pattern); /* 597 */ - void (GLAPIENTRYP ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 598 */ - void (GLAPIENTRYP EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean * pointer); /* 599 */ - void (GLAPIENTRYP IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 600 */ - void (GLAPIENTRYP NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 601 */ - void (GLAPIENTRYP TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 602 */ - void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 603 */ - void (GLAPIENTRYP PointParameterfEXT)(GLenum pname, GLfloat param); /* 604 */ - void (GLAPIENTRYP PointParameterfvEXT)(GLenum pname, const GLfloat * params); /* 605 */ - void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 606 */ - void (GLAPIENTRYP UnlockArraysEXT)(void); /* 607 */ - void (GLAPIENTRYP CullParameterdvEXT)(GLenum pname, GLdouble * params); /* 608 */ - void (GLAPIENTRYP CullParameterfvEXT)(GLenum pname, GLfloat * params); /* 609 */ - void (GLAPIENTRYP SecondaryColor3bEXT)(GLbyte red, GLbyte green, GLbyte blue); /* 610 */ - void (GLAPIENTRYP SecondaryColor3bvEXT)(const GLbyte * v); /* 611 */ - void (GLAPIENTRYP SecondaryColor3dEXT)(GLdouble red, GLdouble green, GLdouble blue); /* 612 */ - void (GLAPIENTRYP SecondaryColor3dvEXT)(const GLdouble * v); /* 613 */ - void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 614 */ - void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 615 */ - void (GLAPIENTRYP SecondaryColor3iEXT)(GLint red, GLint green, GLint blue); /* 616 */ - void (GLAPIENTRYP SecondaryColor3ivEXT)(const GLint * v); /* 617 */ - void (GLAPIENTRYP SecondaryColor3sEXT)(GLshort red, GLshort green, GLshort blue); /* 618 */ - void (GLAPIENTRYP SecondaryColor3svEXT)(const GLshort * v); /* 619 */ - void (GLAPIENTRYP SecondaryColor3ubEXT)(GLubyte red, GLubyte green, GLubyte blue); /* 620 */ - void (GLAPIENTRYP SecondaryColor3ubvEXT)(const GLubyte * v); /* 621 */ - void (GLAPIENTRYP SecondaryColor3uiEXT)(GLuint red, GLuint green, GLuint blue); /* 622 */ - void (GLAPIENTRYP SecondaryColor3uivEXT)(const GLuint * v); /* 623 */ - void (GLAPIENTRYP SecondaryColor3usEXT)(GLushort red, GLushort green, GLushort blue); /* 624 */ - void (GLAPIENTRYP SecondaryColor3usvEXT)(const GLushort * v); /* 625 */ - void (GLAPIENTRYP SecondaryColorPointerEXT)(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 626 */ - void (GLAPIENTRYP MultiDrawArraysEXT)(GLenum mode, GLint * first, GLsizei * count, GLsizei primcount); /* 627 */ - void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount); /* 628 */ - void (GLAPIENTRYP FogCoordPointerEXT)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 629 */ - void (GLAPIENTRYP FogCoorddEXT)(GLdouble coord); /* 630 */ - void (GLAPIENTRYP FogCoorddvEXT)(const GLdouble * coord); /* 631 */ - void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 632 */ - void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 633 */ - void (GLAPIENTRYP PixelTexGenSGIX)(GLenum mode); /* 634 */ - void (GLAPIENTRYP BlendFuncSeparateEXT)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); /* 635 */ - void (GLAPIENTRYP FlushVertexArrayRangeNV)(void); /* 636 */ - void (GLAPIENTRYP VertexArrayRangeNV)(GLsizei length, const GLvoid * pointer); /* 637 */ - void (GLAPIENTRYP CombinerInputNV)(GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 638 */ - void (GLAPIENTRYP CombinerOutputNV)(GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); /* 639 */ - void (GLAPIENTRYP CombinerParameterfNV)(GLenum pname, GLfloat param); /* 640 */ - void (GLAPIENTRYP CombinerParameterfvNV)(GLenum pname, const GLfloat * params); /* 641 */ - void (GLAPIENTRYP CombinerParameteriNV)(GLenum pname, GLint param); /* 642 */ - void (GLAPIENTRYP CombinerParameterivNV)(GLenum pname, const GLint * params); /* 643 */ - void (GLAPIENTRYP FinalCombinerInputNV)(GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 644 */ - void (GLAPIENTRYP GetCombinerInputParameterfvNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat * params); /* 645 */ - void (GLAPIENTRYP GetCombinerInputParameterivNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint * params); /* 646 */ - void (GLAPIENTRYP GetCombinerOutputParameterfvNV)(GLenum stage, GLenum portion, GLenum pname, GLfloat * params); /* 647 */ - void (GLAPIENTRYP GetCombinerOutputParameterivNV)(GLenum stage, GLenum portion, GLenum pname, GLint * params); /* 648 */ - void (GLAPIENTRYP GetFinalCombinerInputParameterfvNV)(GLenum variable, GLenum pname, GLfloat * params); /* 649 */ - void (GLAPIENTRYP GetFinalCombinerInputParameterivNV)(GLenum variable, GLenum pname, GLint * params); /* 650 */ - void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 651 */ - void (GLAPIENTRYP WindowPos2dMESA)(GLdouble x, GLdouble y); /* 652 */ - void (GLAPIENTRYP WindowPos2dvMESA)(const GLdouble * v); /* 653 */ - void (GLAPIENTRYP WindowPos2fMESA)(GLfloat x, GLfloat y); /* 654 */ - void (GLAPIENTRYP WindowPos2fvMESA)(const GLfloat * v); /* 655 */ - void (GLAPIENTRYP WindowPos2iMESA)(GLint x, GLint y); /* 656 */ - void (GLAPIENTRYP WindowPos2ivMESA)(const GLint * v); /* 657 */ - void (GLAPIENTRYP WindowPos2sMESA)(GLshort x, GLshort y); /* 658 */ - void (GLAPIENTRYP WindowPos2svMESA)(const GLshort * v); /* 659 */ - void (GLAPIENTRYP WindowPos3dMESA)(GLdouble x, GLdouble y, GLdouble z); /* 660 */ - void (GLAPIENTRYP WindowPos3dvMESA)(const GLdouble * v); /* 661 */ - void (GLAPIENTRYP WindowPos3fMESA)(GLfloat x, GLfloat y, GLfloat z); /* 662 */ - void (GLAPIENTRYP WindowPos3fvMESA)(const GLfloat * v); /* 663 */ - void (GLAPIENTRYP WindowPos3iMESA)(GLint x, GLint y, GLint z); /* 664 */ - void (GLAPIENTRYP WindowPos3ivMESA)(const GLint * v); /* 665 */ - void (GLAPIENTRYP WindowPos3sMESA)(GLshort x, GLshort y, GLshort z); /* 666 */ - void (GLAPIENTRYP WindowPos3svMESA)(const GLshort * v); /* 667 */ - void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 668 */ - void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 669 */ - void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 670 */ - void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 671 */ - void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 672 */ - void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 673 */ - void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 674 */ - void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 675 */ - void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 676 */ - void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 677 */ - void (GLAPIENTRYP DeleteFencesNV)(GLsizei n, const GLuint * fences); /* 678 */ - void (GLAPIENTRYP FinishFenceNV)(GLuint fence); /* 679 */ - void (GLAPIENTRYP GenFencesNV)(GLsizei n, GLuint * fences); /* 680 */ - void (GLAPIENTRYP GetFenceivNV)(GLuint fence, GLenum pname, GLint * params); /* 681 */ - GLboolean (GLAPIENTRYP IsFenceNV)(GLuint fence); /* 682 */ - void (GLAPIENTRYP SetFenceNV)(GLuint fence, GLenum condition); /* 683 */ - GLboolean (GLAPIENTRYP TestFenceNV)(GLuint fence); /* 684 */ - GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 685 */ - void (GLAPIENTRYP BindProgramNV)(GLenum target, GLuint program); /* 686 */ - void (GLAPIENTRYP DeleteProgramsNV)(GLsizei n, const GLuint * programs); /* 687 */ - void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 688 */ - void (GLAPIENTRYP GenProgramsNV)(GLsizei n, GLuint * programs); /* 689 */ - void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 690 */ - void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 691 */ - void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 692 */ - void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 693 */ - void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 694 */ - void (GLAPIENTRYP GetVertexAttribPointervNV)(GLuint index, GLenum pname, GLvoid ** pointer); /* 695 */ - void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 696 */ - void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 697 */ - void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 698 */ - GLboolean (GLAPIENTRYP IsProgramNV)(GLuint program); /* 699 */ - void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 700 */ - void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLuint num, const GLdouble * params); /* 701 */ - void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLuint num, const GLfloat * params); /* 702 */ - void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 703 */ - void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 704 */ - void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 705 */ - void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 706 */ - void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 707 */ - void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 708 */ - void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 709 */ - void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 710 */ - void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 711 */ - void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 712 */ - void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 713 */ - void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 714 */ - void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 715 */ - void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 716 */ - void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 717 */ - void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 718 */ - void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 719 */ - void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 720 */ - void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 721 */ - void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 722 */ - void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 723 */ - void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 724 */ - void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 725 */ - void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 726 */ - void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 727 */ - void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 728 */ - void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 729 */ - void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 730 */ - void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 731 */ - void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 732 */ - void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 733 */ - void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 734 */ - void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 735 */ - void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 736 */ - void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 737 */ - void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 738 */ - void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 739 */ - void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 740 */ - void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 741 */ - void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 742 */ - void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 743 */ - void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 744 */ - void (GLAPIENTRYP GetTexBumpParameterfvATI)(GLenum pname, GLfloat * param); /* 745 */ - void (GLAPIENTRYP GetTexBumpParameterivATI)(GLenum pname, GLint * param); /* 746 */ - void (GLAPIENTRYP TexBumpParameterfvATI)(GLenum pname, const GLfloat * param); /* 747 */ - void (GLAPIENTRYP TexBumpParameterivATI)(GLenum pname, const GLint * param); /* 748 */ - void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 749 */ - void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 750 */ - 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); /* 751 */ - void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 752 */ - void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 753 */ - void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 754 */ - void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 755 */ - 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); /* 756 */ - void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 757 */ - void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 758 */ - GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 759 */ - void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 760 */ - void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 761 */ - void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 762 */ - void (GLAPIENTRYP PointParameteriNV)(GLenum pname, GLint param); /* 763 */ - void (GLAPIENTRYP PointParameterivNV)(GLenum pname, const GLint * params); /* 764 */ - void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 765 */ - void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 766 */ - void (GLAPIENTRYP DeleteVertexArraysAPPLE)(GLsizei n, const GLuint * arrays); /* 767 */ - void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 768 */ - GLboolean (GLAPIENTRYP IsVertexArrayAPPLE)(GLuint array); /* 769 */ - void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 770 */ - void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 771 */ - void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 772 */ - void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 773 */ - void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 774 */ - void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 775 */ - void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 776 */ - void (GLAPIENTRYP BlendEquationSeparateEXT)(GLenum modeRGB, GLenum modeA); /* 777 */ - void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 778 */ - void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 779 */ - GLenum (GLAPIENTRYP CheckFramebufferStatusEXT)(GLenum target); /* 780 */ - void (GLAPIENTRYP DeleteFramebuffersEXT)(GLsizei n, const GLuint * framebuffers); /* 781 */ - void (GLAPIENTRYP DeleteRenderbuffersEXT)(GLsizei n, const GLuint * renderbuffers); /* 782 */ - void (GLAPIENTRYP FramebufferRenderbufferEXT)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); /* 783 */ - void (GLAPIENTRYP FramebufferTexture1DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 784 */ - void (GLAPIENTRYP FramebufferTexture2DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 785 */ - void (GLAPIENTRYP FramebufferTexture3DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); /* 786 */ - void (GLAPIENTRYP GenFramebuffersEXT)(GLsizei n, GLuint * framebuffers); /* 787 */ - void (GLAPIENTRYP GenRenderbuffersEXT)(GLsizei n, GLuint * renderbuffers); /* 788 */ - void (GLAPIENTRYP GenerateMipmapEXT)(GLenum target); /* 789 */ - void (GLAPIENTRYP GetFramebufferAttachmentParameterivEXT)(GLenum target, GLenum attachment, GLenum pname, GLint * params); /* 790 */ - void (GLAPIENTRYP GetRenderbufferParameterivEXT)(GLenum target, GLenum pname, GLint * params); /* 791 */ - GLboolean (GLAPIENTRYP IsFramebufferEXT)(GLuint framebuffer); /* 792 */ - GLboolean (GLAPIENTRYP IsRenderbufferEXT)(GLuint renderbuffer); /* 793 */ - void (GLAPIENTRYP RenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); /* 794 */ - void (GLAPIENTRYP BlitFramebufferEXT)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); /* 795 */ - void (GLAPIENTRYP BufferParameteriAPPLE)(GLenum target, GLenum pname, GLint param); /* 796 */ - void (GLAPIENTRYP FlushMappedBufferRangeAPPLE)(GLenum target, GLintptr offset, GLsizeiptr size); /* 797 */ - void (GLAPIENTRYP FramebufferTextureLayerEXT)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); /* 798 */ - void (GLAPIENTRYP ColorMaskIndexedEXT)(GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a); /* 799 */ - void (GLAPIENTRYP DisableIndexedEXT)(GLenum target, GLuint index); /* 800 */ - void (GLAPIENTRYP EnableIndexedEXT)(GLenum target, GLuint index); /* 801 */ - void (GLAPIENTRYP GetBooleanIndexedvEXT)(GLenum value, GLuint index, GLboolean * data); /* 802 */ - void (GLAPIENTRYP GetIntegerIndexedvEXT)(GLenum value, GLuint index, GLint * data); /* 803 */ - GLboolean (GLAPIENTRYP IsEnabledIndexedEXT)(GLenum target, GLuint index); /* 804 */ - void (GLAPIENTRYP BeginConditionalRenderNV)(GLuint query, GLenum mode); /* 805 */ - void (GLAPIENTRYP EndConditionalRenderNV)(void); /* 806 */ - void (GLAPIENTRYP BeginTransformFeedbackEXT)(GLenum mode); /* 807 */ - void (GLAPIENTRYP BindBufferBaseEXT)(GLenum target, GLuint index, GLuint buffer); /* 808 */ - void (GLAPIENTRYP BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset); /* 809 */ - void (GLAPIENTRYP BindBufferRangeEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); /* 810 */ - void (GLAPIENTRYP EndTransformFeedbackEXT)(void); /* 811 */ - void (GLAPIENTRYP GetTransformFeedbackVaryingEXT)(GLuint program, GLuint index, GLsizei bufSize, GLsizei * length, GLsizei * size, GLenum * type, GLchar * name); /* 812 */ - void (GLAPIENTRYP TransformFeedbackVaryingsEXT)(GLuint program, GLsizei count, const char ** varyings, GLenum bufferMode); /* 813 */ - void (GLAPIENTRYP ProvokingVertexEXT)(GLenum mode); /* 814 */ - void (GLAPIENTRYP GetTexParameterPointervAPPLE)(GLenum target, GLenum pname, GLvoid ** params); /* 815 */ - void (GLAPIENTRYP TextureRangeAPPLE)(GLenum target, GLsizei length, GLvoid * pointer); /* 816 */ - void (GLAPIENTRYP GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint * value); /* 817 */ - GLenum (GLAPIENTRYP ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 818 */ - GLenum (GLAPIENTRYP ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 819 */ - void (GLAPIENTRYP StencilFuncSeparateATI)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); /* 820 */ - void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 821 */ - void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 822 */ - void (GLAPIENTRYP GetQueryObjecti64vEXT)(GLuint id, GLenum pname, GLint64EXT * params); /* 823 */ - void (GLAPIENTRYP GetQueryObjectui64vEXT)(GLuint id, GLenum pname, GLuint64EXT * params); /* 824 */ - void (GLAPIENTRYP EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid * writeOffset); /* 825 */ - void (GLAPIENTRYP EGLImageTargetTexture2DOES)(GLenum target, GLvoid * writeOffset); /* 826 */ + void (GLAPIENTRYP ClampColorARB)(GLenum target, GLenum clamp); /* 563 */ + void (GLAPIENTRYP RenderbufferStorageMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height); /* 564 */ + void (GLAPIENTRYP FramebufferTextureARB)(GLenum target, GLenum attachment, GLuint texture, GLint level); /* 565 */ + void (GLAPIENTRYP FramebufferTextureFaceARB)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLenum face); /* 566 */ + void (GLAPIENTRYP ProgramParameteriARB)(GLuint program, GLenum pname, GLint value); /* 567 */ + void (GLAPIENTRYP FlushMappedBufferRange)(GLenum target, GLintptr offset, GLsizeiptr length); /* 568 */ + GLvoid * (GLAPIENTRYP MapBufferRange)(GLenum target, GLintptr offset, GLsizeiptr length, GLbitfield access); /* 569 */ + void (GLAPIENTRYP BindVertexArray)(GLuint array); /* 570 */ + void (GLAPIENTRYP GenVertexArrays)(GLsizei n, GLuint * arrays); /* 571 */ + void (GLAPIENTRYP CopyBufferSubData)(GLenum readTarget, GLenum writeTarget, GLintptr readOffset, GLintptr writeOffset, GLsizeiptr size); /* 572 */ + GLenum (GLAPIENTRYP ClientWaitSync)(GLsync sync, GLbitfield flags, GLuint64 timeout); /* 573 */ + void (GLAPIENTRYP DeleteSync)(GLsync sync); /* 574 */ + GLsync (GLAPIENTRYP FenceSync)(GLenum condition, GLbitfield flags); /* 575 */ + void (GLAPIENTRYP GetInteger64v)(GLenum pname, GLint64 * params); /* 576 */ + void (GLAPIENTRYP GetSynciv)(GLsync sync, GLenum pname, GLsizei bufSize, GLsizei * length, GLint * values); /* 577 */ + GLboolean (GLAPIENTRYP IsSync)(GLsync sync); /* 578 */ + void (GLAPIENTRYP WaitSync)(GLsync sync, GLbitfield flags, GLuint64 timeout); /* 579 */ + void (GLAPIENTRYP DrawElementsBaseVertex)(GLenum mode, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex); /* 580 */ + void (GLAPIENTRYP DrawRangeElementsBaseVertex)(GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid * indices, GLint basevertex); /* 581 */ + void (GLAPIENTRYP MultiDrawElementsBaseVertex)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount, const GLint * basevertex); /* 582 */ + void (GLAPIENTRYP BindTransformFeedback)(GLenum target, GLuint id); /* 583 */ + void (GLAPIENTRYP DeleteTransformFeedbacks)(GLsizei n, const GLuint * ids); /* 584 */ + void (GLAPIENTRYP DrawTransformFeedback)(GLenum mode, GLuint id); /* 585 */ + void (GLAPIENTRYP GenTransformFeedbacks)(GLsizei n, GLuint * ids); /* 586 */ + GLboolean (GLAPIENTRYP IsTransformFeedback)(GLuint id); /* 587 */ + void (GLAPIENTRYP PauseTransformFeedback)(void); /* 588 */ + void (GLAPIENTRYP ResumeTransformFeedback)(void); /* 589 */ + void (GLAPIENTRYP PolygonOffsetEXT)(GLfloat factor, GLfloat bias); /* 590 */ + void (GLAPIENTRYP GetPixelTexGenParameterfvSGIS)(GLenum pname, GLfloat * params); /* 591 */ + void (GLAPIENTRYP GetPixelTexGenParameterivSGIS)(GLenum pname, GLint * params); /* 592 */ + void (GLAPIENTRYP PixelTexGenParameterfSGIS)(GLenum pname, GLfloat param); /* 593 */ + void (GLAPIENTRYP PixelTexGenParameterfvSGIS)(GLenum pname, const GLfloat * params); /* 594 */ + void (GLAPIENTRYP PixelTexGenParameteriSGIS)(GLenum pname, GLint param); /* 595 */ + void (GLAPIENTRYP PixelTexGenParameterivSGIS)(GLenum pname, const GLint * params); /* 596 */ + void (GLAPIENTRYP SampleMaskSGIS)(GLclampf value, GLboolean invert); /* 597 */ + void (GLAPIENTRYP SamplePatternSGIS)(GLenum pattern); /* 598 */ + void (GLAPIENTRYP ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 599 */ + void (GLAPIENTRYP EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean * pointer); /* 600 */ + void (GLAPIENTRYP IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 601 */ + void (GLAPIENTRYP NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 602 */ + void (GLAPIENTRYP TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 603 */ + void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 604 */ + void (GLAPIENTRYP PointParameterfEXT)(GLenum pname, GLfloat param); /* 605 */ + void (GLAPIENTRYP PointParameterfvEXT)(GLenum pname, const GLfloat * params); /* 606 */ + void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 607 */ + void (GLAPIENTRYP UnlockArraysEXT)(void); /* 608 */ + void (GLAPIENTRYP CullParameterdvEXT)(GLenum pname, GLdouble * params); /* 609 */ + void (GLAPIENTRYP CullParameterfvEXT)(GLenum pname, GLfloat * params); /* 610 */ + void (GLAPIENTRYP SecondaryColor3bEXT)(GLbyte red, GLbyte green, GLbyte blue); /* 611 */ + void (GLAPIENTRYP SecondaryColor3bvEXT)(const GLbyte * v); /* 612 */ + void (GLAPIENTRYP SecondaryColor3dEXT)(GLdouble red, GLdouble green, GLdouble blue); /* 613 */ + void (GLAPIENTRYP SecondaryColor3dvEXT)(const GLdouble * v); /* 614 */ + void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 615 */ + void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 616 */ + void (GLAPIENTRYP SecondaryColor3iEXT)(GLint red, GLint green, GLint blue); /* 617 */ + void (GLAPIENTRYP SecondaryColor3ivEXT)(const GLint * v); /* 618 */ + void (GLAPIENTRYP SecondaryColor3sEXT)(GLshort red, GLshort green, GLshort blue); /* 619 */ + void (GLAPIENTRYP SecondaryColor3svEXT)(const GLshort * v); /* 620 */ + void (GLAPIENTRYP SecondaryColor3ubEXT)(GLubyte red, GLubyte green, GLubyte blue); /* 621 */ + void (GLAPIENTRYP SecondaryColor3ubvEXT)(const GLubyte * v); /* 622 */ + void (GLAPIENTRYP SecondaryColor3uiEXT)(GLuint red, GLuint green, GLuint blue); /* 623 */ + void (GLAPIENTRYP SecondaryColor3uivEXT)(const GLuint * v); /* 624 */ + void (GLAPIENTRYP SecondaryColor3usEXT)(GLushort red, GLushort green, GLushort blue); /* 625 */ + void (GLAPIENTRYP SecondaryColor3usvEXT)(const GLushort * v); /* 626 */ + void (GLAPIENTRYP SecondaryColorPointerEXT)(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 627 */ + void (GLAPIENTRYP MultiDrawArraysEXT)(GLenum mode, GLint * first, GLsizei * count, GLsizei primcount); /* 628 */ + void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount); /* 629 */ + void (GLAPIENTRYP FogCoordPointerEXT)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 630 */ + void (GLAPIENTRYP FogCoorddEXT)(GLdouble coord); /* 631 */ + void (GLAPIENTRYP FogCoorddvEXT)(const GLdouble * coord); /* 632 */ + void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 633 */ + void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 634 */ + void (GLAPIENTRYP PixelTexGenSGIX)(GLenum mode); /* 635 */ + void (GLAPIENTRYP BlendFuncSeparateEXT)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); /* 636 */ + void (GLAPIENTRYP FlushVertexArrayRangeNV)(void); /* 637 */ + void (GLAPIENTRYP VertexArrayRangeNV)(GLsizei length, const GLvoid * pointer); /* 638 */ + void (GLAPIENTRYP CombinerInputNV)(GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 639 */ + void (GLAPIENTRYP CombinerOutputNV)(GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); /* 640 */ + void (GLAPIENTRYP CombinerParameterfNV)(GLenum pname, GLfloat param); /* 641 */ + void (GLAPIENTRYP CombinerParameterfvNV)(GLenum pname, const GLfloat * params); /* 642 */ + void (GLAPIENTRYP CombinerParameteriNV)(GLenum pname, GLint param); /* 643 */ + void (GLAPIENTRYP CombinerParameterivNV)(GLenum pname, const GLint * params); /* 644 */ + void (GLAPIENTRYP FinalCombinerInputNV)(GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 645 */ + void (GLAPIENTRYP GetCombinerInputParameterfvNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat * params); /* 646 */ + void (GLAPIENTRYP GetCombinerInputParameterivNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint * params); /* 647 */ + void (GLAPIENTRYP GetCombinerOutputParameterfvNV)(GLenum stage, GLenum portion, GLenum pname, GLfloat * params); /* 648 */ + void (GLAPIENTRYP GetCombinerOutputParameterivNV)(GLenum stage, GLenum portion, GLenum pname, GLint * params); /* 649 */ + void (GLAPIENTRYP GetFinalCombinerInputParameterfvNV)(GLenum variable, GLenum pname, GLfloat * params); /* 650 */ + void (GLAPIENTRYP GetFinalCombinerInputParameterivNV)(GLenum variable, GLenum pname, GLint * params); /* 651 */ + void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 652 */ + void (GLAPIENTRYP WindowPos2dMESA)(GLdouble x, GLdouble y); /* 653 */ + void (GLAPIENTRYP WindowPos2dvMESA)(const GLdouble * v); /* 654 */ + void (GLAPIENTRYP WindowPos2fMESA)(GLfloat x, GLfloat y); /* 655 */ + void (GLAPIENTRYP WindowPos2fvMESA)(const GLfloat * v); /* 656 */ + void (GLAPIENTRYP WindowPos2iMESA)(GLint x, GLint y); /* 657 */ + void (GLAPIENTRYP WindowPos2ivMESA)(const GLint * v); /* 658 */ + void (GLAPIENTRYP WindowPos2sMESA)(GLshort x, GLshort y); /* 659 */ + void (GLAPIENTRYP WindowPos2svMESA)(const GLshort * v); /* 660 */ + void (GLAPIENTRYP WindowPos3dMESA)(GLdouble x, GLdouble y, GLdouble z); /* 661 */ + void (GLAPIENTRYP WindowPos3dvMESA)(const GLdouble * v); /* 662 */ + void (GLAPIENTRYP WindowPos3fMESA)(GLfloat x, GLfloat y, GLfloat z); /* 663 */ + void (GLAPIENTRYP WindowPos3fvMESA)(const GLfloat * v); /* 664 */ + void (GLAPIENTRYP WindowPos3iMESA)(GLint x, GLint y, GLint z); /* 665 */ + void (GLAPIENTRYP WindowPos3ivMESA)(const GLint * v); /* 666 */ + void (GLAPIENTRYP WindowPos3sMESA)(GLshort x, GLshort y, GLshort z); /* 667 */ + void (GLAPIENTRYP WindowPos3svMESA)(const GLshort * v); /* 668 */ + void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 669 */ + void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 670 */ + void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 671 */ + void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 672 */ + void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 673 */ + void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 674 */ + void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 675 */ + void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 676 */ + void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 677 */ + void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 678 */ + void (GLAPIENTRYP DeleteFencesNV)(GLsizei n, const GLuint * fences); /* 679 */ + void (GLAPIENTRYP FinishFenceNV)(GLuint fence); /* 680 */ + void (GLAPIENTRYP GenFencesNV)(GLsizei n, GLuint * fences); /* 681 */ + void (GLAPIENTRYP GetFenceivNV)(GLuint fence, GLenum pname, GLint * params); /* 682 */ + GLboolean (GLAPIENTRYP IsFenceNV)(GLuint fence); /* 683 */ + void (GLAPIENTRYP SetFenceNV)(GLuint fence, GLenum condition); /* 684 */ + GLboolean (GLAPIENTRYP TestFenceNV)(GLuint fence); /* 685 */ + GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 686 */ + void (GLAPIENTRYP BindProgramNV)(GLenum target, GLuint program); /* 687 */ + void (GLAPIENTRYP DeleteProgramsNV)(GLsizei n, const GLuint * programs); /* 688 */ + void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 689 */ + void (GLAPIENTRYP GenProgramsNV)(GLsizei n, GLuint * programs); /* 690 */ + void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 691 */ + void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 692 */ + void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 693 */ + void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 694 */ + void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 695 */ + void (GLAPIENTRYP GetVertexAttribPointervNV)(GLuint index, GLenum pname, GLvoid ** pointer); /* 696 */ + void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 697 */ + void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 698 */ + void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 699 */ + GLboolean (GLAPIENTRYP IsProgramNV)(GLuint program); /* 700 */ + void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 701 */ + void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLuint num, const GLdouble * params); /* 702 */ + void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLuint num, const GLfloat * params); /* 703 */ + void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 704 */ + void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 705 */ + void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 706 */ + void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 707 */ + void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 708 */ + void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 709 */ + void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 710 */ + void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 711 */ + void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 712 */ + void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 713 */ + void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 714 */ + void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 715 */ + void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 716 */ + void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 717 */ + void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 718 */ + void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 719 */ + void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 720 */ + void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 721 */ + void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 722 */ + void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 723 */ + void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 724 */ + void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 725 */ + void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 726 */ + void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 727 */ + void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 728 */ + void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 729 */ + void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 730 */ + void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 731 */ + void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 732 */ + void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 733 */ + void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 734 */ + void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 735 */ + void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 736 */ + void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 737 */ + void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 738 */ + void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 739 */ + void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 740 */ + void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 741 */ + void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 742 */ + void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 743 */ + void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 744 */ + void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 745 */ + void (GLAPIENTRYP GetTexBumpParameterfvATI)(GLenum pname, GLfloat * param); /* 746 */ + void (GLAPIENTRYP GetTexBumpParameterivATI)(GLenum pname, GLint * param); /* 747 */ + void (GLAPIENTRYP TexBumpParameterfvATI)(GLenum pname, const GLfloat * param); /* 748 */ + void (GLAPIENTRYP TexBumpParameterivATI)(GLenum pname, const GLint * param); /* 749 */ + void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 750 */ + void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 751 */ + 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); /* 752 */ + void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 753 */ + void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 754 */ + void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 755 */ + void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 756 */ + 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); /* 757 */ + void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 758 */ + void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 759 */ + GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 760 */ + void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 761 */ + void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 762 */ + void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 763 */ + void (GLAPIENTRYP PointParameteriNV)(GLenum pname, GLint param); /* 764 */ + void (GLAPIENTRYP PointParameterivNV)(GLenum pname, const GLint * params); /* 765 */ + void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 766 */ + void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 767 */ + void (GLAPIENTRYP DeleteVertexArraysAPPLE)(GLsizei n, const GLuint * arrays); /* 768 */ + void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 769 */ + GLboolean (GLAPIENTRYP IsVertexArrayAPPLE)(GLuint array); /* 770 */ + void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 771 */ + void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 772 */ + void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 773 */ + void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 774 */ + void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 775 */ + void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 776 */ + void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 777 */ + void (GLAPIENTRYP BlendEquationSeparateEXT)(GLenum modeRGB, GLenum modeA); /* 778 */ + void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 779 */ + void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 780 */ + GLenum (GLAPIENTRYP CheckFramebufferStatusEXT)(GLenum target); /* 781 */ + void (GLAPIENTRYP DeleteFramebuffersEXT)(GLsizei n, const GLuint * framebuffers); /* 782 */ + void (GLAPIENTRYP DeleteRenderbuffersEXT)(GLsizei n, const GLuint * renderbuffers); /* 783 */ + void (GLAPIENTRYP FramebufferRenderbufferEXT)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); /* 784 */ + void (GLAPIENTRYP FramebufferTexture1DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 785 */ + void (GLAPIENTRYP FramebufferTexture2DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 786 */ + void (GLAPIENTRYP FramebufferTexture3DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); /* 787 */ + void (GLAPIENTRYP GenFramebuffersEXT)(GLsizei n, GLuint * framebuffers); /* 788 */ + void (GLAPIENTRYP GenRenderbuffersEXT)(GLsizei n, GLuint * renderbuffers); /* 789 */ + void (GLAPIENTRYP GenerateMipmapEXT)(GLenum target); /* 790 */ + void (GLAPIENTRYP GetFramebufferAttachmentParameterivEXT)(GLenum target, GLenum attachment, GLenum pname, GLint * params); /* 791 */ + void (GLAPIENTRYP GetRenderbufferParameterivEXT)(GLenum target, GLenum pname, GLint * params); /* 792 */ + GLboolean (GLAPIENTRYP IsFramebufferEXT)(GLuint framebuffer); /* 793 */ + GLboolean (GLAPIENTRYP IsRenderbufferEXT)(GLuint renderbuffer); /* 794 */ + void (GLAPIENTRYP RenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); /* 795 */ + void (GLAPIENTRYP BlitFramebufferEXT)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); /* 796 */ + void (GLAPIENTRYP BufferParameteriAPPLE)(GLenum target, GLenum pname, GLint param); /* 797 */ + void (GLAPIENTRYP FlushMappedBufferRangeAPPLE)(GLenum target, GLintptr offset, GLsizeiptr size); /* 798 */ + void (GLAPIENTRYP FramebufferTextureLayerEXT)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); /* 799 */ + void (GLAPIENTRYP ColorMaskIndexedEXT)(GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a); /* 800 */ + void (GLAPIENTRYP DisableIndexedEXT)(GLenum target, GLuint index); /* 801 */ + void (GLAPIENTRYP EnableIndexedEXT)(GLenum target, GLuint index); /* 802 */ + void (GLAPIENTRYP GetBooleanIndexedvEXT)(GLenum value, GLuint index, GLboolean * data); /* 803 */ + void (GLAPIENTRYP GetIntegerIndexedvEXT)(GLenum value, GLuint index, GLint * data); /* 804 */ + GLboolean (GLAPIENTRYP IsEnabledIndexedEXT)(GLenum target, GLuint index); /* 805 */ + void (GLAPIENTRYP BeginConditionalRenderNV)(GLuint query, GLenum mode); /* 806 */ + void (GLAPIENTRYP EndConditionalRenderNV)(void); /* 807 */ + void (GLAPIENTRYP BeginTransformFeedbackEXT)(GLenum mode); /* 808 */ + void (GLAPIENTRYP BindBufferBaseEXT)(GLenum target, GLuint index, GLuint buffer); /* 809 */ + void (GLAPIENTRYP BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset); /* 810 */ + void (GLAPIENTRYP BindBufferRangeEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); /* 811 */ + void (GLAPIENTRYP EndTransformFeedbackEXT)(void); /* 812 */ + void (GLAPIENTRYP GetTransformFeedbackVaryingEXT)(GLuint program, GLuint index, GLsizei bufSize, GLsizei * length, GLsizei * size, GLenum * type, GLchar * name); /* 813 */ + void (GLAPIENTRYP TransformFeedbackVaryingsEXT)(GLuint program, GLsizei count, const char ** varyings, GLenum bufferMode); /* 814 */ + void (GLAPIENTRYP ProvokingVertexEXT)(GLenum mode); /* 815 */ + void (GLAPIENTRYP GetTexParameterPointervAPPLE)(GLenum target, GLenum pname, GLvoid ** params); /* 816 */ + void (GLAPIENTRYP TextureRangeAPPLE)(GLenum target, GLsizei length, GLvoid * pointer); /* 817 */ + void (GLAPIENTRYP GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint * value); /* 818 */ + GLenum (GLAPIENTRYP ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 819 */ + GLenum (GLAPIENTRYP ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 820 */ + void (GLAPIENTRYP StencilFuncSeparateATI)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); /* 821 */ + void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 822 */ + void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 823 */ + void (GLAPIENTRYP GetQueryObjecti64vEXT)(GLuint id, GLenum pname, GLint64EXT * params); /* 824 */ + void (GLAPIENTRYP GetQueryObjectui64vEXT)(GLuint id, GLenum pname, GLuint64EXT * params); /* 825 */ + void (GLAPIENTRYP EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid * writeOffset); /* 826 */ + void (GLAPIENTRYP EGLImageTargetTexture2DOES)(GLenum target, GLvoid * writeOffset); /* 827 */ }; #endif /* !defined( _GLAPI_TABLE_H_ ) */ diff --git a/src/mapi/glapi/glapitemp.h b/src/mapi/glapi/glapitemp.h index f27f6ab22b..3b90032983 100644 --- a/src/mapi/glapi/glapitemp.h +++ b/src/mapi/glapi/glapitemp.h @@ -3872,6 +3872,11 @@ KEYWORD1 void KEYWORD2 NAME(DrawBuffersATI)(GLsizei n, const GLenum * bufs) DISPATCH(DrawBuffersARB, (n, bufs), (F, "glDrawBuffersATI(%d, %p);\n", n, (const void *) bufs)); } +KEYWORD1 void KEYWORD2 NAME(ClampColorARB)(GLenum target, GLenum clamp) +{ + DISPATCH(ClampColorARB, (target, clamp), (F, "glClampColorARB(0x%x, 0x%x);\n", target, clamp)); +} + KEYWORD1 void KEYWORD2 NAME(RenderbufferStorageMultisample)(GLenum target, GLsizei samples, GLenum internalformat, GLsizei width, GLsizei height) { DISPATCH(RenderbufferStorageMultisample, (target, samples, internalformat, width, height), (F, "glRenderbufferStorageMultisample(0x%x, %d, 0x%x, %d, %d);\n", target, samples, internalformat, width, height)); @@ -4012,58 +4017,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_590)(GLenum pname, GLfloat * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_591)(GLenum pname, GLfloat * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_590)(GLenum pname, GLfloat * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_591)(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_591)(GLenum pname, GLint * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_592)(GLenum pname, GLint * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_591)(GLenum pname, GLint * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_592)(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_592)(GLenum pname, GLfloat param); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_593)(GLenum pname, GLfloat param); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_592)(GLenum pname, GLfloat param) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_593)(GLenum pname, GLfloat param) { DISPATCH(PixelTexGenParameterfSGIS, (pname, param), (F, "glPixelTexGenParameterfSGIS(0x%x, %f);\n", pname, param)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_593)(GLenum pname, const GLfloat * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_594)(GLenum pname, const GLfloat * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_593)(GLenum pname, const GLfloat * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_594)(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_594)(GLenum pname, GLint param); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_595)(GLenum pname, GLint param); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_594)(GLenum pname, GLint param) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_595)(GLenum pname, GLint param) { DISPATCH(PixelTexGenParameteriSGIS, (pname, param), (F, "glPixelTexGenParameteriSGIS(0x%x, %d);\n", pname, param)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_595)(GLenum pname, const GLint * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_596)(GLenum pname, const GLint * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_595)(GLenum pname, const GLint * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_596)(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_596)(GLclampf value, GLboolean invert); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_597)(GLclampf value, GLboolean invert); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_596)(GLclampf value, GLboolean invert) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_597)(GLclampf value, GLboolean invert) { DISPATCH(SampleMaskSGIS, (value, invert), (F, "glSampleMaskSGIS(%f, %d);\n", value, invert)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_597)(GLenum pattern); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_598)(GLenum pattern); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_597)(GLenum pattern) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_598)(GLenum pattern) { DISPATCH(SamplePatternSGIS, (pattern), (F, "glSamplePatternSGIS(0x%x);\n", pattern)); } @@ -4113,9 +4118,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_604)(GLenum pname, GLfloat param); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_605)(GLenum pname, GLfloat param); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_604)(GLenum pname, GLfloat param) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_605)(GLenum pname, GLfloat param) { DISPATCH(PointParameterfEXT, (pname, param), (F, "glPointParameterfSGIS(0x%x, %f);\n", pname, param)); } @@ -4135,9 +4140,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_605)(GLenum pname, const GLfloat * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_606)(GLenum pname, const GLfloat * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_605)(GLenum pname, const GLfloat * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_606)(GLenum pname, const GLfloat * params) { DISPATCH(PointParameterfvEXT, (pname, params), (F, "glPointParameterfvSGIS(0x%x, %p);\n", pname, (const void *) params)); } @@ -4152,16 +4157,16 @@ KEYWORD1 void KEYWORD2 NAME(UnlockArraysEXT)(void) DISPATCH(UnlockArraysEXT, (), (F, "glUnlockArraysEXT();\n")); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_608)(GLenum pname, GLdouble * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_609)(GLenum pname, GLdouble * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_608)(GLenum pname, GLdouble * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_609)(GLenum pname, GLdouble * params) { DISPATCH(CullParameterdvEXT, (pname, params), (F, "glCullParameterdvEXT(0x%x, %p);\n", pname, (const void *) params)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_609)(GLenum pname, GLfloat * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_610)(GLenum pname, GLfloat * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_609)(GLenum pname, GLfloat * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_610)(GLenum pname, GLfloat * params) { DISPATCH(CullParameterfvEXT, (pname, params), (F, "glCullParameterfvEXT(0x%x, %p);\n", pname, (const void *) params)); } @@ -4406,9 +4411,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_634)(GLenum mode); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_635)(GLenum mode); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_634)(GLenum mode) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_635)(GLenum mode) { DISPATCH(PixelTexGenSGIX, (mode), (F, "glPixelTexGenSGIX(0x%x);\n", mode)); } @@ -4423,9 +4428,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_635)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_636)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_635)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_636)(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)); } @@ -4790,65 +4795,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_676)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_677)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_676)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_677)(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_677)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_678)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_677)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_678)(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_678)(GLsizei n, const GLuint * fences); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_679)(GLsizei n, const GLuint * fences); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_678)(GLsizei n, const GLuint * fences) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_679)(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_679)(GLuint fence); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_680)(GLuint fence); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_679)(GLuint fence) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_680)(GLuint fence) { DISPATCH(FinishFenceNV, (fence), (F, "glFinishFenceNV(%d);\n", fence)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_680)(GLsizei n, GLuint * fences); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_681)(GLsizei n, GLuint * fences); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_680)(GLsizei n, GLuint * fences) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_681)(GLsizei n, GLuint * fences) { DISPATCH(GenFencesNV, (n, fences), (F, "glGenFencesNV(%d, %p);\n", n, (const void *) fences)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_681)(GLuint fence, GLenum pname, GLint * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_682)(GLuint fence, GLenum pname, GLint * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_681)(GLuint fence, GLenum pname, GLint * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_682)(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_682)(GLuint fence); +KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_683)(GLuint fence); -KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_682)(GLuint fence) +KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_683)(GLuint fence) { RETURN_DISPATCH(IsFenceNV, (fence), (F, "glIsFenceNV(%d);\n", fence)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_683)(GLuint fence, GLenum condition); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_684)(GLuint fence, GLenum condition); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_683)(GLuint fence, GLenum condition) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_684)(GLuint fence, GLenum condition) { DISPATCH(SetFenceNV, (fence, condition), (F, "glSetFenceNV(%d, 0x%x);\n", fence, condition)); } -KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_684)(GLuint fence); +KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_685)(GLuint fence); -KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_684)(GLuint fence) +KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_685)(GLuint fence) { RETURN_DISPATCH(TestFenceNV, (fence), (F, "glTestFenceNV(%d);\n", fence)); } @@ -5293,16 +5298,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_765)(GLenum face); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_766)(GLenum face); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_765)(GLenum face) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_766)(GLenum face) { DISPATCH(ActiveStencilFaceEXT, (face), (F, "glActiveStencilFaceEXT(0x%x);\n", face)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_766)(GLuint array); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_767)(GLuint array); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_766)(GLuint array) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_767)(GLuint array) { DISPATCH(BindVertexArrayAPPLE, (array), (F, "glBindVertexArrayAPPLE(%d);\n", array)); } @@ -5312,16 +5317,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_767)(GLsizei n, const GLuint * arrays); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_768)(GLsizei n, const GLuint * arrays); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_767)(GLsizei n, const GLuint * arrays) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_768)(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_768)(GLsizei n, GLuint * arrays); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_769)(GLsizei n, GLuint * arrays); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_768)(GLsizei n, GLuint * arrays) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_769)(GLsizei n, GLuint * arrays) { DISPATCH(GenVertexArraysAPPLE, (n, arrays), (F, "glGenVertexArraysAPPLE(%d, %p);\n", n, (const void *) arrays)); } @@ -5331,9 +5336,9 @@ KEYWORD1 GLboolean KEYWORD2 NAME(IsVertexArray)(GLuint array) RETURN_DISPATCH(IsVertexArrayAPPLE, (array), (F, "glIsVertexArray(%d);\n", array)); } -KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_769)(GLuint array); +KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_770)(GLuint array); -KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_769)(GLuint array) +KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_770)(GLuint array) { RETURN_DISPATCH(IsVertexArrayAPPLE, (array), (F, "glIsVertexArrayAPPLE(%d);\n", array)); } @@ -5368,9 +5373,9 @@ KEYWORD1 void KEYWORD2 NAME(ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, DISPATCH(ProgramNamedParameter4fvNV, (id, len, name, v), (F, "glProgramNamedParameter4fvNV(%d, %d, %p, %p);\n", id, len, (const void *) name, (const void *) v)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_776)(GLclampd zmin, GLclampd zmax); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_777)(GLclampd zmin, GLclampd zmax); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_776)(GLclampd zmin, GLclampd zmax) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_777)(GLclampd zmin, GLclampd zmax) { DISPATCH(DepthBoundsEXT, (zmin, zmax), (F, "glDepthBoundsEXT(%f, %f);\n", zmin, zmax)); } @@ -5380,9 +5385,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_777)(GLenum modeRGB, GLenum modeA); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_778)(GLenum modeRGB, GLenum modeA); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_777)(GLenum modeRGB, GLenum modeA) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_778)(GLenum modeRGB, GLenum modeA) { DISPATCH(BlendEquationSeparateEXT, (modeRGB, modeA), (F, "glBlendEquationSeparateEXT(0x%x, 0x%x);\n", modeRGB, modeA)); } @@ -5562,23 +5567,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_795)(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_796)(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_795)(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_796)(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_796)(GLenum target, GLenum pname, GLint param); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_797)(GLenum target, GLenum pname, GLint param); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_796)(GLenum target, GLenum pname, GLint param) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_797)(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_797)(GLenum target, GLintptr offset, GLsizeiptr size); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_798)(GLenum target, GLintptr offset, GLsizeiptr size); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_797)(GLenum target, GLintptr offset, GLsizeiptr size) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_798)(GLenum target, GLintptr offset, GLsizeiptr size) { DISPATCH(FlushMappedBufferRangeAPPLE, (target, offset, size), (F, "glFlushMappedBufferRangeAPPLE(0x%x, %d, %d);\n", target, offset, size)); } @@ -5708,16 +5713,16 @@ KEYWORD1 void KEYWORD2 NAME(ProvokingVertex)(GLenum mode) DISPATCH(ProvokingVertexEXT, (mode), (F, "glProvokingVertex(0x%x);\n", mode)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_815)(GLenum target, GLenum pname, GLvoid ** params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_816)(GLenum target, GLenum pname, GLvoid ** params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_815)(GLenum target, GLenum pname, GLvoid ** params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_816)(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_816)(GLenum target, GLsizei length, GLvoid * pointer); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_817)(GLenum target, GLsizei length, GLvoid * pointer); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_816)(GLenum target, GLsizei length, GLvoid * pointer) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_817)(GLenum target, GLsizei length, GLvoid * pointer) { DISPATCH(TextureRangeAPPLE, (target, length, pointer), (F, "glTextureRangeAPPLE(0x%x, %d, %p);\n", target, length, (const void *) pointer)); } @@ -5737,37 +5742,37 @@ KEYWORD1 GLenum KEYWORD2 NAME(ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint RETURN_DISPATCH(ObjectUnpurgeableAPPLE, (objectType, name, option), (F, "glObjectUnpurgeableAPPLE(0x%x, %d, 0x%x);\n", objectType, name, option)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_820)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_821)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_820)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_821)(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_821)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_822)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_821)(GLenum target, GLuint index, GLsizei count, const GLfloat * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_822)(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_822)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_823)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_822)(GLenum target, GLuint index, GLsizei count, const GLfloat * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_823)(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_823)(GLuint id, GLenum pname, GLint64EXT * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_824)(GLuint id, GLenum pname, GLint64EXT * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_823)(GLuint id, GLenum pname, GLint64EXT * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_824)(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_824)(GLuint id, GLenum pname, GLuint64EXT * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_825)(GLuint id, GLenum pname, GLuint64EXT * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_824)(GLuint id, GLenum pname, GLuint64EXT * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_825)(GLuint id, GLenum pname, GLuint64EXT * params) { DISPATCH(GetQueryObjectui64vEXT, (id, pname, params), (F, "glGetQueryObjectui64vEXT(%d, 0x%x, %p);\n", id, pname, (const void *) params)); } @@ -6498,6 +6503,7 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(GetActiveAttribARB), TABLE_ENTRY(GetAttribLocationARB), TABLE_ENTRY(DrawBuffersARB), + TABLE_ENTRY(ClampColorARB), TABLE_ENTRY(RenderbufferStorageMultisample), TABLE_ENTRY(FramebufferTextureARB), TABLE_ENTRY(FramebufferTextureFaceARB), @@ -6525,7 +6531,6 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(PauseTransformFeedback), TABLE_ENTRY(ResumeTransformFeedback), TABLE_ENTRY(PolygonOffsetEXT), - TABLE_ENTRY(_dispatch_stub_590), TABLE_ENTRY(_dispatch_stub_591), TABLE_ENTRY(_dispatch_stub_592), TABLE_ENTRY(_dispatch_stub_593), @@ -6533,6 +6538,7 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(_dispatch_stub_595), TABLE_ENTRY(_dispatch_stub_596), TABLE_ENTRY(_dispatch_stub_597), + TABLE_ENTRY(_dispatch_stub_598), TABLE_ENTRY(ColorPointerEXT), TABLE_ENTRY(EdgeFlagPointerEXT), TABLE_ENTRY(IndexPointerEXT), @@ -6543,8 +6549,8 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(PointParameterfvEXT), TABLE_ENTRY(LockArraysEXT), TABLE_ENTRY(UnlockArraysEXT), - TABLE_ENTRY(_dispatch_stub_608), TABLE_ENTRY(_dispatch_stub_609), + TABLE_ENTRY(_dispatch_stub_610), TABLE_ENTRY(SecondaryColor3bEXT), TABLE_ENTRY(SecondaryColor3bvEXT), TABLE_ENTRY(SecondaryColor3dEXT), @@ -6569,7 +6575,7 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(FogCoorddvEXT), TABLE_ENTRY(FogCoordfEXT), TABLE_ENTRY(FogCoordfvEXT), - TABLE_ENTRY(_dispatch_stub_634), + TABLE_ENTRY(_dispatch_stub_635), TABLE_ENTRY(BlendFuncSeparateEXT), TABLE_ENTRY(FlushVertexArrayRangeNV), TABLE_ENTRY(VertexArrayRangeNV), @@ -6611,7 +6617,6 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(WindowPos4ivMESA), TABLE_ENTRY(WindowPos4sMESA), TABLE_ENTRY(WindowPos4svMESA), - TABLE_ENTRY(_dispatch_stub_676), TABLE_ENTRY(_dispatch_stub_677), TABLE_ENTRY(_dispatch_stub_678), TABLE_ENTRY(_dispatch_stub_679), @@ -6620,6 +6625,7 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(_dispatch_stub_682), TABLE_ENTRY(_dispatch_stub_683), TABLE_ENTRY(_dispatch_stub_684), + TABLE_ENTRY(_dispatch_stub_685), TABLE_ENTRY(AreProgramsResidentNV), TABLE_ENTRY(BindProgramNV), TABLE_ENTRY(DeleteProgramsNV), @@ -6700,19 +6706,19 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(SetFragmentShaderConstantATI), TABLE_ENTRY(PointParameteriNV), TABLE_ENTRY(PointParameterivNV), - TABLE_ENTRY(_dispatch_stub_765), TABLE_ENTRY(_dispatch_stub_766), TABLE_ENTRY(_dispatch_stub_767), TABLE_ENTRY(_dispatch_stub_768), TABLE_ENTRY(_dispatch_stub_769), + TABLE_ENTRY(_dispatch_stub_770), TABLE_ENTRY(GetProgramNamedParameterdvNV), TABLE_ENTRY(GetProgramNamedParameterfvNV), TABLE_ENTRY(ProgramNamedParameter4dNV), TABLE_ENTRY(ProgramNamedParameter4dvNV), TABLE_ENTRY(ProgramNamedParameter4fNV), TABLE_ENTRY(ProgramNamedParameter4fvNV), - TABLE_ENTRY(_dispatch_stub_776), TABLE_ENTRY(_dispatch_stub_777), + TABLE_ENTRY(_dispatch_stub_778), TABLE_ENTRY(BindFramebufferEXT), TABLE_ENTRY(BindRenderbufferEXT), TABLE_ENTRY(CheckFramebufferStatusEXT), @@ -6730,9 +6736,9 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(IsFramebufferEXT), TABLE_ENTRY(IsRenderbufferEXT), TABLE_ENTRY(RenderbufferStorageEXT), - TABLE_ENTRY(_dispatch_stub_795), TABLE_ENTRY(_dispatch_stub_796), TABLE_ENTRY(_dispatch_stub_797), + TABLE_ENTRY(_dispatch_stub_798), TABLE_ENTRY(FramebufferTextureLayerEXT), TABLE_ENTRY(ColorMaskIndexedEXT), TABLE_ENTRY(DisableIndexedEXT), @@ -6750,16 +6756,16 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(GetTransformFeedbackVaryingEXT), TABLE_ENTRY(TransformFeedbackVaryingsEXT), TABLE_ENTRY(ProvokingVertexEXT), - TABLE_ENTRY(_dispatch_stub_815), TABLE_ENTRY(_dispatch_stub_816), + TABLE_ENTRY(_dispatch_stub_817), TABLE_ENTRY(GetObjectParameterivAPPLE), TABLE_ENTRY(ObjectPurgeableAPPLE), TABLE_ENTRY(ObjectUnpurgeableAPPLE), - TABLE_ENTRY(_dispatch_stub_820), TABLE_ENTRY(_dispatch_stub_821), TABLE_ENTRY(_dispatch_stub_822), TABLE_ENTRY(_dispatch_stub_823), TABLE_ENTRY(_dispatch_stub_824), + TABLE_ENTRY(_dispatch_stub_825), TABLE_ENTRY(EGLImageTargetRenderbufferStorageOES), TABLE_ENTRY(EGLImageTargetTexture2DOES), /* A whole bunch of no-op functions. These might be called @@ -7066,10 +7072,10 @@ _glapi_proc UNUSED_TABLE_NAME[] = { TABLE_ENTRY(RenderbufferStorageMultisampleEXT), TABLE_ENTRY(PointParameterf), TABLE_ENTRY(PointParameterfARB), - TABLE_ENTRY(_dispatch_stub_604), + TABLE_ENTRY(_dispatch_stub_605), TABLE_ENTRY(PointParameterfv), TABLE_ENTRY(PointParameterfvARB), - TABLE_ENTRY(_dispatch_stub_605), + TABLE_ENTRY(_dispatch_stub_606), TABLE_ENTRY(SecondaryColor3b), TABLE_ENTRY(SecondaryColor3bv), TABLE_ENTRY(SecondaryColor3d), @@ -7095,7 +7101,7 @@ _glapi_proc UNUSED_TABLE_NAME[] = { TABLE_ENTRY(FogCoordf), TABLE_ENTRY(FogCoordfv), TABLE_ENTRY(BlendFuncSeparate), - TABLE_ENTRY(_dispatch_stub_635), + TABLE_ENTRY(_dispatch_stub_636), TABLE_ENTRY(WindowPos2d), TABLE_ENTRY(WindowPos2dARB), TABLE_ENTRY(WindowPos2dv), diff --git a/src/mapi/glapi/glprocs.h b/src/mapi/glapi/glprocs.h index 0ddcf4bad0..62dd598afb 100644 --- a/src/mapi/glapi/glprocs.h +++ b/src/mapi/glapi/glprocs.h @@ -615,6 +615,7 @@ static const char gl_string_table[] = "glGetActiveAttribARB\0" "glGetAttribLocationARB\0" "glDrawBuffersARB\0" + "glClampColorARB\0" "glRenderbufferStorageMultisample\0" "glFramebufferTextureARB\0" "glFramebufferTextureFaceARB\0" @@ -1208,7 +1209,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_590 mgl_dispatch_stub_590 #define gl_dispatch_stub_591 mgl_dispatch_stub_591 #define gl_dispatch_stub_592 mgl_dispatch_stub_592 #define gl_dispatch_stub_593 mgl_dispatch_stub_593 @@ -1216,10 +1216,10 @@ static const char gl_string_table[] = #define gl_dispatch_stub_595 mgl_dispatch_stub_595 #define gl_dispatch_stub_596 mgl_dispatch_stub_596 #define gl_dispatch_stub_597 mgl_dispatch_stub_597 -#define gl_dispatch_stub_608 mgl_dispatch_stub_608 +#define gl_dispatch_stub_598 mgl_dispatch_stub_598 #define gl_dispatch_stub_609 mgl_dispatch_stub_609 -#define gl_dispatch_stub_634 mgl_dispatch_stub_634 -#define gl_dispatch_stub_676 mgl_dispatch_stub_676 +#define gl_dispatch_stub_610 mgl_dispatch_stub_610 +#define gl_dispatch_stub_635 mgl_dispatch_stub_635 #define gl_dispatch_stub_677 mgl_dispatch_stub_677 #define gl_dispatch_stub_678 mgl_dispatch_stub_678 #define gl_dispatch_stub_679 mgl_dispatch_stub_679 @@ -1228,23 +1228,24 @@ static const char gl_string_table[] = #define gl_dispatch_stub_682 mgl_dispatch_stub_682 #define gl_dispatch_stub_683 mgl_dispatch_stub_683 #define gl_dispatch_stub_684 mgl_dispatch_stub_684 -#define gl_dispatch_stub_765 mgl_dispatch_stub_765 +#define gl_dispatch_stub_685 mgl_dispatch_stub_685 #define gl_dispatch_stub_766 mgl_dispatch_stub_766 #define gl_dispatch_stub_767 mgl_dispatch_stub_767 #define gl_dispatch_stub_768 mgl_dispatch_stub_768 #define gl_dispatch_stub_769 mgl_dispatch_stub_769 -#define gl_dispatch_stub_776 mgl_dispatch_stub_776 +#define gl_dispatch_stub_770 mgl_dispatch_stub_770 #define gl_dispatch_stub_777 mgl_dispatch_stub_777 -#define gl_dispatch_stub_795 mgl_dispatch_stub_795 +#define gl_dispatch_stub_778 mgl_dispatch_stub_778 #define gl_dispatch_stub_796 mgl_dispatch_stub_796 #define gl_dispatch_stub_797 mgl_dispatch_stub_797 -#define gl_dispatch_stub_815 mgl_dispatch_stub_815 +#define gl_dispatch_stub_798 mgl_dispatch_stub_798 #define gl_dispatch_stub_816 mgl_dispatch_stub_816 -#define gl_dispatch_stub_820 mgl_dispatch_stub_820 +#define gl_dispatch_stub_817 mgl_dispatch_stub_817 #define gl_dispatch_stub_821 mgl_dispatch_stub_821 #define gl_dispatch_stub_822 mgl_dispatch_stub_822 #define gl_dispatch_stub_823 mgl_dispatch_stub_823 #define gl_dispatch_stub_824 mgl_dispatch_stub_824 +#define gl_dispatch_stub_825 mgl_dispatch_stub_825 #endif /* USE_MGL_NAMESPACE */ @@ -1262,43 +1263,43 @@ 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_590(GLenum pname, GLfloat * params); -void GLAPIENTRY gl_dispatch_stub_591(GLenum pname, GLint * params); -void GLAPIENTRY gl_dispatch_stub_592(GLenum pname, GLfloat param); -void GLAPIENTRY gl_dispatch_stub_593(GLenum pname, const GLfloat * params); -void GLAPIENTRY gl_dispatch_stub_594(GLenum pname, GLint param); -void GLAPIENTRY gl_dispatch_stub_595(GLenum pname, const GLint * params); -void GLAPIENTRY gl_dispatch_stub_596(GLclampf value, GLboolean invert); -void GLAPIENTRY gl_dispatch_stub_597(GLenum pattern); -void GLAPIENTRY gl_dispatch_stub_608(GLenum pname, GLdouble * params); -void GLAPIENTRY gl_dispatch_stub_609(GLenum pname, GLfloat * params); -void GLAPIENTRY gl_dispatch_stub_634(GLenum mode); -void GLAPIENTRY gl_dispatch_stub_676(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); -void GLAPIENTRY gl_dispatch_stub_677(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); -void GLAPIENTRY gl_dispatch_stub_678(GLsizei n, const GLuint * fences); -void GLAPIENTRY gl_dispatch_stub_679(GLuint fence); -void GLAPIENTRY gl_dispatch_stub_680(GLsizei n, GLuint * fences); -void GLAPIENTRY gl_dispatch_stub_681(GLuint fence, GLenum pname, GLint * params); -GLboolean GLAPIENTRY gl_dispatch_stub_682(GLuint fence); -void GLAPIENTRY gl_dispatch_stub_683(GLuint fence, GLenum condition); -GLboolean GLAPIENTRY gl_dispatch_stub_684(GLuint fence); -void GLAPIENTRY gl_dispatch_stub_765(GLenum face); -void GLAPIENTRY gl_dispatch_stub_766(GLuint array); -void GLAPIENTRY gl_dispatch_stub_767(GLsizei n, const GLuint * arrays); -void GLAPIENTRY gl_dispatch_stub_768(GLsizei n, GLuint * arrays); -GLboolean GLAPIENTRY gl_dispatch_stub_769(GLuint array); -void GLAPIENTRY gl_dispatch_stub_776(GLclampd zmin, GLclampd zmax); -void GLAPIENTRY gl_dispatch_stub_777(GLenum modeRGB, GLenum modeA); -void GLAPIENTRY gl_dispatch_stub_795(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_796(GLenum target, GLenum pname, GLint param); -void GLAPIENTRY gl_dispatch_stub_797(GLenum target, GLintptr offset, GLsizeiptr size); -void GLAPIENTRY gl_dispatch_stub_815(GLenum target, GLenum pname, GLvoid ** params); -void GLAPIENTRY gl_dispatch_stub_816(GLenum target, GLsizei length, GLvoid * pointer); -void GLAPIENTRY gl_dispatch_stub_820(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); -void GLAPIENTRY gl_dispatch_stub_821(GLenum target, GLuint index, GLsizei count, const GLfloat * params); +void GLAPIENTRY gl_dispatch_stub_591(GLenum pname, GLfloat * params); +void GLAPIENTRY gl_dispatch_stub_592(GLenum pname, GLint * params); +void GLAPIENTRY gl_dispatch_stub_593(GLenum pname, GLfloat param); +void GLAPIENTRY gl_dispatch_stub_594(GLenum pname, const GLfloat * params); +void GLAPIENTRY gl_dispatch_stub_595(GLenum pname, GLint param); +void GLAPIENTRY gl_dispatch_stub_596(GLenum pname, const GLint * params); +void GLAPIENTRY gl_dispatch_stub_597(GLclampf value, GLboolean invert); +void GLAPIENTRY gl_dispatch_stub_598(GLenum pattern); +void GLAPIENTRY gl_dispatch_stub_609(GLenum pname, GLdouble * params); +void GLAPIENTRY gl_dispatch_stub_610(GLenum pname, GLfloat * params); +void GLAPIENTRY gl_dispatch_stub_635(GLenum mode); +void GLAPIENTRY gl_dispatch_stub_677(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); +void GLAPIENTRY gl_dispatch_stub_678(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); +void GLAPIENTRY gl_dispatch_stub_679(GLsizei n, const GLuint * fences); +void GLAPIENTRY gl_dispatch_stub_680(GLuint fence); +void GLAPIENTRY gl_dispatch_stub_681(GLsizei n, GLuint * fences); +void GLAPIENTRY gl_dispatch_stub_682(GLuint fence, GLenum pname, GLint * params); +GLboolean GLAPIENTRY gl_dispatch_stub_683(GLuint fence); +void GLAPIENTRY gl_dispatch_stub_684(GLuint fence, GLenum condition); +GLboolean GLAPIENTRY gl_dispatch_stub_685(GLuint fence); +void GLAPIENTRY gl_dispatch_stub_766(GLenum face); +void GLAPIENTRY gl_dispatch_stub_767(GLuint array); +void GLAPIENTRY gl_dispatch_stub_768(GLsizei n, const GLuint * arrays); +void GLAPIENTRY gl_dispatch_stub_769(GLsizei n, GLuint * arrays); +GLboolean GLAPIENTRY gl_dispatch_stub_770(GLuint array); +void GLAPIENTRY gl_dispatch_stub_777(GLclampd zmin, GLclampd zmax); +void GLAPIENTRY gl_dispatch_stub_778(GLenum modeRGB, GLenum modeA); +void GLAPIENTRY gl_dispatch_stub_796(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_797(GLenum target, GLenum pname, GLint param); +void GLAPIENTRY gl_dispatch_stub_798(GLenum target, GLintptr offset, GLsizeiptr size); +void GLAPIENTRY gl_dispatch_stub_816(GLenum target, GLenum pname, GLvoid ** params); +void GLAPIENTRY gl_dispatch_stub_817(GLenum target, GLsizei length, GLvoid * pointer); +void GLAPIENTRY gl_dispatch_stub_821(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); void GLAPIENTRY gl_dispatch_stub_822(GLenum target, GLuint index, GLsizei count, const GLfloat * params); -void GLAPIENTRY gl_dispatch_stub_823(GLuint id, GLenum pname, GLint64EXT * params); -void GLAPIENTRY gl_dispatch_stub_824(GLuint id, GLenum pname, GLuint64EXT * params); +void GLAPIENTRY gl_dispatch_stub_823(GLenum target, GLuint index, GLsizei count, const GLfloat * params); +void GLAPIENTRY gl_dispatch_stub_824(GLuint id, GLenum pname, GLint64EXT * params); +void GLAPIENTRY gl_dispatch_stub_825(GLuint id, GLenum pname, GLuint64EXT * params); #endif /* defined(NEED_FUNCTION_POINTER) || defined(GLX_INDIRECT_RENDERING) */ static const glprocs_table_t static_functions[] = { @@ -1865,582 +1866,583 @@ static const glprocs_table_t static_functions[] = { NAME_FUNC_OFFSET( 8936, glGetActiveAttribARB, glGetActiveAttribARB, NULL, _gloffset_GetActiveAttribARB), NAME_FUNC_OFFSET( 8957, glGetAttribLocationARB, glGetAttribLocationARB, NULL, _gloffset_GetAttribLocationARB), NAME_FUNC_OFFSET( 8980, glDrawBuffersARB, glDrawBuffersARB, NULL, _gloffset_DrawBuffersARB), - NAME_FUNC_OFFSET( 8997, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, _gloffset_RenderbufferStorageMultisample), - NAME_FUNC_OFFSET( 9030, glFramebufferTextureARB, glFramebufferTextureARB, NULL, _gloffset_FramebufferTextureARB), - NAME_FUNC_OFFSET( 9054, glFramebufferTextureFaceARB, glFramebufferTextureFaceARB, NULL, _gloffset_FramebufferTextureFaceARB), - NAME_FUNC_OFFSET( 9082, glProgramParameteriARB, glProgramParameteriARB, NULL, _gloffset_ProgramParameteriARB), - NAME_FUNC_OFFSET( 9105, glFlushMappedBufferRange, glFlushMappedBufferRange, NULL, _gloffset_FlushMappedBufferRange), - NAME_FUNC_OFFSET( 9130, glMapBufferRange, glMapBufferRange, NULL, _gloffset_MapBufferRange), - NAME_FUNC_OFFSET( 9147, glBindVertexArray, glBindVertexArray, NULL, _gloffset_BindVertexArray), - NAME_FUNC_OFFSET( 9165, glGenVertexArrays, glGenVertexArrays, NULL, _gloffset_GenVertexArrays), - NAME_FUNC_OFFSET( 9183, glCopyBufferSubData, glCopyBufferSubData, NULL, _gloffset_CopyBufferSubData), - NAME_FUNC_OFFSET( 9203, glClientWaitSync, glClientWaitSync, NULL, _gloffset_ClientWaitSync), - NAME_FUNC_OFFSET( 9220, glDeleteSync, glDeleteSync, NULL, _gloffset_DeleteSync), - NAME_FUNC_OFFSET( 9233, glFenceSync, glFenceSync, NULL, _gloffset_FenceSync), - NAME_FUNC_OFFSET( 9245, glGetInteger64v, glGetInteger64v, NULL, _gloffset_GetInteger64v), - NAME_FUNC_OFFSET( 9261, glGetSynciv, glGetSynciv, NULL, _gloffset_GetSynciv), - NAME_FUNC_OFFSET( 9273, glIsSync, glIsSync, NULL, _gloffset_IsSync), - NAME_FUNC_OFFSET( 9282, glWaitSync, glWaitSync, NULL, _gloffset_WaitSync), - NAME_FUNC_OFFSET( 9293, glDrawElementsBaseVertex, glDrawElementsBaseVertex, NULL, _gloffset_DrawElementsBaseVertex), - NAME_FUNC_OFFSET( 9318, glDrawRangeElementsBaseVertex, glDrawRangeElementsBaseVertex, NULL, _gloffset_DrawRangeElementsBaseVertex), - NAME_FUNC_OFFSET( 9348, glMultiDrawElementsBaseVertex, glMultiDrawElementsBaseVertex, NULL, _gloffset_MultiDrawElementsBaseVertex), - NAME_FUNC_OFFSET( 9378, glBindTransformFeedback, glBindTransformFeedback, NULL, _gloffset_BindTransformFeedback), - NAME_FUNC_OFFSET( 9402, glDeleteTransformFeedbacks, glDeleteTransformFeedbacks, NULL, _gloffset_DeleteTransformFeedbacks), - NAME_FUNC_OFFSET( 9429, glDrawTransformFeedback, glDrawTransformFeedback, NULL, _gloffset_DrawTransformFeedback), - NAME_FUNC_OFFSET( 9453, glGenTransformFeedbacks, glGenTransformFeedbacks, NULL, _gloffset_GenTransformFeedbacks), - NAME_FUNC_OFFSET( 9477, glIsTransformFeedback, glIsTransformFeedback, NULL, _gloffset_IsTransformFeedback), - NAME_FUNC_OFFSET( 9499, glPauseTransformFeedback, glPauseTransformFeedback, NULL, _gloffset_PauseTransformFeedback), - NAME_FUNC_OFFSET( 9524, glResumeTransformFeedback, glResumeTransformFeedback, NULL, _gloffset_ResumeTransformFeedback), - NAME_FUNC_OFFSET( 9550, glPolygonOffsetEXT, glPolygonOffsetEXT, NULL, _gloffset_PolygonOffsetEXT), - NAME_FUNC_OFFSET( 9569, gl_dispatch_stub_590, gl_dispatch_stub_590, NULL, _gloffset_GetPixelTexGenParameterfvSGIS), - NAME_FUNC_OFFSET( 9601, gl_dispatch_stub_591, gl_dispatch_stub_591, NULL, _gloffset_GetPixelTexGenParameterivSGIS), - NAME_FUNC_OFFSET( 9633, gl_dispatch_stub_592, gl_dispatch_stub_592, NULL, _gloffset_PixelTexGenParameterfSGIS), - NAME_FUNC_OFFSET( 9661, gl_dispatch_stub_593, gl_dispatch_stub_593, NULL, _gloffset_PixelTexGenParameterfvSGIS), - NAME_FUNC_OFFSET( 9690, gl_dispatch_stub_594, gl_dispatch_stub_594, NULL, _gloffset_PixelTexGenParameteriSGIS), - NAME_FUNC_OFFSET( 9718, gl_dispatch_stub_595, gl_dispatch_stub_595, NULL, _gloffset_PixelTexGenParameterivSGIS), - NAME_FUNC_OFFSET( 9747, gl_dispatch_stub_596, gl_dispatch_stub_596, NULL, _gloffset_SampleMaskSGIS), - NAME_FUNC_OFFSET( 9764, gl_dispatch_stub_597, gl_dispatch_stub_597, NULL, _gloffset_SamplePatternSGIS), - NAME_FUNC_OFFSET( 9784, glColorPointerEXT, glColorPointerEXT, NULL, _gloffset_ColorPointerEXT), - NAME_FUNC_OFFSET( 9802, glEdgeFlagPointerEXT, glEdgeFlagPointerEXT, NULL, _gloffset_EdgeFlagPointerEXT), - NAME_FUNC_OFFSET( 9823, glIndexPointerEXT, glIndexPointerEXT, NULL, _gloffset_IndexPointerEXT), - NAME_FUNC_OFFSET( 9841, glNormalPointerEXT, glNormalPointerEXT, NULL, _gloffset_NormalPointerEXT), - NAME_FUNC_OFFSET( 9860, glTexCoordPointerEXT, glTexCoordPointerEXT, NULL, _gloffset_TexCoordPointerEXT), - NAME_FUNC_OFFSET( 9881, glVertexPointerEXT, glVertexPointerEXT, NULL, _gloffset_VertexPointerEXT), - NAME_FUNC_OFFSET( 9900, glPointParameterfEXT, glPointParameterfEXT, NULL, _gloffset_PointParameterfEXT), - NAME_FUNC_OFFSET( 9921, glPointParameterfvEXT, glPointParameterfvEXT, NULL, _gloffset_PointParameterfvEXT), - NAME_FUNC_OFFSET( 9943, glLockArraysEXT, glLockArraysEXT, NULL, _gloffset_LockArraysEXT), - NAME_FUNC_OFFSET( 9959, glUnlockArraysEXT, glUnlockArraysEXT, NULL, _gloffset_UnlockArraysEXT), - NAME_FUNC_OFFSET( 9977, gl_dispatch_stub_608, gl_dispatch_stub_608, NULL, _gloffset_CullParameterdvEXT), - NAME_FUNC_OFFSET( 9998, gl_dispatch_stub_609, gl_dispatch_stub_609, NULL, _gloffset_CullParameterfvEXT), - NAME_FUNC_OFFSET(10019, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, _gloffset_SecondaryColor3bEXT), - NAME_FUNC_OFFSET(10041, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, _gloffset_SecondaryColor3bvEXT), - NAME_FUNC_OFFSET(10064, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, _gloffset_SecondaryColor3dEXT), - NAME_FUNC_OFFSET(10086, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, _gloffset_SecondaryColor3dvEXT), - NAME_FUNC_OFFSET(10109, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, _gloffset_SecondaryColor3fEXT), - NAME_FUNC_OFFSET(10131, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, _gloffset_SecondaryColor3fvEXT), - NAME_FUNC_OFFSET(10154, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, _gloffset_SecondaryColor3iEXT), - NAME_FUNC_OFFSET(10176, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, _gloffset_SecondaryColor3ivEXT), - NAME_FUNC_OFFSET(10199, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, _gloffset_SecondaryColor3sEXT), - NAME_FUNC_OFFSET(10221, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, _gloffset_SecondaryColor3svEXT), - NAME_FUNC_OFFSET(10244, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, _gloffset_SecondaryColor3ubEXT), - NAME_FUNC_OFFSET(10267, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, _gloffset_SecondaryColor3ubvEXT), - NAME_FUNC_OFFSET(10291, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, _gloffset_SecondaryColor3uiEXT), - NAME_FUNC_OFFSET(10314, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, _gloffset_SecondaryColor3uivEXT), - NAME_FUNC_OFFSET(10338, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, _gloffset_SecondaryColor3usEXT), - NAME_FUNC_OFFSET(10361, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, _gloffset_SecondaryColor3usvEXT), - NAME_FUNC_OFFSET(10385, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, _gloffset_SecondaryColorPointerEXT), - NAME_FUNC_OFFSET(10412, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, _gloffset_MultiDrawArraysEXT), - NAME_FUNC_OFFSET(10433, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, _gloffset_MultiDrawElementsEXT), - NAME_FUNC_OFFSET(10456, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, _gloffset_FogCoordPointerEXT), - NAME_FUNC_OFFSET(10477, glFogCoorddEXT, glFogCoorddEXT, NULL, _gloffset_FogCoorddEXT), - NAME_FUNC_OFFSET(10492, glFogCoorddvEXT, glFogCoorddvEXT, NULL, _gloffset_FogCoorddvEXT), - NAME_FUNC_OFFSET(10508, glFogCoordfEXT, glFogCoordfEXT, NULL, _gloffset_FogCoordfEXT), - NAME_FUNC_OFFSET(10523, glFogCoordfvEXT, glFogCoordfvEXT, NULL, _gloffset_FogCoordfvEXT), - NAME_FUNC_OFFSET(10539, gl_dispatch_stub_634, gl_dispatch_stub_634, NULL, _gloffset_PixelTexGenSGIX), - NAME_FUNC_OFFSET(10557, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, _gloffset_BlendFuncSeparateEXT), - NAME_FUNC_OFFSET(10580, glFlushVertexArrayRangeNV, glFlushVertexArrayRangeNV, NULL, _gloffset_FlushVertexArrayRangeNV), - NAME_FUNC_OFFSET(10606, glVertexArrayRangeNV, glVertexArrayRangeNV, NULL, _gloffset_VertexArrayRangeNV), - NAME_FUNC_OFFSET(10627, glCombinerInputNV, glCombinerInputNV, NULL, _gloffset_CombinerInputNV), - NAME_FUNC_OFFSET(10645, glCombinerOutputNV, glCombinerOutputNV, NULL, _gloffset_CombinerOutputNV), - NAME_FUNC_OFFSET(10664, glCombinerParameterfNV, glCombinerParameterfNV, NULL, _gloffset_CombinerParameterfNV), - NAME_FUNC_OFFSET(10687, glCombinerParameterfvNV, glCombinerParameterfvNV, NULL, _gloffset_CombinerParameterfvNV), - NAME_FUNC_OFFSET(10711, glCombinerParameteriNV, glCombinerParameteriNV, NULL, _gloffset_CombinerParameteriNV), - NAME_FUNC_OFFSET(10734, glCombinerParameterivNV, glCombinerParameterivNV, NULL, _gloffset_CombinerParameterivNV), - NAME_FUNC_OFFSET(10758, glFinalCombinerInputNV, glFinalCombinerInputNV, NULL, _gloffset_FinalCombinerInputNV), - NAME_FUNC_OFFSET(10781, glGetCombinerInputParameterfvNV, glGetCombinerInputParameterfvNV, NULL, _gloffset_GetCombinerInputParameterfvNV), - NAME_FUNC_OFFSET(10813, glGetCombinerInputParameterivNV, glGetCombinerInputParameterivNV, NULL, _gloffset_GetCombinerInputParameterivNV), - NAME_FUNC_OFFSET(10845, glGetCombinerOutputParameterfvNV, glGetCombinerOutputParameterfvNV, NULL, _gloffset_GetCombinerOutputParameterfvNV), - NAME_FUNC_OFFSET(10878, glGetCombinerOutputParameterivNV, glGetCombinerOutputParameterivNV, NULL, _gloffset_GetCombinerOutputParameterivNV), - NAME_FUNC_OFFSET(10911, glGetFinalCombinerInputParameterfvNV, glGetFinalCombinerInputParameterfvNV, NULL, _gloffset_GetFinalCombinerInputParameterfvNV), - NAME_FUNC_OFFSET(10948, glGetFinalCombinerInputParameterivNV, glGetFinalCombinerInputParameterivNV, NULL, _gloffset_GetFinalCombinerInputParameterivNV), - NAME_FUNC_OFFSET(10985, glResizeBuffersMESA, glResizeBuffersMESA, NULL, _gloffset_ResizeBuffersMESA), - NAME_FUNC_OFFSET(11005, glWindowPos2dMESA, glWindowPos2dMESA, NULL, _gloffset_WindowPos2dMESA), - NAME_FUNC_OFFSET(11023, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, _gloffset_WindowPos2dvMESA), - NAME_FUNC_OFFSET(11042, glWindowPos2fMESA, glWindowPos2fMESA, NULL, _gloffset_WindowPos2fMESA), - NAME_FUNC_OFFSET(11060, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, _gloffset_WindowPos2fvMESA), - NAME_FUNC_OFFSET(11079, glWindowPos2iMESA, glWindowPos2iMESA, NULL, _gloffset_WindowPos2iMESA), - NAME_FUNC_OFFSET(11097, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, _gloffset_WindowPos2ivMESA), - NAME_FUNC_OFFSET(11116, glWindowPos2sMESA, glWindowPos2sMESA, NULL, _gloffset_WindowPos2sMESA), - NAME_FUNC_OFFSET(11134, glWindowPos2svMESA, glWindowPos2svMESA, NULL, _gloffset_WindowPos2svMESA), - NAME_FUNC_OFFSET(11153, glWindowPos3dMESA, glWindowPos3dMESA, NULL, _gloffset_WindowPos3dMESA), - NAME_FUNC_OFFSET(11171, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, _gloffset_WindowPos3dvMESA), - NAME_FUNC_OFFSET(11190, glWindowPos3fMESA, glWindowPos3fMESA, NULL, _gloffset_WindowPos3fMESA), - NAME_FUNC_OFFSET(11208, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, _gloffset_WindowPos3fvMESA), - NAME_FUNC_OFFSET(11227, glWindowPos3iMESA, glWindowPos3iMESA, NULL, _gloffset_WindowPos3iMESA), - NAME_FUNC_OFFSET(11245, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, _gloffset_WindowPos3ivMESA), - NAME_FUNC_OFFSET(11264, glWindowPos3sMESA, glWindowPos3sMESA, NULL, _gloffset_WindowPos3sMESA), - NAME_FUNC_OFFSET(11282, glWindowPos3svMESA, glWindowPos3svMESA, NULL, _gloffset_WindowPos3svMESA), - NAME_FUNC_OFFSET(11301, glWindowPos4dMESA, glWindowPos4dMESA, NULL, _gloffset_WindowPos4dMESA), - NAME_FUNC_OFFSET(11319, glWindowPos4dvMESA, glWindowPos4dvMESA, NULL, _gloffset_WindowPos4dvMESA), - NAME_FUNC_OFFSET(11338, glWindowPos4fMESA, glWindowPos4fMESA, NULL, _gloffset_WindowPos4fMESA), - NAME_FUNC_OFFSET(11356, glWindowPos4fvMESA, glWindowPos4fvMESA, NULL, _gloffset_WindowPos4fvMESA), - NAME_FUNC_OFFSET(11375, glWindowPos4iMESA, glWindowPos4iMESA, NULL, _gloffset_WindowPos4iMESA), - NAME_FUNC_OFFSET(11393, glWindowPos4ivMESA, glWindowPos4ivMESA, NULL, _gloffset_WindowPos4ivMESA), - NAME_FUNC_OFFSET(11412, glWindowPos4sMESA, glWindowPos4sMESA, NULL, _gloffset_WindowPos4sMESA), - NAME_FUNC_OFFSET(11430, glWindowPos4svMESA, glWindowPos4svMESA, NULL, _gloffset_WindowPos4svMESA), - NAME_FUNC_OFFSET(11449, gl_dispatch_stub_676, gl_dispatch_stub_676, NULL, _gloffset_MultiModeDrawArraysIBM), - NAME_FUNC_OFFSET(11474, gl_dispatch_stub_677, gl_dispatch_stub_677, NULL, _gloffset_MultiModeDrawElementsIBM), - NAME_FUNC_OFFSET(11501, gl_dispatch_stub_678, gl_dispatch_stub_678, NULL, _gloffset_DeleteFencesNV), - NAME_FUNC_OFFSET(11518, gl_dispatch_stub_679, gl_dispatch_stub_679, NULL, _gloffset_FinishFenceNV), - NAME_FUNC_OFFSET(11534, gl_dispatch_stub_680, gl_dispatch_stub_680, NULL, _gloffset_GenFencesNV), - NAME_FUNC_OFFSET(11548, gl_dispatch_stub_681, gl_dispatch_stub_681, NULL, _gloffset_GetFenceivNV), - NAME_FUNC_OFFSET(11563, gl_dispatch_stub_682, gl_dispatch_stub_682, NULL, _gloffset_IsFenceNV), - NAME_FUNC_OFFSET(11575, gl_dispatch_stub_683, gl_dispatch_stub_683, NULL, _gloffset_SetFenceNV), - NAME_FUNC_OFFSET(11588, gl_dispatch_stub_684, gl_dispatch_stub_684, NULL, _gloffset_TestFenceNV), - NAME_FUNC_OFFSET(11602, glAreProgramsResidentNV, glAreProgramsResidentNV, NULL, _gloffset_AreProgramsResidentNV), - NAME_FUNC_OFFSET(11626, glBindProgramNV, glBindProgramNV, NULL, _gloffset_BindProgramNV), - NAME_FUNC_OFFSET(11642, glDeleteProgramsNV, glDeleteProgramsNV, NULL, _gloffset_DeleteProgramsNV), - NAME_FUNC_OFFSET(11661, glExecuteProgramNV, glExecuteProgramNV, NULL, _gloffset_ExecuteProgramNV), - NAME_FUNC_OFFSET(11680, glGenProgramsNV, glGenProgramsNV, NULL, _gloffset_GenProgramsNV), - NAME_FUNC_OFFSET(11696, glGetProgramParameterdvNV, glGetProgramParameterdvNV, NULL, _gloffset_GetProgramParameterdvNV), - NAME_FUNC_OFFSET(11722, glGetProgramParameterfvNV, glGetProgramParameterfvNV, NULL, _gloffset_GetProgramParameterfvNV), - NAME_FUNC_OFFSET(11748, glGetProgramStringNV, glGetProgramStringNV, NULL, _gloffset_GetProgramStringNV), - NAME_FUNC_OFFSET(11769, glGetProgramivNV, glGetProgramivNV, NULL, _gloffset_GetProgramivNV), - NAME_FUNC_OFFSET(11786, glGetTrackMatrixivNV, glGetTrackMatrixivNV, NULL, _gloffset_GetTrackMatrixivNV), - NAME_FUNC_OFFSET(11807, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, _gloffset_GetVertexAttribPointervNV), - NAME_FUNC_OFFSET(11835, glGetVertexAttribdvNV, glGetVertexAttribdvNV, NULL, _gloffset_GetVertexAttribdvNV), - NAME_FUNC_OFFSET(11857, glGetVertexAttribfvNV, glGetVertexAttribfvNV, NULL, _gloffset_GetVertexAttribfvNV), - NAME_FUNC_OFFSET(11879, glGetVertexAttribivNV, glGetVertexAttribivNV, NULL, _gloffset_GetVertexAttribivNV), - NAME_FUNC_OFFSET(11901, glIsProgramNV, glIsProgramNV, NULL, _gloffset_IsProgramNV), - NAME_FUNC_OFFSET(11915, glLoadProgramNV, glLoadProgramNV, NULL, _gloffset_LoadProgramNV), - NAME_FUNC_OFFSET(11931, glProgramParameters4dvNV, glProgramParameters4dvNV, NULL, _gloffset_ProgramParameters4dvNV), - NAME_FUNC_OFFSET(11956, glProgramParameters4fvNV, glProgramParameters4fvNV, NULL, _gloffset_ProgramParameters4fvNV), - NAME_FUNC_OFFSET(11981, glRequestResidentProgramsNV, glRequestResidentProgramsNV, NULL, _gloffset_RequestResidentProgramsNV), - NAME_FUNC_OFFSET(12009, glTrackMatrixNV, glTrackMatrixNV, NULL, _gloffset_TrackMatrixNV), - NAME_FUNC_OFFSET(12025, glVertexAttrib1dNV, glVertexAttrib1dNV, NULL, _gloffset_VertexAttrib1dNV), - NAME_FUNC_OFFSET(12044, glVertexAttrib1dvNV, glVertexAttrib1dvNV, NULL, _gloffset_VertexAttrib1dvNV), - NAME_FUNC_OFFSET(12064, glVertexAttrib1fNV, glVertexAttrib1fNV, NULL, _gloffset_VertexAttrib1fNV), - NAME_FUNC_OFFSET(12083, glVertexAttrib1fvNV, glVertexAttrib1fvNV, NULL, _gloffset_VertexAttrib1fvNV), - NAME_FUNC_OFFSET(12103, glVertexAttrib1sNV, glVertexAttrib1sNV, NULL, _gloffset_VertexAttrib1sNV), - NAME_FUNC_OFFSET(12122, glVertexAttrib1svNV, glVertexAttrib1svNV, NULL, _gloffset_VertexAttrib1svNV), - NAME_FUNC_OFFSET(12142, glVertexAttrib2dNV, glVertexAttrib2dNV, NULL, _gloffset_VertexAttrib2dNV), - NAME_FUNC_OFFSET(12161, glVertexAttrib2dvNV, glVertexAttrib2dvNV, NULL, _gloffset_VertexAttrib2dvNV), - NAME_FUNC_OFFSET(12181, glVertexAttrib2fNV, glVertexAttrib2fNV, NULL, _gloffset_VertexAttrib2fNV), - NAME_FUNC_OFFSET(12200, glVertexAttrib2fvNV, glVertexAttrib2fvNV, NULL, _gloffset_VertexAttrib2fvNV), - NAME_FUNC_OFFSET(12220, glVertexAttrib2sNV, glVertexAttrib2sNV, NULL, _gloffset_VertexAttrib2sNV), - NAME_FUNC_OFFSET(12239, glVertexAttrib2svNV, glVertexAttrib2svNV, NULL, _gloffset_VertexAttrib2svNV), - NAME_FUNC_OFFSET(12259, glVertexAttrib3dNV, glVertexAttrib3dNV, NULL, _gloffset_VertexAttrib3dNV), - NAME_FUNC_OFFSET(12278, glVertexAttrib3dvNV, glVertexAttrib3dvNV, NULL, _gloffset_VertexAttrib3dvNV), - NAME_FUNC_OFFSET(12298, glVertexAttrib3fNV, glVertexAttrib3fNV, NULL, _gloffset_VertexAttrib3fNV), - NAME_FUNC_OFFSET(12317, glVertexAttrib3fvNV, glVertexAttrib3fvNV, NULL, _gloffset_VertexAttrib3fvNV), - NAME_FUNC_OFFSET(12337, glVertexAttrib3sNV, glVertexAttrib3sNV, NULL, _gloffset_VertexAttrib3sNV), - NAME_FUNC_OFFSET(12356, glVertexAttrib3svNV, glVertexAttrib3svNV, NULL, _gloffset_VertexAttrib3svNV), - NAME_FUNC_OFFSET(12376, glVertexAttrib4dNV, glVertexAttrib4dNV, NULL, _gloffset_VertexAttrib4dNV), - NAME_FUNC_OFFSET(12395, glVertexAttrib4dvNV, glVertexAttrib4dvNV, NULL, _gloffset_VertexAttrib4dvNV), - NAME_FUNC_OFFSET(12415, glVertexAttrib4fNV, glVertexAttrib4fNV, NULL, _gloffset_VertexAttrib4fNV), - NAME_FUNC_OFFSET(12434, glVertexAttrib4fvNV, glVertexAttrib4fvNV, NULL, _gloffset_VertexAttrib4fvNV), - NAME_FUNC_OFFSET(12454, glVertexAttrib4sNV, glVertexAttrib4sNV, NULL, _gloffset_VertexAttrib4sNV), - NAME_FUNC_OFFSET(12473, glVertexAttrib4svNV, glVertexAttrib4svNV, NULL, _gloffset_VertexAttrib4svNV), - NAME_FUNC_OFFSET(12493, glVertexAttrib4ubNV, glVertexAttrib4ubNV, NULL, _gloffset_VertexAttrib4ubNV), - NAME_FUNC_OFFSET(12513, glVertexAttrib4ubvNV, glVertexAttrib4ubvNV, NULL, _gloffset_VertexAttrib4ubvNV), - NAME_FUNC_OFFSET(12534, glVertexAttribPointerNV, glVertexAttribPointerNV, NULL, _gloffset_VertexAttribPointerNV), - NAME_FUNC_OFFSET(12558, glVertexAttribs1dvNV, glVertexAttribs1dvNV, NULL, _gloffset_VertexAttribs1dvNV), - NAME_FUNC_OFFSET(12579, glVertexAttribs1fvNV, glVertexAttribs1fvNV, NULL, _gloffset_VertexAttribs1fvNV), - NAME_FUNC_OFFSET(12600, glVertexAttribs1svNV, glVertexAttribs1svNV, NULL, _gloffset_VertexAttribs1svNV), - NAME_FUNC_OFFSET(12621, glVertexAttribs2dvNV, glVertexAttribs2dvNV, NULL, _gloffset_VertexAttribs2dvNV), - NAME_FUNC_OFFSET(12642, glVertexAttribs2fvNV, glVertexAttribs2fvNV, NULL, _gloffset_VertexAttribs2fvNV), - NAME_FUNC_OFFSET(12663, glVertexAttribs2svNV, glVertexAttribs2svNV, NULL, _gloffset_VertexAttribs2svNV), - NAME_FUNC_OFFSET(12684, glVertexAttribs3dvNV, glVertexAttribs3dvNV, NULL, _gloffset_VertexAttribs3dvNV), - NAME_FUNC_OFFSET(12705, glVertexAttribs3fvNV, glVertexAttribs3fvNV, NULL, _gloffset_VertexAttribs3fvNV), - NAME_FUNC_OFFSET(12726, glVertexAttribs3svNV, glVertexAttribs3svNV, NULL, _gloffset_VertexAttribs3svNV), - NAME_FUNC_OFFSET(12747, glVertexAttribs4dvNV, glVertexAttribs4dvNV, NULL, _gloffset_VertexAttribs4dvNV), - NAME_FUNC_OFFSET(12768, glVertexAttribs4fvNV, glVertexAttribs4fvNV, NULL, _gloffset_VertexAttribs4fvNV), - NAME_FUNC_OFFSET(12789, glVertexAttribs4svNV, glVertexAttribs4svNV, NULL, _gloffset_VertexAttribs4svNV), - NAME_FUNC_OFFSET(12810, glVertexAttribs4ubvNV, glVertexAttribs4ubvNV, NULL, _gloffset_VertexAttribs4ubvNV), - NAME_FUNC_OFFSET(12832, glGetTexBumpParameterfvATI, glGetTexBumpParameterfvATI, NULL, _gloffset_GetTexBumpParameterfvATI), - NAME_FUNC_OFFSET(12859, glGetTexBumpParameterivATI, glGetTexBumpParameterivATI, NULL, _gloffset_GetTexBumpParameterivATI), - NAME_FUNC_OFFSET(12886, glTexBumpParameterfvATI, glTexBumpParameterfvATI, NULL, _gloffset_TexBumpParameterfvATI), - NAME_FUNC_OFFSET(12910, glTexBumpParameterivATI, glTexBumpParameterivATI, NULL, _gloffset_TexBumpParameterivATI), - NAME_FUNC_OFFSET(12934, glAlphaFragmentOp1ATI, glAlphaFragmentOp1ATI, NULL, _gloffset_AlphaFragmentOp1ATI), - NAME_FUNC_OFFSET(12956, glAlphaFragmentOp2ATI, glAlphaFragmentOp2ATI, NULL, _gloffset_AlphaFragmentOp2ATI), - NAME_FUNC_OFFSET(12978, glAlphaFragmentOp3ATI, glAlphaFragmentOp3ATI, NULL, _gloffset_AlphaFragmentOp3ATI), - NAME_FUNC_OFFSET(13000, glBeginFragmentShaderATI, glBeginFragmentShaderATI, NULL, _gloffset_BeginFragmentShaderATI), - NAME_FUNC_OFFSET(13025, glBindFragmentShaderATI, glBindFragmentShaderATI, NULL, _gloffset_BindFragmentShaderATI), - NAME_FUNC_OFFSET(13049, glColorFragmentOp1ATI, glColorFragmentOp1ATI, NULL, _gloffset_ColorFragmentOp1ATI), - NAME_FUNC_OFFSET(13071, glColorFragmentOp2ATI, glColorFragmentOp2ATI, NULL, _gloffset_ColorFragmentOp2ATI), - NAME_FUNC_OFFSET(13093, glColorFragmentOp3ATI, glColorFragmentOp3ATI, NULL, _gloffset_ColorFragmentOp3ATI), - NAME_FUNC_OFFSET(13115, glDeleteFragmentShaderATI, glDeleteFragmentShaderATI, NULL, _gloffset_DeleteFragmentShaderATI), - NAME_FUNC_OFFSET(13141, glEndFragmentShaderATI, glEndFragmentShaderATI, NULL, _gloffset_EndFragmentShaderATI), - NAME_FUNC_OFFSET(13164, glGenFragmentShadersATI, glGenFragmentShadersATI, NULL, _gloffset_GenFragmentShadersATI), - NAME_FUNC_OFFSET(13188, glPassTexCoordATI, glPassTexCoordATI, NULL, _gloffset_PassTexCoordATI), - NAME_FUNC_OFFSET(13206, glSampleMapATI, glSampleMapATI, NULL, _gloffset_SampleMapATI), - NAME_FUNC_OFFSET(13221, glSetFragmentShaderConstantATI, glSetFragmentShaderConstantATI, NULL, _gloffset_SetFragmentShaderConstantATI), - NAME_FUNC_OFFSET(13252, glPointParameteriNV, glPointParameteriNV, NULL, _gloffset_PointParameteriNV), - NAME_FUNC_OFFSET(13272, glPointParameterivNV, glPointParameterivNV, NULL, _gloffset_PointParameterivNV), - NAME_FUNC_OFFSET(13293, gl_dispatch_stub_765, gl_dispatch_stub_765, NULL, _gloffset_ActiveStencilFaceEXT), - NAME_FUNC_OFFSET(13316, gl_dispatch_stub_766, gl_dispatch_stub_766, NULL, _gloffset_BindVertexArrayAPPLE), - NAME_FUNC_OFFSET(13339, gl_dispatch_stub_767, gl_dispatch_stub_767, NULL, _gloffset_DeleteVertexArraysAPPLE), - NAME_FUNC_OFFSET(13365, gl_dispatch_stub_768, gl_dispatch_stub_768, NULL, _gloffset_GenVertexArraysAPPLE), - NAME_FUNC_OFFSET(13388, gl_dispatch_stub_769, gl_dispatch_stub_769, NULL, _gloffset_IsVertexArrayAPPLE), - NAME_FUNC_OFFSET(13409, glGetProgramNamedParameterdvNV, glGetProgramNamedParameterdvNV, NULL, _gloffset_GetProgramNamedParameterdvNV), - NAME_FUNC_OFFSET(13440, glGetProgramNamedParameterfvNV, glGetProgramNamedParameterfvNV, NULL, _gloffset_GetProgramNamedParameterfvNV), - NAME_FUNC_OFFSET(13471, glProgramNamedParameter4dNV, glProgramNamedParameter4dNV, NULL, _gloffset_ProgramNamedParameter4dNV), - NAME_FUNC_OFFSET(13499, glProgramNamedParameter4dvNV, glProgramNamedParameter4dvNV, NULL, _gloffset_ProgramNamedParameter4dvNV), - NAME_FUNC_OFFSET(13528, glProgramNamedParameter4fNV, glProgramNamedParameter4fNV, NULL, _gloffset_ProgramNamedParameter4fNV), - NAME_FUNC_OFFSET(13556, glProgramNamedParameter4fvNV, glProgramNamedParameter4fvNV, NULL, _gloffset_ProgramNamedParameter4fvNV), - NAME_FUNC_OFFSET(13585, gl_dispatch_stub_776, gl_dispatch_stub_776, NULL, _gloffset_DepthBoundsEXT), - NAME_FUNC_OFFSET(13602, gl_dispatch_stub_777, gl_dispatch_stub_777, NULL, _gloffset_BlendEquationSeparateEXT), - NAME_FUNC_OFFSET(13629, glBindFramebufferEXT, glBindFramebufferEXT, NULL, _gloffset_BindFramebufferEXT), - NAME_FUNC_OFFSET(13650, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, _gloffset_BindRenderbufferEXT), - NAME_FUNC_OFFSET(13672, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, _gloffset_CheckFramebufferStatusEXT), - NAME_FUNC_OFFSET(13700, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, _gloffset_DeleteFramebuffersEXT), - NAME_FUNC_OFFSET(13724, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, _gloffset_DeleteRenderbuffersEXT), - NAME_FUNC_OFFSET(13749, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, _gloffset_FramebufferRenderbufferEXT), - NAME_FUNC_OFFSET(13778, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, _gloffset_FramebufferTexture1DEXT), - NAME_FUNC_OFFSET(13804, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, _gloffset_FramebufferTexture2DEXT), - NAME_FUNC_OFFSET(13830, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, _gloffset_FramebufferTexture3DEXT), - NAME_FUNC_OFFSET(13856, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, _gloffset_GenFramebuffersEXT), - NAME_FUNC_OFFSET(13877, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, _gloffset_GenRenderbuffersEXT), - NAME_FUNC_OFFSET(13899, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, _gloffset_GenerateMipmapEXT), - NAME_FUNC_OFFSET(13919, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, _gloffset_GetFramebufferAttachmentParameterivEXT), - NAME_FUNC_OFFSET(13960, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, _gloffset_GetRenderbufferParameterivEXT), - NAME_FUNC_OFFSET(13992, glIsFramebufferEXT, glIsFramebufferEXT, NULL, _gloffset_IsFramebufferEXT), - NAME_FUNC_OFFSET(14011, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, _gloffset_IsRenderbufferEXT), - NAME_FUNC_OFFSET(14031, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, _gloffset_RenderbufferStorageEXT), - NAME_FUNC_OFFSET(14056, gl_dispatch_stub_795, gl_dispatch_stub_795, NULL, _gloffset_BlitFramebufferEXT), - NAME_FUNC_OFFSET(14077, gl_dispatch_stub_796, gl_dispatch_stub_796, NULL, _gloffset_BufferParameteriAPPLE), - NAME_FUNC_OFFSET(14101, gl_dispatch_stub_797, gl_dispatch_stub_797, NULL, _gloffset_FlushMappedBufferRangeAPPLE), - NAME_FUNC_OFFSET(14131, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, _gloffset_FramebufferTextureLayerEXT), - NAME_FUNC_OFFSET(14160, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, _gloffset_ColorMaskIndexedEXT), - NAME_FUNC_OFFSET(14182, glDisableIndexedEXT, glDisableIndexedEXT, NULL, _gloffset_DisableIndexedEXT), - NAME_FUNC_OFFSET(14202, glEnableIndexedEXT, glEnableIndexedEXT, NULL, _gloffset_EnableIndexedEXT), - NAME_FUNC_OFFSET(14221, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, _gloffset_GetBooleanIndexedvEXT), - NAME_FUNC_OFFSET(14245, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, _gloffset_GetIntegerIndexedvEXT), - NAME_FUNC_OFFSET(14269, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, _gloffset_IsEnabledIndexedEXT), - NAME_FUNC_OFFSET(14291, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, _gloffset_BeginConditionalRenderNV), - NAME_FUNC_OFFSET(14318, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, _gloffset_EndConditionalRenderNV), - NAME_FUNC_OFFSET(14343, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, _gloffset_BeginTransformFeedbackEXT), - NAME_FUNC_OFFSET(14371, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, _gloffset_BindBufferBaseEXT), - NAME_FUNC_OFFSET(14391, glBindBufferOffsetEXT, glBindBufferOffsetEXT, NULL, _gloffset_BindBufferOffsetEXT), - NAME_FUNC_OFFSET(14413, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, _gloffset_BindBufferRangeEXT), - NAME_FUNC_OFFSET(14434, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, _gloffset_EndTransformFeedbackEXT), - NAME_FUNC_OFFSET(14460, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, _gloffset_GetTransformFeedbackVaryingEXT), - NAME_FUNC_OFFSET(14493, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, _gloffset_TransformFeedbackVaryingsEXT), - NAME_FUNC_OFFSET(14524, glProvokingVertexEXT, glProvokingVertexEXT, NULL, _gloffset_ProvokingVertexEXT), - NAME_FUNC_OFFSET(14545, gl_dispatch_stub_815, gl_dispatch_stub_815, NULL, _gloffset_GetTexParameterPointervAPPLE), - NAME_FUNC_OFFSET(14576, gl_dispatch_stub_816, gl_dispatch_stub_816, NULL, _gloffset_TextureRangeAPPLE), - NAME_FUNC_OFFSET(14596, glGetObjectParameterivAPPLE, glGetObjectParameterivAPPLE, NULL, _gloffset_GetObjectParameterivAPPLE), - NAME_FUNC_OFFSET(14624, glObjectPurgeableAPPLE, glObjectPurgeableAPPLE, NULL, _gloffset_ObjectPurgeableAPPLE), - NAME_FUNC_OFFSET(14647, glObjectUnpurgeableAPPLE, glObjectUnpurgeableAPPLE, NULL, _gloffset_ObjectUnpurgeableAPPLE), - NAME_FUNC_OFFSET(14672, gl_dispatch_stub_820, gl_dispatch_stub_820, NULL, _gloffset_StencilFuncSeparateATI), - NAME_FUNC_OFFSET(14697, gl_dispatch_stub_821, gl_dispatch_stub_821, NULL, _gloffset_ProgramEnvParameters4fvEXT), - NAME_FUNC_OFFSET(14726, gl_dispatch_stub_822, gl_dispatch_stub_822, NULL, _gloffset_ProgramLocalParameters4fvEXT), - NAME_FUNC_OFFSET(14757, gl_dispatch_stub_823, gl_dispatch_stub_823, NULL, _gloffset_GetQueryObjecti64vEXT), - NAME_FUNC_OFFSET(14781, gl_dispatch_stub_824, gl_dispatch_stub_824, NULL, _gloffset_GetQueryObjectui64vEXT), - NAME_FUNC_OFFSET(14806, glEGLImageTargetRenderbufferStorageOES, glEGLImageTargetRenderbufferStorageOES, NULL, _gloffset_EGLImageTargetRenderbufferStorageOES), - NAME_FUNC_OFFSET(14845, glEGLImageTargetTexture2DOES, glEGLImageTargetTexture2DOES, NULL, _gloffset_EGLImageTargetTexture2DOES), - NAME_FUNC_OFFSET(14874, glArrayElement, glArrayElement, NULL, _gloffset_ArrayElement), - NAME_FUNC_OFFSET(14892, glBindTexture, glBindTexture, NULL, _gloffset_BindTexture), - NAME_FUNC_OFFSET(14909, glDrawArrays, glDrawArrays, NULL, _gloffset_DrawArrays), - NAME_FUNC_OFFSET(14925, glAreTexturesResident, glAreTexturesResidentEXT, glAreTexturesResidentEXT, _gloffset_AreTexturesResident), - NAME_FUNC_OFFSET(14950, glCopyTexImage1D, glCopyTexImage1D, NULL, _gloffset_CopyTexImage1D), - NAME_FUNC_OFFSET(14970, glCopyTexImage2D, glCopyTexImage2D, NULL, _gloffset_CopyTexImage2D), - NAME_FUNC_OFFSET(14990, glCopyTexSubImage1D, glCopyTexSubImage1D, NULL, _gloffset_CopyTexSubImage1D), - NAME_FUNC_OFFSET(15013, glCopyTexSubImage2D, glCopyTexSubImage2D, NULL, _gloffset_CopyTexSubImage2D), - NAME_FUNC_OFFSET(15036, glDeleteTextures, glDeleteTexturesEXT, glDeleteTexturesEXT, _gloffset_DeleteTextures), - NAME_FUNC_OFFSET(15056, glGenTextures, glGenTexturesEXT, glGenTexturesEXT, _gloffset_GenTextures), - NAME_FUNC_OFFSET(15073, glGetPointerv, glGetPointerv, NULL, _gloffset_GetPointerv), - NAME_FUNC_OFFSET(15090, glIsTexture, glIsTextureEXT, glIsTextureEXT, _gloffset_IsTexture), - NAME_FUNC_OFFSET(15105, glPrioritizeTextures, glPrioritizeTextures, NULL, _gloffset_PrioritizeTextures), - NAME_FUNC_OFFSET(15129, glTexSubImage1D, glTexSubImage1D, NULL, _gloffset_TexSubImage1D), - NAME_FUNC_OFFSET(15148, glTexSubImage2D, glTexSubImage2D, NULL, _gloffset_TexSubImage2D), - NAME_FUNC_OFFSET(15167, glBlendColor, glBlendColor, NULL, _gloffset_BlendColor), - NAME_FUNC_OFFSET(15183, glBlendEquation, glBlendEquation, NULL, _gloffset_BlendEquation), - NAME_FUNC_OFFSET(15202, glDrawRangeElements, glDrawRangeElements, NULL, _gloffset_DrawRangeElements), - NAME_FUNC_OFFSET(15225, glColorTable, glColorTable, NULL, _gloffset_ColorTable), + NAME_FUNC_OFFSET( 8997, glClampColorARB, glClampColorARB, NULL, _gloffset_ClampColorARB), + NAME_FUNC_OFFSET( 9013, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, _gloffset_RenderbufferStorageMultisample), + NAME_FUNC_OFFSET( 9046, glFramebufferTextureARB, glFramebufferTextureARB, NULL, _gloffset_FramebufferTextureARB), + NAME_FUNC_OFFSET( 9070, glFramebufferTextureFaceARB, glFramebufferTextureFaceARB, NULL, _gloffset_FramebufferTextureFaceARB), + NAME_FUNC_OFFSET( 9098, glProgramParameteriARB, glProgramParameteriARB, NULL, _gloffset_ProgramParameteriARB), + NAME_FUNC_OFFSET( 9121, glFlushMappedBufferRange, glFlushMappedBufferRange, NULL, _gloffset_FlushMappedBufferRange), + NAME_FUNC_OFFSET( 9146, glMapBufferRange, glMapBufferRange, NULL, _gloffset_MapBufferRange), + NAME_FUNC_OFFSET( 9163, glBindVertexArray, glBindVertexArray, NULL, _gloffset_BindVertexArray), + NAME_FUNC_OFFSET( 9181, glGenVertexArrays, glGenVertexArrays, NULL, _gloffset_GenVertexArrays), + NAME_FUNC_OFFSET( 9199, glCopyBufferSubData, glCopyBufferSubData, NULL, _gloffset_CopyBufferSubData), + NAME_FUNC_OFFSET( 9219, glClientWaitSync, glClientWaitSync, NULL, _gloffset_ClientWaitSync), + NAME_FUNC_OFFSET( 9236, glDeleteSync, glDeleteSync, NULL, _gloffset_DeleteSync), + NAME_FUNC_OFFSET( 9249, glFenceSync, glFenceSync, NULL, _gloffset_FenceSync), + NAME_FUNC_OFFSET( 9261, glGetInteger64v, glGetInteger64v, NULL, _gloffset_GetInteger64v), + NAME_FUNC_OFFSET( 9277, glGetSynciv, glGetSynciv, NULL, _gloffset_GetSynciv), + NAME_FUNC_OFFSET( 9289, glIsSync, glIsSync, NULL, _gloffset_IsSync), + NAME_FUNC_OFFSET( 9298, glWaitSync, glWaitSync, NULL, _gloffset_WaitSync), + NAME_FUNC_OFFSET( 9309, glDrawElementsBaseVertex, glDrawElementsBaseVertex, NULL, _gloffset_DrawElementsBaseVertex), + NAME_FUNC_OFFSET( 9334, glDrawRangeElementsBaseVertex, glDrawRangeElementsBaseVertex, NULL, _gloffset_DrawRangeElementsBaseVertex), + NAME_FUNC_OFFSET( 9364, glMultiDrawElementsBaseVertex, glMultiDrawElementsBaseVertex, NULL, _gloffset_MultiDrawElementsBaseVertex), + NAME_FUNC_OFFSET( 9394, glBindTransformFeedback, glBindTransformFeedback, NULL, _gloffset_BindTransformFeedback), + NAME_FUNC_OFFSET( 9418, glDeleteTransformFeedbacks, glDeleteTransformFeedbacks, NULL, _gloffset_DeleteTransformFeedbacks), + NAME_FUNC_OFFSET( 9445, glDrawTransformFeedback, glDrawTransformFeedback, NULL, _gloffset_DrawTransformFeedback), + NAME_FUNC_OFFSET( 9469, glGenTransformFeedbacks, glGenTransformFeedbacks, NULL, _gloffset_GenTransformFeedbacks), + NAME_FUNC_OFFSET( 9493, glIsTransformFeedback, glIsTransformFeedback, NULL, _gloffset_IsTransformFeedback), + NAME_FUNC_OFFSET( 9515, glPauseTransformFeedback, glPauseTransformFeedback, NULL, _gloffset_PauseTransformFeedback), + NAME_FUNC_OFFSET( 9540, glResumeTransformFeedback, glResumeTransformFeedback, NULL, _gloffset_ResumeTransformFeedback), + NAME_FUNC_OFFSET( 9566, glPolygonOffsetEXT, glPolygonOffsetEXT, NULL, _gloffset_PolygonOffsetEXT), + NAME_FUNC_OFFSET( 9585, gl_dispatch_stub_591, gl_dispatch_stub_591, NULL, _gloffset_GetPixelTexGenParameterfvSGIS), + NAME_FUNC_OFFSET( 9617, gl_dispatch_stub_592, gl_dispatch_stub_592, NULL, _gloffset_GetPixelTexGenParameterivSGIS), + NAME_FUNC_OFFSET( 9649, gl_dispatch_stub_593, gl_dispatch_stub_593, NULL, _gloffset_PixelTexGenParameterfSGIS), + NAME_FUNC_OFFSET( 9677, gl_dispatch_stub_594, gl_dispatch_stub_594, NULL, _gloffset_PixelTexGenParameterfvSGIS), + NAME_FUNC_OFFSET( 9706, gl_dispatch_stub_595, gl_dispatch_stub_595, NULL, _gloffset_PixelTexGenParameteriSGIS), + NAME_FUNC_OFFSET( 9734, gl_dispatch_stub_596, gl_dispatch_stub_596, NULL, _gloffset_PixelTexGenParameterivSGIS), + NAME_FUNC_OFFSET( 9763, gl_dispatch_stub_597, gl_dispatch_stub_597, NULL, _gloffset_SampleMaskSGIS), + NAME_FUNC_OFFSET( 9780, gl_dispatch_stub_598, gl_dispatch_stub_598, NULL, _gloffset_SamplePatternSGIS), + NAME_FUNC_OFFSET( 9800, glColorPointerEXT, glColorPointerEXT, NULL, _gloffset_ColorPointerEXT), + NAME_FUNC_OFFSET( 9818, glEdgeFlagPointerEXT, glEdgeFlagPointerEXT, NULL, _gloffset_EdgeFlagPointerEXT), + NAME_FUNC_OFFSET( 9839, glIndexPointerEXT, glIndexPointerEXT, NULL, _gloffset_IndexPointerEXT), + NAME_FUNC_OFFSET( 9857, glNormalPointerEXT, glNormalPointerEXT, NULL, _gloffset_NormalPointerEXT), + NAME_FUNC_OFFSET( 9876, glTexCoordPointerEXT, glTexCoordPointerEXT, NULL, _gloffset_TexCoordPointerEXT), + NAME_FUNC_OFFSET( 9897, glVertexPointerEXT, glVertexPointerEXT, NULL, _gloffset_VertexPointerEXT), + NAME_FUNC_OFFSET( 9916, glPointParameterfEXT, glPointParameterfEXT, NULL, _gloffset_PointParameterfEXT), + NAME_FUNC_OFFSET( 9937, glPointParameterfvEXT, glPointParameterfvEXT, NULL, _gloffset_PointParameterfvEXT), + NAME_FUNC_OFFSET( 9959, glLockArraysEXT, glLockArraysEXT, NULL, _gloffset_LockArraysEXT), + NAME_FUNC_OFFSET( 9975, glUnlockArraysEXT, glUnlockArraysEXT, NULL, _gloffset_UnlockArraysEXT), + NAME_FUNC_OFFSET( 9993, gl_dispatch_stub_609, gl_dispatch_stub_609, NULL, _gloffset_CullParameterdvEXT), + NAME_FUNC_OFFSET(10014, gl_dispatch_stub_610, gl_dispatch_stub_610, NULL, _gloffset_CullParameterfvEXT), + NAME_FUNC_OFFSET(10035, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, _gloffset_SecondaryColor3bEXT), + NAME_FUNC_OFFSET(10057, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, _gloffset_SecondaryColor3bvEXT), + NAME_FUNC_OFFSET(10080, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, _gloffset_SecondaryColor3dEXT), + NAME_FUNC_OFFSET(10102, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, _gloffset_SecondaryColor3dvEXT), + NAME_FUNC_OFFSET(10125, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, _gloffset_SecondaryColor3fEXT), + NAME_FUNC_OFFSET(10147, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, _gloffset_SecondaryColor3fvEXT), + NAME_FUNC_OFFSET(10170, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, _gloffset_SecondaryColor3iEXT), + NAME_FUNC_OFFSET(10192, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, _gloffset_SecondaryColor3ivEXT), + NAME_FUNC_OFFSET(10215, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, _gloffset_SecondaryColor3sEXT), + NAME_FUNC_OFFSET(10237, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, _gloffset_SecondaryColor3svEXT), + NAME_FUNC_OFFSET(10260, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, _gloffset_SecondaryColor3ubEXT), + NAME_FUNC_OFFSET(10283, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, _gloffset_SecondaryColor3ubvEXT), + NAME_FUNC_OFFSET(10307, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, _gloffset_SecondaryColor3uiEXT), + NAME_FUNC_OFFSET(10330, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, _gloffset_SecondaryColor3uivEXT), + NAME_FUNC_OFFSET(10354, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, _gloffset_SecondaryColor3usEXT), + NAME_FUNC_OFFSET(10377, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, _gloffset_SecondaryColor3usvEXT), + NAME_FUNC_OFFSET(10401, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, _gloffset_SecondaryColorPointerEXT), + NAME_FUNC_OFFSET(10428, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, _gloffset_MultiDrawArraysEXT), + NAME_FUNC_OFFSET(10449, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, _gloffset_MultiDrawElementsEXT), + NAME_FUNC_OFFSET(10472, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, _gloffset_FogCoordPointerEXT), + NAME_FUNC_OFFSET(10493, glFogCoorddEXT, glFogCoorddEXT, NULL, _gloffset_FogCoorddEXT), + NAME_FUNC_OFFSET(10508, glFogCoorddvEXT, glFogCoorddvEXT, NULL, _gloffset_FogCoorddvEXT), + NAME_FUNC_OFFSET(10524, glFogCoordfEXT, glFogCoordfEXT, NULL, _gloffset_FogCoordfEXT), + NAME_FUNC_OFFSET(10539, glFogCoordfvEXT, glFogCoordfvEXT, NULL, _gloffset_FogCoordfvEXT), + NAME_FUNC_OFFSET(10555, gl_dispatch_stub_635, gl_dispatch_stub_635, NULL, _gloffset_PixelTexGenSGIX), + NAME_FUNC_OFFSET(10573, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, _gloffset_BlendFuncSeparateEXT), + NAME_FUNC_OFFSET(10596, glFlushVertexArrayRangeNV, glFlushVertexArrayRangeNV, NULL, _gloffset_FlushVertexArrayRangeNV), + NAME_FUNC_OFFSET(10622, glVertexArrayRangeNV, glVertexArrayRangeNV, NULL, _gloffset_VertexArrayRangeNV), + NAME_FUNC_OFFSET(10643, glCombinerInputNV, glCombinerInputNV, NULL, _gloffset_CombinerInputNV), + NAME_FUNC_OFFSET(10661, glCombinerOutputNV, glCombinerOutputNV, NULL, _gloffset_CombinerOutputNV), + NAME_FUNC_OFFSET(10680, glCombinerParameterfNV, glCombinerParameterfNV, NULL, _gloffset_CombinerParameterfNV), + NAME_FUNC_OFFSET(10703, glCombinerParameterfvNV, glCombinerParameterfvNV, NULL, _gloffset_CombinerParameterfvNV), + NAME_FUNC_OFFSET(10727, glCombinerParameteriNV, glCombinerParameteriNV, NULL, _gloffset_CombinerParameteriNV), + NAME_FUNC_OFFSET(10750, glCombinerParameterivNV, glCombinerParameterivNV, NULL, _gloffset_CombinerParameterivNV), + NAME_FUNC_OFFSET(10774, glFinalCombinerInputNV, glFinalCombinerInputNV, NULL, _gloffset_FinalCombinerInputNV), + NAME_FUNC_OFFSET(10797, glGetCombinerInputParameterfvNV, glGetCombinerInputParameterfvNV, NULL, _gloffset_GetCombinerInputParameterfvNV), + NAME_FUNC_OFFSET(10829, glGetCombinerInputParameterivNV, glGetCombinerInputParameterivNV, NULL, _gloffset_GetCombinerInputParameterivNV), + NAME_FUNC_OFFSET(10861, glGetCombinerOutputParameterfvNV, glGetCombinerOutputParameterfvNV, NULL, _gloffset_GetCombinerOutputParameterfvNV), + NAME_FUNC_OFFSET(10894, glGetCombinerOutputParameterivNV, glGetCombinerOutputParameterivNV, NULL, _gloffset_GetCombinerOutputParameterivNV), + NAME_FUNC_OFFSET(10927, glGetFinalCombinerInputParameterfvNV, glGetFinalCombinerInputParameterfvNV, NULL, _gloffset_GetFinalCombinerInputParameterfvNV), + NAME_FUNC_OFFSET(10964, glGetFinalCombinerInputParameterivNV, glGetFinalCombinerInputParameterivNV, NULL, _gloffset_GetFinalCombinerInputParameterivNV), + NAME_FUNC_OFFSET(11001, glResizeBuffersMESA, glResizeBuffersMESA, NULL, _gloffset_ResizeBuffersMESA), + NAME_FUNC_OFFSET(11021, glWindowPos2dMESA, glWindowPos2dMESA, NULL, _gloffset_WindowPos2dMESA), + NAME_FUNC_OFFSET(11039, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, _gloffset_WindowPos2dvMESA), + NAME_FUNC_OFFSET(11058, glWindowPos2fMESA, glWindowPos2fMESA, NULL, _gloffset_WindowPos2fMESA), + NAME_FUNC_OFFSET(11076, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, _gloffset_WindowPos2fvMESA), + NAME_FUNC_OFFSET(11095, glWindowPos2iMESA, glWindowPos2iMESA, NULL, _gloffset_WindowPos2iMESA), + NAME_FUNC_OFFSET(11113, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, _gloffset_WindowPos2ivMESA), + NAME_FUNC_OFFSET(11132, glWindowPos2sMESA, glWindowPos2sMESA, NULL, _gloffset_WindowPos2sMESA), + NAME_FUNC_OFFSET(11150, glWindowPos2svMESA, glWindowPos2svMESA, NULL, _gloffset_WindowPos2svMESA), + NAME_FUNC_OFFSET(11169, glWindowPos3dMESA, glWindowPos3dMESA, NULL, _gloffset_WindowPos3dMESA), + NAME_FUNC_OFFSET(11187, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, _gloffset_WindowPos3dvMESA), + NAME_FUNC_OFFSET(11206, glWindowPos3fMESA, glWindowPos3fMESA, NULL, _gloffset_WindowPos3fMESA), + NAME_FUNC_OFFSET(11224, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, _gloffset_WindowPos3fvMESA), + NAME_FUNC_OFFSET(11243, glWindowPos3iMESA, glWindowPos3iMESA, NULL, _gloffset_WindowPos3iMESA), + NAME_FUNC_OFFSET(11261, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, _gloffset_WindowPos3ivMESA), + NAME_FUNC_OFFSET(11280, glWindowPos3sMESA, glWindowPos3sMESA, NULL, _gloffset_WindowPos3sMESA), + NAME_FUNC_OFFSET(11298, glWindowPos3svMESA, glWindowPos3svMESA, NULL, _gloffset_WindowPos3svMESA), + NAME_FUNC_OFFSET(11317, glWindowPos4dMESA, glWindowPos4dMESA, NULL, _gloffset_WindowPos4dMESA), + NAME_FUNC_OFFSET(11335, glWindowPos4dvMESA, glWindowPos4dvMESA, NULL, _gloffset_WindowPos4dvMESA), + NAME_FUNC_OFFSET(11354, glWindowPos4fMESA, glWindowPos4fMESA, NULL, _gloffset_WindowPos4fMESA), + NAME_FUNC_OFFSET(11372, glWindowPos4fvMESA, glWindowPos4fvMESA, NULL, _gloffset_WindowPos4fvMESA), + NAME_FUNC_OFFSET(11391, glWindowPos4iMESA, glWindowPos4iMESA, NULL, _gloffset_WindowPos4iMESA), + NAME_FUNC_OFFSET(11409, glWindowPos4ivMESA, glWindowPos4ivMESA, NULL, _gloffset_WindowPos4ivMESA), + NAME_FUNC_OFFSET(11428, glWindowPos4sMESA, glWindowPos4sMESA, NULL, _gloffset_WindowPos4sMESA), + NAME_FUNC_OFFSET(11446, glWindowPos4svMESA, glWindowPos4svMESA, NULL, _gloffset_WindowPos4svMESA), + NAME_FUNC_OFFSET(11465, gl_dispatch_stub_677, gl_dispatch_stub_677, NULL, _gloffset_MultiModeDrawArraysIBM), + NAME_FUNC_OFFSET(11490, gl_dispatch_stub_678, gl_dispatch_stub_678, NULL, _gloffset_MultiModeDrawElementsIBM), + NAME_FUNC_OFFSET(11517, gl_dispatch_stub_679, gl_dispatch_stub_679, NULL, _gloffset_DeleteFencesNV), + NAME_FUNC_OFFSET(11534, gl_dispatch_stub_680, gl_dispatch_stub_680, NULL, _gloffset_FinishFenceNV), + NAME_FUNC_OFFSET(11550, gl_dispatch_stub_681, gl_dispatch_stub_681, NULL, _gloffset_GenFencesNV), + NAME_FUNC_OFFSET(11564, gl_dispatch_stub_682, gl_dispatch_stub_682, NULL, _gloffset_GetFenceivNV), + NAME_FUNC_OFFSET(11579, gl_dispatch_stub_683, gl_dispatch_stub_683, NULL, _gloffset_IsFenceNV), + NAME_FUNC_OFFSET(11591, gl_dispatch_stub_684, gl_dispatch_stub_684, NULL, _gloffset_SetFenceNV), + NAME_FUNC_OFFSET(11604, gl_dispatch_stub_685, gl_dispatch_stub_685, NULL, _gloffset_TestFenceNV), + NAME_FUNC_OFFSET(11618, glAreProgramsResidentNV, glAreProgramsResidentNV, NULL, _gloffset_AreProgramsResidentNV), + NAME_FUNC_OFFSET(11642, glBindProgramNV, glBindProgramNV, NULL, _gloffset_BindProgramNV), + NAME_FUNC_OFFSET(11658, glDeleteProgramsNV, glDeleteProgramsNV, NULL, _gloffset_DeleteProgramsNV), + NAME_FUNC_OFFSET(11677, glExecuteProgramNV, glExecuteProgramNV, NULL, _gloffset_ExecuteProgramNV), + NAME_FUNC_OFFSET(11696, glGenProgramsNV, glGenProgramsNV, NULL, _gloffset_GenProgramsNV), + NAME_FUNC_OFFSET(11712, glGetProgramParameterdvNV, glGetProgramParameterdvNV, NULL, _gloffset_GetProgramParameterdvNV), + NAME_FUNC_OFFSET(11738, glGetProgramParameterfvNV, glGetProgramParameterfvNV, NULL, _gloffset_GetProgramParameterfvNV), + NAME_FUNC_OFFSET(11764, glGetProgramStringNV, glGetProgramStringNV, NULL, _gloffset_GetProgramStringNV), + NAME_FUNC_OFFSET(11785, glGetProgramivNV, glGetProgramivNV, NULL, _gloffset_GetProgramivNV), + NAME_FUNC_OFFSET(11802, glGetTrackMatrixivNV, glGetTrackMatrixivNV, NULL, _gloffset_GetTrackMatrixivNV), + NAME_FUNC_OFFSET(11823, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, _gloffset_GetVertexAttribPointervNV), + NAME_FUNC_OFFSET(11851, glGetVertexAttribdvNV, glGetVertexAttribdvNV, NULL, _gloffset_GetVertexAttribdvNV), + NAME_FUNC_OFFSET(11873, glGetVertexAttribfvNV, glGetVertexAttribfvNV, NULL, _gloffset_GetVertexAttribfvNV), + NAME_FUNC_OFFSET(11895, glGetVertexAttribivNV, glGetVertexAttribivNV, NULL, _gloffset_GetVertexAttribivNV), + NAME_FUNC_OFFSET(11917, glIsProgramNV, glIsProgramNV, NULL, _gloffset_IsProgramNV), + NAME_FUNC_OFFSET(11931, glLoadProgramNV, glLoadProgramNV, NULL, _gloffset_LoadProgramNV), + NAME_FUNC_OFFSET(11947, glProgramParameters4dvNV, glProgramParameters4dvNV, NULL, _gloffset_ProgramParameters4dvNV), + NAME_FUNC_OFFSET(11972, glProgramParameters4fvNV, glProgramParameters4fvNV, NULL, _gloffset_ProgramParameters4fvNV), + NAME_FUNC_OFFSET(11997, glRequestResidentProgramsNV, glRequestResidentProgramsNV, NULL, _gloffset_RequestResidentProgramsNV), + NAME_FUNC_OFFSET(12025, glTrackMatrixNV, glTrackMatrixNV, NULL, _gloffset_TrackMatrixNV), + NAME_FUNC_OFFSET(12041, glVertexAttrib1dNV, glVertexAttrib1dNV, NULL, _gloffset_VertexAttrib1dNV), + NAME_FUNC_OFFSET(12060, glVertexAttrib1dvNV, glVertexAttrib1dvNV, NULL, _gloffset_VertexAttrib1dvNV), + NAME_FUNC_OFFSET(12080, glVertexAttrib1fNV, glVertexAttrib1fNV, NULL, _gloffset_VertexAttrib1fNV), + NAME_FUNC_OFFSET(12099, glVertexAttrib1fvNV, glVertexAttrib1fvNV, NULL, _gloffset_VertexAttrib1fvNV), + NAME_FUNC_OFFSET(12119, glVertexAttrib1sNV, glVertexAttrib1sNV, NULL, _gloffset_VertexAttrib1sNV), + NAME_FUNC_OFFSET(12138, glVertexAttrib1svNV, glVertexAttrib1svNV, NULL, _gloffset_VertexAttrib1svNV), + NAME_FUNC_OFFSET(12158, glVertexAttrib2dNV, glVertexAttrib2dNV, NULL, _gloffset_VertexAttrib2dNV), + NAME_FUNC_OFFSET(12177, glVertexAttrib2dvNV, glVertexAttrib2dvNV, NULL, _gloffset_VertexAttrib2dvNV), + NAME_FUNC_OFFSET(12197, glVertexAttrib2fNV, glVertexAttrib2fNV, NULL, _gloffset_VertexAttrib2fNV), + NAME_FUNC_OFFSET(12216, glVertexAttrib2fvNV, glVertexAttrib2fvNV, NULL, _gloffset_VertexAttrib2fvNV), + NAME_FUNC_OFFSET(12236, glVertexAttrib2sNV, glVertexAttrib2sNV, NULL, _gloffset_VertexAttrib2sNV), + NAME_FUNC_OFFSET(12255, glVertexAttrib2svNV, glVertexAttrib2svNV, NULL, _gloffset_VertexAttrib2svNV), + NAME_FUNC_OFFSET(12275, glVertexAttrib3dNV, glVertexAttrib3dNV, NULL, _gloffset_VertexAttrib3dNV), + NAME_FUNC_OFFSET(12294, glVertexAttrib3dvNV, glVertexAttrib3dvNV, NULL, _gloffset_VertexAttrib3dvNV), + NAME_FUNC_OFFSET(12314, glVertexAttrib3fNV, glVertexAttrib3fNV, NULL, _gloffset_VertexAttrib3fNV), + NAME_FUNC_OFFSET(12333, glVertexAttrib3fvNV, glVertexAttrib3fvNV, NULL, _gloffset_VertexAttrib3fvNV), + NAME_FUNC_OFFSET(12353, glVertexAttrib3sNV, glVertexAttrib3sNV, NULL, _gloffset_VertexAttrib3sNV), + NAME_FUNC_OFFSET(12372, glVertexAttrib3svNV, glVertexAttrib3svNV, NULL, _gloffset_VertexAttrib3svNV), + NAME_FUNC_OFFSET(12392, glVertexAttrib4dNV, glVertexAttrib4dNV, NULL, _gloffset_VertexAttrib4dNV), + NAME_FUNC_OFFSET(12411, glVertexAttrib4dvNV, glVertexAttrib4dvNV, NULL, _gloffset_VertexAttrib4dvNV), + NAME_FUNC_OFFSET(12431, glVertexAttrib4fNV, glVertexAttrib4fNV, NULL, _gloffset_VertexAttrib4fNV), + NAME_FUNC_OFFSET(12450, glVertexAttrib4fvNV, glVertexAttrib4fvNV, NULL, _gloffset_VertexAttrib4fvNV), + NAME_FUNC_OFFSET(12470, glVertexAttrib4sNV, glVertexAttrib4sNV, NULL, _gloffset_VertexAttrib4sNV), + NAME_FUNC_OFFSET(12489, glVertexAttrib4svNV, glVertexAttrib4svNV, NULL, _gloffset_VertexAttrib4svNV), + NAME_FUNC_OFFSET(12509, glVertexAttrib4ubNV, glVertexAttrib4ubNV, NULL, _gloffset_VertexAttrib4ubNV), + NAME_FUNC_OFFSET(12529, glVertexAttrib4ubvNV, glVertexAttrib4ubvNV, NULL, _gloffset_VertexAttrib4ubvNV), + NAME_FUNC_OFFSET(12550, glVertexAttribPointerNV, glVertexAttribPointerNV, NULL, _gloffset_VertexAttribPointerNV), + NAME_FUNC_OFFSET(12574, glVertexAttribs1dvNV, glVertexAttribs1dvNV, NULL, _gloffset_VertexAttribs1dvNV), + NAME_FUNC_OFFSET(12595, glVertexAttribs1fvNV, glVertexAttribs1fvNV, NULL, _gloffset_VertexAttribs1fvNV), + NAME_FUNC_OFFSET(12616, glVertexAttribs1svNV, glVertexAttribs1svNV, NULL, _gloffset_VertexAttribs1svNV), + NAME_FUNC_OFFSET(12637, glVertexAttribs2dvNV, glVertexAttribs2dvNV, NULL, _gloffset_VertexAttribs2dvNV), + NAME_FUNC_OFFSET(12658, glVertexAttribs2fvNV, glVertexAttribs2fvNV, NULL, _gloffset_VertexAttribs2fvNV), + NAME_FUNC_OFFSET(12679, glVertexAttribs2svNV, glVertexAttribs2svNV, NULL, _gloffset_VertexAttribs2svNV), + NAME_FUNC_OFFSET(12700, glVertexAttribs3dvNV, glVertexAttribs3dvNV, NULL, _gloffset_VertexAttribs3dvNV), + NAME_FUNC_OFFSET(12721, glVertexAttribs3fvNV, glVertexAttribs3fvNV, NULL, _gloffset_VertexAttribs3fvNV), + NAME_FUNC_OFFSET(12742, glVertexAttribs3svNV, glVertexAttribs3svNV, NULL, _gloffset_VertexAttribs3svNV), + NAME_FUNC_OFFSET(12763, glVertexAttribs4dvNV, glVertexAttribs4dvNV, NULL, _gloffset_VertexAttribs4dvNV), + NAME_FUNC_OFFSET(12784, glVertexAttribs4fvNV, glVertexAttribs4fvNV, NULL, _gloffset_VertexAttribs4fvNV), + NAME_FUNC_OFFSET(12805, glVertexAttribs4svNV, glVertexAttribs4svNV, NULL, _gloffset_VertexAttribs4svNV), + NAME_FUNC_OFFSET(12826, glVertexAttribs4ubvNV, glVertexAttribs4ubvNV, NULL, _gloffset_VertexAttribs4ubvNV), + NAME_FUNC_OFFSET(12848, glGetTexBumpParameterfvATI, glGetTexBumpParameterfvATI, NULL, _gloffset_GetTexBumpParameterfvATI), + NAME_FUNC_OFFSET(12875, glGetTexBumpParameterivATI, glGetTexBumpParameterivATI, NULL, _gloffset_GetTexBumpParameterivATI), + NAME_FUNC_OFFSET(12902, glTexBumpParameterfvATI, glTexBumpParameterfvATI, NULL, _gloffset_TexBumpParameterfvATI), + NAME_FUNC_OFFSET(12926, glTexBumpParameterivATI, glTexBumpParameterivATI, NULL, _gloffset_TexBumpParameterivATI), + NAME_FUNC_OFFSET(12950, glAlphaFragmentOp1ATI, glAlphaFragmentOp1ATI, NULL, _gloffset_AlphaFragmentOp1ATI), + NAME_FUNC_OFFSET(12972, glAlphaFragmentOp2ATI, glAlphaFragmentOp2ATI, NULL, _gloffset_AlphaFragmentOp2ATI), + NAME_FUNC_OFFSET(12994, glAlphaFragmentOp3ATI, glAlphaFragmentOp3ATI, NULL, _gloffset_AlphaFragmentOp3ATI), + NAME_FUNC_OFFSET(13016, glBeginFragmentShaderATI, glBeginFragmentShaderATI, NULL, _gloffset_BeginFragmentShaderATI), + NAME_FUNC_OFFSET(13041, glBindFragmentShaderATI, glBindFragmentShaderATI, NULL, _gloffset_BindFragmentShaderATI), + NAME_FUNC_OFFSET(13065, glColorFragmentOp1ATI, glColorFragmentOp1ATI, NULL, _gloffset_ColorFragmentOp1ATI), + NAME_FUNC_OFFSET(13087, glColorFragmentOp2ATI, glColorFragmentOp2ATI, NULL, _gloffset_ColorFragmentOp2ATI), + NAME_FUNC_OFFSET(13109, glColorFragmentOp3ATI, glColorFragmentOp3ATI, NULL, _gloffset_ColorFragmentOp3ATI), + NAME_FUNC_OFFSET(13131, glDeleteFragmentShaderATI, glDeleteFragmentShaderATI, NULL, _gloffset_DeleteFragmentShaderATI), + NAME_FUNC_OFFSET(13157, glEndFragmentShaderATI, glEndFragmentShaderATI, NULL, _gloffset_EndFragmentShaderATI), + NAME_FUNC_OFFSET(13180, glGenFragmentShadersATI, glGenFragmentShadersATI, NULL, _gloffset_GenFragmentShadersATI), + NAME_FUNC_OFFSET(13204, glPassTexCoordATI, glPassTexCoordATI, NULL, _gloffset_PassTexCoordATI), + NAME_FUNC_OFFSET(13222, glSampleMapATI, glSampleMapATI, NULL, _gloffset_SampleMapATI), + NAME_FUNC_OFFSET(13237, glSetFragmentShaderConstantATI, glSetFragmentShaderConstantATI, NULL, _gloffset_SetFragmentShaderConstantATI), + NAME_FUNC_OFFSET(13268, glPointParameteriNV, glPointParameteriNV, NULL, _gloffset_PointParameteriNV), + NAME_FUNC_OFFSET(13288, glPointParameterivNV, glPointParameterivNV, NULL, _gloffset_PointParameterivNV), + NAME_FUNC_OFFSET(13309, gl_dispatch_stub_766, gl_dispatch_stub_766, NULL, _gloffset_ActiveStencilFaceEXT), + NAME_FUNC_OFFSET(13332, gl_dispatch_stub_767, gl_dispatch_stub_767, NULL, _gloffset_BindVertexArrayAPPLE), + NAME_FUNC_OFFSET(13355, gl_dispatch_stub_768, gl_dispatch_stub_768, NULL, _gloffset_DeleteVertexArraysAPPLE), + NAME_FUNC_OFFSET(13381, gl_dispatch_stub_769, gl_dispatch_stub_769, NULL, _gloffset_GenVertexArraysAPPLE), + NAME_FUNC_OFFSET(13404, gl_dispatch_stub_770, gl_dispatch_stub_770, NULL, _gloffset_IsVertexArrayAPPLE), + NAME_FUNC_OFFSET(13425, glGetProgramNamedParameterdvNV, glGetProgramNamedParameterdvNV, NULL, _gloffset_GetProgramNamedParameterdvNV), + NAME_FUNC_OFFSET(13456, glGetProgramNamedParameterfvNV, glGetProgramNamedParameterfvNV, NULL, _gloffset_GetProgramNamedParameterfvNV), + NAME_FUNC_OFFSET(13487, glProgramNamedParameter4dNV, glProgramNamedParameter4dNV, NULL, _gloffset_ProgramNamedParameter4dNV), + NAME_FUNC_OFFSET(13515, glProgramNamedParameter4dvNV, glProgramNamedParameter4dvNV, NULL, _gloffset_ProgramNamedParameter4dvNV), + NAME_FUNC_OFFSET(13544, glProgramNamedParameter4fNV, glProgramNamedParameter4fNV, NULL, _gloffset_ProgramNamedParameter4fNV), + NAME_FUNC_OFFSET(13572, glProgramNamedParameter4fvNV, glProgramNamedParameter4fvNV, NULL, _gloffset_ProgramNamedParameter4fvNV), + NAME_FUNC_OFFSET(13601, gl_dispatch_stub_777, gl_dispatch_stub_777, NULL, _gloffset_DepthBoundsEXT), + NAME_FUNC_OFFSET(13618, gl_dispatch_stub_778, gl_dispatch_stub_778, NULL, _gloffset_BlendEquationSeparateEXT), + NAME_FUNC_OFFSET(13645, glBindFramebufferEXT, glBindFramebufferEXT, NULL, _gloffset_BindFramebufferEXT), + NAME_FUNC_OFFSET(13666, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, _gloffset_BindRenderbufferEXT), + NAME_FUNC_OFFSET(13688, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, _gloffset_CheckFramebufferStatusEXT), + NAME_FUNC_OFFSET(13716, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, _gloffset_DeleteFramebuffersEXT), + NAME_FUNC_OFFSET(13740, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, _gloffset_DeleteRenderbuffersEXT), + NAME_FUNC_OFFSET(13765, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, _gloffset_FramebufferRenderbufferEXT), + NAME_FUNC_OFFSET(13794, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, _gloffset_FramebufferTexture1DEXT), + NAME_FUNC_OFFSET(13820, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, _gloffset_FramebufferTexture2DEXT), + NAME_FUNC_OFFSET(13846, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, _gloffset_FramebufferTexture3DEXT), + NAME_FUNC_OFFSET(13872, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, _gloffset_GenFramebuffersEXT), + NAME_FUNC_OFFSET(13893, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, _gloffset_GenRenderbuffersEXT), + NAME_FUNC_OFFSET(13915, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, _gloffset_GenerateMipmapEXT), + NAME_FUNC_OFFSET(13935, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, _gloffset_GetFramebufferAttachmentParameterivEXT), + NAME_FUNC_OFFSET(13976, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, _gloffset_GetRenderbufferParameterivEXT), + NAME_FUNC_OFFSET(14008, glIsFramebufferEXT, glIsFramebufferEXT, NULL, _gloffset_IsFramebufferEXT), + NAME_FUNC_OFFSET(14027, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, _gloffset_IsRenderbufferEXT), + NAME_FUNC_OFFSET(14047, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, _gloffset_RenderbufferStorageEXT), + NAME_FUNC_OFFSET(14072, gl_dispatch_stub_796, gl_dispatch_stub_796, NULL, _gloffset_BlitFramebufferEXT), + NAME_FUNC_OFFSET(14093, gl_dispatch_stub_797, gl_dispatch_stub_797, NULL, _gloffset_BufferParameteriAPPLE), + NAME_FUNC_OFFSET(14117, gl_dispatch_stub_798, gl_dispatch_stub_798, NULL, _gloffset_FlushMappedBufferRangeAPPLE), + NAME_FUNC_OFFSET(14147, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, _gloffset_FramebufferTextureLayerEXT), + NAME_FUNC_OFFSET(14176, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, _gloffset_ColorMaskIndexedEXT), + NAME_FUNC_OFFSET(14198, glDisableIndexedEXT, glDisableIndexedEXT, NULL, _gloffset_DisableIndexedEXT), + NAME_FUNC_OFFSET(14218, glEnableIndexedEXT, glEnableIndexedEXT, NULL, _gloffset_EnableIndexedEXT), + NAME_FUNC_OFFSET(14237, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, _gloffset_GetBooleanIndexedvEXT), + NAME_FUNC_OFFSET(14261, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, _gloffset_GetIntegerIndexedvEXT), + NAME_FUNC_OFFSET(14285, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, _gloffset_IsEnabledIndexedEXT), + NAME_FUNC_OFFSET(14307, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, _gloffset_BeginConditionalRenderNV), + NAME_FUNC_OFFSET(14334, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, _gloffset_EndConditionalRenderNV), + NAME_FUNC_OFFSET(14359, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, _gloffset_BeginTransformFeedbackEXT), + NAME_FUNC_OFFSET(14387, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, _gloffset_BindBufferBaseEXT), + NAME_FUNC_OFFSET(14407, glBindBufferOffsetEXT, glBindBufferOffsetEXT, NULL, _gloffset_BindBufferOffsetEXT), + NAME_FUNC_OFFSET(14429, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, _gloffset_BindBufferRangeEXT), + NAME_FUNC_OFFSET(14450, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, _gloffset_EndTransformFeedbackEXT), + NAME_FUNC_OFFSET(14476, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, _gloffset_GetTransformFeedbackVaryingEXT), + NAME_FUNC_OFFSET(14509, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, _gloffset_TransformFeedbackVaryingsEXT), + NAME_FUNC_OFFSET(14540, glProvokingVertexEXT, glProvokingVertexEXT, NULL, _gloffset_ProvokingVertexEXT), + NAME_FUNC_OFFSET(14561, gl_dispatch_stub_816, gl_dispatch_stub_816, NULL, _gloffset_GetTexParameterPointervAPPLE), + NAME_FUNC_OFFSET(14592, gl_dispatch_stub_817, gl_dispatch_stub_817, NULL, _gloffset_TextureRangeAPPLE), + NAME_FUNC_OFFSET(14612, glGetObjectParameterivAPPLE, glGetObjectParameterivAPPLE, NULL, _gloffset_GetObjectParameterivAPPLE), + NAME_FUNC_OFFSET(14640, glObjectPurgeableAPPLE, glObjectPurgeableAPPLE, NULL, _gloffset_ObjectPurgeableAPPLE), + NAME_FUNC_OFFSET(14663, glObjectUnpurgeableAPPLE, glObjectUnpurgeableAPPLE, NULL, _gloffset_ObjectUnpurgeableAPPLE), + NAME_FUNC_OFFSET(14688, gl_dispatch_stub_821, gl_dispatch_stub_821, NULL, _gloffset_StencilFuncSeparateATI), + NAME_FUNC_OFFSET(14713, gl_dispatch_stub_822, gl_dispatch_stub_822, NULL, _gloffset_ProgramEnvParameters4fvEXT), + NAME_FUNC_OFFSET(14742, gl_dispatch_stub_823, gl_dispatch_stub_823, NULL, _gloffset_ProgramLocalParameters4fvEXT), + NAME_FUNC_OFFSET(14773, gl_dispatch_stub_824, gl_dispatch_stub_824, NULL, _gloffset_GetQueryObjecti64vEXT), + NAME_FUNC_OFFSET(14797, gl_dispatch_stub_825, gl_dispatch_stub_825, NULL, _gloffset_GetQueryObjectui64vEXT), + NAME_FUNC_OFFSET(14822, glEGLImageTargetRenderbufferStorageOES, glEGLImageTargetRenderbufferStorageOES, NULL, _gloffset_EGLImageTargetRenderbufferStorageOES), + NAME_FUNC_OFFSET(14861, glEGLImageTargetTexture2DOES, glEGLImageTargetTexture2DOES, NULL, _gloffset_EGLImageTargetTexture2DOES), + NAME_FUNC_OFFSET(14890, glArrayElement, glArrayElement, NULL, _gloffset_ArrayElement), + NAME_FUNC_OFFSET(14908, glBindTexture, glBindTexture, NULL, _gloffset_BindTexture), + NAME_FUNC_OFFSET(14925, glDrawArrays, glDrawArrays, NULL, _gloffset_DrawArrays), + NAME_FUNC_OFFSET(14941, glAreTexturesResident, glAreTexturesResidentEXT, glAreTexturesResidentEXT, _gloffset_AreTexturesResident), + NAME_FUNC_OFFSET(14966, glCopyTexImage1D, glCopyTexImage1D, NULL, _gloffset_CopyTexImage1D), + NAME_FUNC_OFFSET(14986, glCopyTexImage2D, glCopyTexImage2D, NULL, _gloffset_CopyTexImage2D), + NAME_FUNC_OFFSET(15006, glCopyTexSubImage1D, glCopyTexSubImage1D, NULL, _gloffset_CopyTexSubImage1D), + NAME_FUNC_OFFSET(15029, glCopyTexSubImage2D, glCopyTexSubImage2D, NULL, _gloffset_CopyTexSubImage2D), + NAME_FUNC_OFFSET(15052, glDeleteTextures, glDeleteTexturesEXT, glDeleteTexturesEXT, _gloffset_DeleteTextures), + NAME_FUNC_OFFSET(15072, glGenTextures, glGenTexturesEXT, glGenTexturesEXT, _gloffset_GenTextures), + NAME_FUNC_OFFSET(15089, glGetPointerv, glGetPointerv, NULL, _gloffset_GetPointerv), + NAME_FUNC_OFFSET(15106, glIsTexture, glIsTextureEXT, glIsTextureEXT, _gloffset_IsTexture), + NAME_FUNC_OFFSET(15121, glPrioritizeTextures, glPrioritizeTextures, NULL, _gloffset_PrioritizeTextures), + NAME_FUNC_OFFSET(15145, glTexSubImage1D, glTexSubImage1D, NULL, _gloffset_TexSubImage1D), + NAME_FUNC_OFFSET(15164, glTexSubImage2D, glTexSubImage2D, NULL, _gloffset_TexSubImage2D), + NAME_FUNC_OFFSET(15183, glBlendColor, glBlendColor, NULL, _gloffset_BlendColor), + NAME_FUNC_OFFSET(15199, glBlendEquation, glBlendEquation, NULL, _gloffset_BlendEquation), + NAME_FUNC_OFFSET(15218, glDrawRangeElements, glDrawRangeElements, NULL, _gloffset_DrawRangeElements), NAME_FUNC_OFFSET(15241, glColorTable, glColorTable, NULL, _gloffset_ColorTable), - NAME_FUNC_OFFSET(15257, glColorTableParameterfv, glColorTableParameterfv, NULL, _gloffset_ColorTableParameterfv), - NAME_FUNC_OFFSET(15284, glColorTableParameteriv, glColorTableParameteriv, NULL, _gloffset_ColorTableParameteriv), - NAME_FUNC_OFFSET(15311, glCopyColorTable, glCopyColorTable, NULL, _gloffset_CopyColorTable), - NAME_FUNC_OFFSET(15331, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, _gloffset_GetColorTable), - NAME_FUNC_OFFSET(15350, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, _gloffset_GetColorTable), - NAME_FUNC_OFFSET(15369, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, _gloffset_GetColorTableParameterfv), - NAME_FUNC_OFFSET(15399, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, _gloffset_GetColorTableParameterfv), - NAME_FUNC_OFFSET(15429, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, _gloffset_GetColorTableParameteriv), - NAME_FUNC_OFFSET(15459, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, _gloffset_GetColorTableParameteriv), - NAME_FUNC_OFFSET(15489, glColorSubTable, glColorSubTable, NULL, _gloffset_ColorSubTable), - NAME_FUNC_OFFSET(15508, glCopyColorSubTable, glCopyColorSubTable, NULL, _gloffset_CopyColorSubTable), - NAME_FUNC_OFFSET(15531, glConvolutionFilter1D, glConvolutionFilter1D, NULL, _gloffset_ConvolutionFilter1D), - NAME_FUNC_OFFSET(15556, glConvolutionFilter2D, glConvolutionFilter2D, NULL, _gloffset_ConvolutionFilter2D), - NAME_FUNC_OFFSET(15581, glConvolutionParameterf, glConvolutionParameterf, NULL, _gloffset_ConvolutionParameterf), - NAME_FUNC_OFFSET(15608, glConvolutionParameterfv, glConvolutionParameterfv, NULL, _gloffset_ConvolutionParameterfv), - NAME_FUNC_OFFSET(15636, glConvolutionParameteri, glConvolutionParameteri, NULL, _gloffset_ConvolutionParameteri), - NAME_FUNC_OFFSET(15663, glConvolutionParameteriv, glConvolutionParameteriv, NULL, _gloffset_ConvolutionParameteriv), - NAME_FUNC_OFFSET(15691, glCopyConvolutionFilter1D, glCopyConvolutionFilter1D, NULL, _gloffset_CopyConvolutionFilter1D), - NAME_FUNC_OFFSET(15720, glCopyConvolutionFilter2D, glCopyConvolutionFilter2D, NULL, _gloffset_CopyConvolutionFilter2D), - NAME_FUNC_OFFSET(15749, glGetConvolutionFilter, gl_dispatch_stub_356, gl_dispatch_stub_356, _gloffset_GetConvolutionFilter), - NAME_FUNC_OFFSET(15775, glGetConvolutionParameterfv, gl_dispatch_stub_357, gl_dispatch_stub_357, _gloffset_GetConvolutionParameterfv), - NAME_FUNC_OFFSET(15806, glGetConvolutionParameteriv, gl_dispatch_stub_358, gl_dispatch_stub_358, _gloffset_GetConvolutionParameteriv), - NAME_FUNC_OFFSET(15837, glGetSeparableFilter, gl_dispatch_stub_359, gl_dispatch_stub_359, _gloffset_GetSeparableFilter), - NAME_FUNC_OFFSET(15861, glSeparableFilter2D, glSeparableFilter2D, NULL, _gloffset_SeparableFilter2D), - NAME_FUNC_OFFSET(15884, glGetHistogram, gl_dispatch_stub_361, gl_dispatch_stub_361, _gloffset_GetHistogram), - NAME_FUNC_OFFSET(15902, glGetHistogramParameterfv, gl_dispatch_stub_362, gl_dispatch_stub_362, _gloffset_GetHistogramParameterfv), - NAME_FUNC_OFFSET(15931, glGetHistogramParameteriv, gl_dispatch_stub_363, gl_dispatch_stub_363, _gloffset_GetHistogramParameteriv), - NAME_FUNC_OFFSET(15960, glGetMinmax, gl_dispatch_stub_364, gl_dispatch_stub_364, _gloffset_GetMinmax), - NAME_FUNC_OFFSET(15975, glGetMinmaxParameterfv, gl_dispatch_stub_365, gl_dispatch_stub_365, _gloffset_GetMinmaxParameterfv), - NAME_FUNC_OFFSET(16001, glGetMinmaxParameteriv, gl_dispatch_stub_366, gl_dispatch_stub_366, _gloffset_GetMinmaxParameteriv), - NAME_FUNC_OFFSET(16027, glHistogram, glHistogram, NULL, _gloffset_Histogram), - NAME_FUNC_OFFSET(16042, glMinmax, glMinmax, NULL, _gloffset_Minmax), - NAME_FUNC_OFFSET(16054, glResetHistogram, glResetHistogram, NULL, _gloffset_ResetHistogram), - NAME_FUNC_OFFSET(16074, glResetMinmax, glResetMinmax, NULL, _gloffset_ResetMinmax), - NAME_FUNC_OFFSET(16091, glTexImage3D, glTexImage3D, NULL, _gloffset_TexImage3D), - NAME_FUNC_OFFSET(16107, glTexSubImage3D, glTexSubImage3D, NULL, _gloffset_TexSubImage3D), - NAME_FUNC_OFFSET(16126, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, _gloffset_CopyTexSubImage3D), - NAME_FUNC_OFFSET(16149, glActiveTextureARB, glActiveTextureARB, NULL, _gloffset_ActiveTextureARB), - NAME_FUNC_OFFSET(16165, glClientActiveTextureARB, glClientActiveTextureARB, NULL, _gloffset_ClientActiveTextureARB), - NAME_FUNC_OFFSET(16187, glMultiTexCoord1dARB, glMultiTexCoord1dARB, NULL, _gloffset_MultiTexCoord1dARB), - NAME_FUNC_OFFSET(16205, glMultiTexCoord1dvARB, glMultiTexCoord1dvARB, NULL, _gloffset_MultiTexCoord1dvARB), - NAME_FUNC_OFFSET(16224, glMultiTexCoord1fARB, glMultiTexCoord1fARB, NULL, _gloffset_MultiTexCoord1fARB), - NAME_FUNC_OFFSET(16242, glMultiTexCoord1fvARB, glMultiTexCoord1fvARB, NULL, _gloffset_MultiTexCoord1fvARB), - NAME_FUNC_OFFSET(16261, glMultiTexCoord1iARB, glMultiTexCoord1iARB, NULL, _gloffset_MultiTexCoord1iARB), - NAME_FUNC_OFFSET(16279, glMultiTexCoord1ivARB, glMultiTexCoord1ivARB, NULL, _gloffset_MultiTexCoord1ivARB), - NAME_FUNC_OFFSET(16298, glMultiTexCoord1sARB, glMultiTexCoord1sARB, NULL, _gloffset_MultiTexCoord1sARB), - NAME_FUNC_OFFSET(16316, glMultiTexCoord1svARB, glMultiTexCoord1svARB, NULL, _gloffset_MultiTexCoord1svARB), - NAME_FUNC_OFFSET(16335, glMultiTexCoord2dARB, glMultiTexCoord2dARB, NULL, _gloffset_MultiTexCoord2dARB), - NAME_FUNC_OFFSET(16353, glMultiTexCoord2dvARB, glMultiTexCoord2dvARB, NULL, _gloffset_MultiTexCoord2dvARB), - NAME_FUNC_OFFSET(16372, glMultiTexCoord2fARB, glMultiTexCoord2fARB, NULL, _gloffset_MultiTexCoord2fARB), - NAME_FUNC_OFFSET(16390, glMultiTexCoord2fvARB, glMultiTexCoord2fvARB, NULL, _gloffset_MultiTexCoord2fvARB), - NAME_FUNC_OFFSET(16409, glMultiTexCoord2iARB, glMultiTexCoord2iARB, NULL, _gloffset_MultiTexCoord2iARB), - NAME_FUNC_OFFSET(16427, glMultiTexCoord2ivARB, glMultiTexCoord2ivARB, NULL, _gloffset_MultiTexCoord2ivARB), - NAME_FUNC_OFFSET(16446, glMultiTexCoord2sARB, glMultiTexCoord2sARB, NULL, _gloffset_MultiTexCoord2sARB), - NAME_FUNC_OFFSET(16464, glMultiTexCoord2svARB, glMultiTexCoord2svARB, NULL, _gloffset_MultiTexCoord2svARB), - NAME_FUNC_OFFSET(16483, glMultiTexCoord3dARB, glMultiTexCoord3dARB, NULL, _gloffset_MultiTexCoord3dARB), - NAME_FUNC_OFFSET(16501, glMultiTexCoord3dvARB, glMultiTexCoord3dvARB, NULL, _gloffset_MultiTexCoord3dvARB), - NAME_FUNC_OFFSET(16520, glMultiTexCoord3fARB, glMultiTexCoord3fARB, NULL, _gloffset_MultiTexCoord3fARB), - NAME_FUNC_OFFSET(16538, glMultiTexCoord3fvARB, glMultiTexCoord3fvARB, NULL, _gloffset_MultiTexCoord3fvARB), - NAME_FUNC_OFFSET(16557, glMultiTexCoord3iARB, glMultiTexCoord3iARB, NULL, _gloffset_MultiTexCoord3iARB), - NAME_FUNC_OFFSET(16575, glMultiTexCoord3ivARB, glMultiTexCoord3ivARB, NULL, _gloffset_MultiTexCoord3ivARB), - NAME_FUNC_OFFSET(16594, glMultiTexCoord3sARB, glMultiTexCoord3sARB, NULL, _gloffset_MultiTexCoord3sARB), - NAME_FUNC_OFFSET(16612, glMultiTexCoord3svARB, glMultiTexCoord3svARB, NULL, _gloffset_MultiTexCoord3svARB), - NAME_FUNC_OFFSET(16631, glMultiTexCoord4dARB, glMultiTexCoord4dARB, NULL, _gloffset_MultiTexCoord4dARB), - NAME_FUNC_OFFSET(16649, glMultiTexCoord4dvARB, glMultiTexCoord4dvARB, NULL, _gloffset_MultiTexCoord4dvARB), - NAME_FUNC_OFFSET(16668, glMultiTexCoord4fARB, glMultiTexCoord4fARB, NULL, _gloffset_MultiTexCoord4fARB), - NAME_FUNC_OFFSET(16686, glMultiTexCoord4fvARB, glMultiTexCoord4fvARB, NULL, _gloffset_MultiTexCoord4fvARB), - NAME_FUNC_OFFSET(16705, glMultiTexCoord4iARB, glMultiTexCoord4iARB, NULL, _gloffset_MultiTexCoord4iARB), - NAME_FUNC_OFFSET(16723, glMultiTexCoord4ivARB, glMultiTexCoord4ivARB, NULL, _gloffset_MultiTexCoord4ivARB), - NAME_FUNC_OFFSET(16742, glMultiTexCoord4sARB, glMultiTexCoord4sARB, NULL, _gloffset_MultiTexCoord4sARB), - NAME_FUNC_OFFSET(16760, glMultiTexCoord4svARB, glMultiTexCoord4svARB, NULL, _gloffset_MultiTexCoord4svARB), - NAME_FUNC_OFFSET(16779, glStencilOpSeparate, glStencilOpSeparate, NULL, _gloffset_StencilOpSeparate), - NAME_FUNC_OFFSET(16802, glDrawArraysInstanced, glDrawArraysInstanced, NULL, _gloffset_DrawArraysInstanced), - NAME_FUNC_OFFSET(16827, glDrawArraysInstanced, glDrawArraysInstanced, NULL, _gloffset_DrawArraysInstanced), - NAME_FUNC_OFFSET(16852, glDrawElementsInstanced, glDrawElementsInstanced, NULL, _gloffset_DrawElementsInstanced), - NAME_FUNC_OFFSET(16879, glDrawElementsInstanced, glDrawElementsInstanced, NULL, _gloffset_DrawElementsInstanced), - NAME_FUNC_OFFSET(16906, glLoadTransposeMatrixdARB, glLoadTransposeMatrixdARB, NULL, _gloffset_LoadTransposeMatrixdARB), - NAME_FUNC_OFFSET(16929, glLoadTransposeMatrixfARB, glLoadTransposeMatrixfARB, NULL, _gloffset_LoadTransposeMatrixfARB), - NAME_FUNC_OFFSET(16952, glMultTransposeMatrixdARB, glMultTransposeMatrixdARB, NULL, _gloffset_MultTransposeMatrixdARB), - NAME_FUNC_OFFSET(16975, glMultTransposeMatrixfARB, glMultTransposeMatrixfARB, NULL, _gloffset_MultTransposeMatrixfARB), - NAME_FUNC_OFFSET(16998, glSampleCoverageARB, glSampleCoverageARB, NULL, _gloffset_SampleCoverageARB), - NAME_FUNC_OFFSET(17015, glCompressedTexImage1DARB, glCompressedTexImage1DARB, NULL, _gloffset_CompressedTexImage1DARB), - NAME_FUNC_OFFSET(17038, glCompressedTexImage2DARB, glCompressedTexImage2DARB, NULL, _gloffset_CompressedTexImage2DARB), - NAME_FUNC_OFFSET(17061, glCompressedTexImage3DARB, glCompressedTexImage3DARB, NULL, _gloffset_CompressedTexImage3DARB), - NAME_FUNC_OFFSET(17084, glCompressedTexSubImage1DARB, glCompressedTexSubImage1DARB, NULL, _gloffset_CompressedTexSubImage1DARB), - NAME_FUNC_OFFSET(17110, glCompressedTexSubImage2DARB, glCompressedTexSubImage2DARB, NULL, _gloffset_CompressedTexSubImage2DARB), - NAME_FUNC_OFFSET(17136, glCompressedTexSubImage3DARB, glCompressedTexSubImage3DARB, NULL, _gloffset_CompressedTexSubImage3DARB), - NAME_FUNC_OFFSET(17162, glGetCompressedTexImageARB, glGetCompressedTexImageARB, NULL, _gloffset_GetCompressedTexImageARB), - NAME_FUNC_OFFSET(17186, glDisableVertexAttribArrayARB, glDisableVertexAttribArrayARB, NULL, _gloffset_DisableVertexAttribArrayARB), - NAME_FUNC_OFFSET(17213, glEnableVertexAttribArrayARB, glEnableVertexAttribArrayARB, NULL, _gloffset_EnableVertexAttribArrayARB), - NAME_FUNC_OFFSET(17239, glGetVertexAttribdvARB, glGetVertexAttribdvARB, NULL, _gloffset_GetVertexAttribdvARB), - NAME_FUNC_OFFSET(17259, glGetVertexAttribfvARB, glGetVertexAttribfvARB, NULL, _gloffset_GetVertexAttribfvARB), - NAME_FUNC_OFFSET(17279, glGetVertexAttribivARB, glGetVertexAttribivARB, NULL, _gloffset_GetVertexAttribivARB), - NAME_FUNC_OFFSET(17299, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, _gloffset_ProgramEnvParameter4dARB), - NAME_FUNC_OFFSET(17322, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, _gloffset_ProgramEnvParameter4dvARB), - NAME_FUNC_OFFSET(17346, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, _gloffset_ProgramEnvParameter4fARB), - NAME_FUNC_OFFSET(17369, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, _gloffset_ProgramEnvParameter4fvARB), - NAME_FUNC_OFFSET(17393, glVertexAttrib1dARB, glVertexAttrib1dARB, NULL, _gloffset_VertexAttrib1dARB), - NAME_FUNC_OFFSET(17410, glVertexAttrib1dvARB, glVertexAttrib1dvARB, NULL, _gloffset_VertexAttrib1dvARB), - NAME_FUNC_OFFSET(17428, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, _gloffset_VertexAttrib1fARB), - NAME_FUNC_OFFSET(17445, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, _gloffset_VertexAttrib1fvARB), - NAME_FUNC_OFFSET(17463, glVertexAttrib1sARB, glVertexAttrib1sARB, NULL, _gloffset_VertexAttrib1sARB), - NAME_FUNC_OFFSET(17480, glVertexAttrib1svARB, glVertexAttrib1svARB, NULL, _gloffset_VertexAttrib1svARB), - NAME_FUNC_OFFSET(17498, glVertexAttrib2dARB, glVertexAttrib2dARB, NULL, _gloffset_VertexAttrib2dARB), - NAME_FUNC_OFFSET(17515, glVertexAttrib2dvARB, glVertexAttrib2dvARB, NULL, _gloffset_VertexAttrib2dvARB), - NAME_FUNC_OFFSET(17533, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, _gloffset_VertexAttrib2fARB), - NAME_FUNC_OFFSET(17550, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, _gloffset_VertexAttrib2fvARB), - NAME_FUNC_OFFSET(17568, glVertexAttrib2sARB, glVertexAttrib2sARB, NULL, _gloffset_VertexAttrib2sARB), - NAME_FUNC_OFFSET(17585, glVertexAttrib2svARB, glVertexAttrib2svARB, NULL, _gloffset_VertexAttrib2svARB), - NAME_FUNC_OFFSET(17603, glVertexAttrib3dARB, glVertexAttrib3dARB, NULL, _gloffset_VertexAttrib3dARB), - NAME_FUNC_OFFSET(17620, glVertexAttrib3dvARB, glVertexAttrib3dvARB, NULL, _gloffset_VertexAttrib3dvARB), - NAME_FUNC_OFFSET(17638, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, _gloffset_VertexAttrib3fARB), - NAME_FUNC_OFFSET(17655, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, _gloffset_VertexAttrib3fvARB), - NAME_FUNC_OFFSET(17673, glVertexAttrib3sARB, glVertexAttrib3sARB, NULL, _gloffset_VertexAttrib3sARB), - NAME_FUNC_OFFSET(17690, glVertexAttrib3svARB, glVertexAttrib3svARB, NULL, _gloffset_VertexAttrib3svARB), - NAME_FUNC_OFFSET(17708, glVertexAttrib4NbvARB, glVertexAttrib4NbvARB, NULL, _gloffset_VertexAttrib4NbvARB), - NAME_FUNC_OFFSET(17727, glVertexAttrib4NivARB, glVertexAttrib4NivARB, NULL, _gloffset_VertexAttrib4NivARB), - NAME_FUNC_OFFSET(17746, glVertexAttrib4NsvARB, glVertexAttrib4NsvARB, NULL, _gloffset_VertexAttrib4NsvARB), - NAME_FUNC_OFFSET(17765, glVertexAttrib4NubARB, glVertexAttrib4NubARB, NULL, _gloffset_VertexAttrib4NubARB), - NAME_FUNC_OFFSET(17784, glVertexAttrib4NubvARB, glVertexAttrib4NubvARB, NULL, _gloffset_VertexAttrib4NubvARB), - NAME_FUNC_OFFSET(17804, glVertexAttrib4NuivARB, glVertexAttrib4NuivARB, NULL, _gloffset_VertexAttrib4NuivARB), - NAME_FUNC_OFFSET(17824, glVertexAttrib4NusvARB, glVertexAttrib4NusvARB, NULL, _gloffset_VertexAttrib4NusvARB), - NAME_FUNC_OFFSET(17844, glVertexAttrib4bvARB, glVertexAttrib4bvARB, NULL, _gloffset_VertexAttrib4bvARB), - NAME_FUNC_OFFSET(17862, glVertexAttrib4dARB, glVertexAttrib4dARB, NULL, _gloffset_VertexAttrib4dARB), - NAME_FUNC_OFFSET(17879, glVertexAttrib4dvARB, glVertexAttrib4dvARB, NULL, _gloffset_VertexAttrib4dvARB), - NAME_FUNC_OFFSET(17897, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, _gloffset_VertexAttrib4fARB), - NAME_FUNC_OFFSET(17914, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, _gloffset_VertexAttrib4fvARB), - NAME_FUNC_OFFSET(17932, glVertexAttrib4ivARB, glVertexAttrib4ivARB, NULL, _gloffset_VertexAttrib4ivARB), - NAME_FUNC_OFFSET(17950, glVertexAttrib4sARB, glVertexAttrib4sARB, NULL, _gloffset_VertexAttrib4sARB), - NAME_FUNC_OFFSET(17967, glVertexAttrib4svARB, glVertexAttrib4svARB, NULL, _gloffset_VertexAttrib4svARB), - NAME_FUNC_OFFSET(17985, glVertexAttrib4ubvARB, glVertexAttrib4ubvARB, NULL, _gloffset_VertexAttrib4ubvARB), - NAME_FUNC_OFFSET(18004, glVertexAttrib4uivARB, glVertexAttrib4uivARB, NULL, _gloffset_VertexAttrib4uivARB), - NAME_FUNC_OFFSET(18023, glVertexAttrib4usvARB, glVertexAttrib4usvARB, NULL, _gloffset_VertexAttrib4usvARB), - NAME_FUNC_OFFSET(18042, glVertexAttribPointerARB, glVertexAttribPointerARB, NULL, _gloffset_VertexAttribPointerARB), - NAME_FUNC_OFFSET(18064, glBindBufferARB, glBindBufferARB, NULL, _gloffset_BindBufferARB), - NAME_FUNC_OFFSET(18077, glBufferDataARB, glBufferDataARB, NULL, _gloffset_BufferDataARB), - NAME_FUNC_OFFSET(18090, glBufferSubDataARB, glBufferSubDataARB, NULL, _gloffset_BufferSubDataARB), - NAME_FUNC_OFFSET(18106, glDeleteBuffersARB, glDeleteBuffersARB, NULL, _gloffset_DeleteBuffersARB), - NAME_FUNC_OFFSET(18122, glGenBuffersARB, glGenBuffersARB, NULL, _gloffset_GenBuffersARB), - NAME_FUNC_OFFSET(18135, glGetBufferParameterivARB, glGetBufferParameterivARB, NULL, _gloffset_GetBufferParameterivARB), - NAME_FUNC_OFFSET(18158, glGetBufferPointervARB, glGetBufferPointervARB, NULL, _gloffset_GetBufferPointervARB), - NAME_FUNC_OFFSET(18178, glGetBufferSubDataARB, glGetBufferSubDataARB, NULL, _gloffset_GetBufferSubDataARB), - NAME_FUNC_OFFSET(18197, glIsBufferARB, glIsBufferARB, NULL, _gloffset_IsBufferARB), - NAME_FUNC_OFFSET(18208, glMapBufferARB, glMapBufferARB, NULL, _gloffset_MapBufferARB), - NAME_FUNC_OFFSET(18220, glUnmapBufferARB, glUnmapBufferARB, NULL, _gloffset_UnmapBufferARB), - NAME_FUNC_OFFSET(18234, glBeginQueryARB, glBeginQueryARB, NULL, _gloffset_BeginQueryARB), - NAME_FUNC_OFFSET(18247, glDeleteQueriesARB, glDeleteQueriesARB, NULL, _gloffset_DeleteQueriesARB), - NAME_FUNC_OFFSET(18263, glEndQueryARB, glEndQueryARB, NULL, _gloffset_EndQueryARB), - NAME_FUNC_OFFSET(18274, glGenQueriesARB, glGenQueriesARB, NULL, _gloffset_GenQueriesARB), - NAME_FUNC_OFFSET(18287, glGetQueryObjectivARB, glGetQueryObjectivARB, NULL, _gloffset_GetQueryObjectivARB), - NAME_FUNC_OFFSET(18306, glGetQueryObjectuivARB, glGetQueryObjectuivARB, NULL, _gloffset_GetQueryObjectuivARB), - NAME_FUNC_OFFSET(18326, glGetQueryivARB, glGetQueryivARB, NULL, _gloffset_GetQueryivARB), - NAME_FUNC_OFFSET(18339, glIsQueryARB, glIsQueryARB, NULL, _gloffset_IsQueryARB), - NAME_FUNC_OFFSET(18349, glCompileShaderARB, glCompileShaderARB, NULL, _gloffset_CompileShaderARB), - NAME_FUNC_OFFSET(18365, glGetActiveUniformARB, glGetActiveUniformARB, NULL, _gloffset_GetActiveUniformARB), - NAME_FUNC_OFFSET(18384, glGetShaderSourceARB, glGetShaderSourceARB, NULL, _gloffset_GetShaderSourceARB), - NAME_FUNC_OFFSET(18402, glGetUniformLocationARB, glGetUniformLocationARB, NULL, _gloffset_GetUniformLocationARB), - NAME_FUNC_OFFSET(18423, glGetUniformfvARB, glGetUniformfvARB, NULL, _gloffset_GetUniformfvARB), - NAME_FUNC_OFFSET(18438, glGetUniformivARB, glGetUniformivARB, NULL, _gloffset_GetUniformivARB), - NAME_FUNC_OFFSET(18453, glLinkProgramARB, glLinkProgramARB, NULL, _gloffset_LinkProgramARB), - NAME_FUNC_OFFSET(18467, glShaderSourceARB, glShaderSourceARB, NULL, _gloffset_ShaderSourceARB), - NAME_FUNC_OFFSET(18482, glUniform1fARB, glUniform1fARB, NULL, _gloffset_Uniform1fARB), - NAME_FUNC_OFFSET(18494, glUniform1fvARB, glUniform1fvARB, NULL, _gloffset_Uniform1fvARB), - NAME_FUNC_OFFSET(18507, glUniform1iARB, glUniform1iARB, NULL, _gloffset_Uniform1iARB), - NAME_FUNC_OFFSET(18519, glUniform1ivARB, glUniform1ivARB, NULL, _gloffset_Uniform1ivARB), - NAME_FUNC_OFFSET(18532, glUniform2fARB, glUniform2fARB, NULL, _gloffset_Uniform2fARB), - NAME_FUNC_OFFSET(18544, glUniform2fvARB, glUniform2fvARB, NULL, _gloffset_Uniform2fvARB), - NAME_FUNC_OFFSET(18557, glUniform2iARB, glUniform2iARB, NULL, _gloffset_Uniform2iARB), - NAME_FUNC_OFFSET(18569, glUniform2ivARB, glUniform2ivARB, NULL, _gloffset_Uniform2ivARB), - NAME_FUNC_OFFSET(18582, glUniform3fARB, glUniform3fARB, NULL, _gloffset_Uniform3fARB), - NAME_FUNC_OFFSET(18594, glUniform3fvARB, glUniform3fvARB, NULL, _gloffset_Uniform3fvARB), - NAME_FUNC_OFFSET(18607, glUniform3iARB, glUniform3iARB, NULL, _gloffset_Uniform3iARB), - NAME_FUNC_OFFSET(18619, glUniform3ivARB, glUniform3ivARB, NULL, _gloffset_Uniform3ivARB), - NAME_FUNC_OFFSET(18632, glUniform4fARB, glUniform4fARB, NULL, _gloffset_Uniform4fARB), - NAME_FUNC_OFFSET(18644, glUniform4fvARB, glUniform4fvARB, NULL, _gloffset_Uniform4fvARB), - NAME_FUNC_OFFSET(18657, glUniform4iARB, glUniform4iARB, NULL, _gloffset_Uniform4iARB), - NAME_FUNC_OFFSET(18669, glUniform4ivARB, glUniform4ivARB, NULL, _gloffset_Uniform4ivARB), - NAME_FUNC_OFFSET(18682, glUniformMatrix2fvARB, glUniformMatrix2fvARB, NULL, _gloffset_UniformMatrix2fvARB), - NAME_FUNC_OFFSET(18701, glUniformMatrix3fvARB, glUniformMatrix3fvARB, NULL, _gloffset_UniformMatrix3fvARB), - NAME_FUNC_OFFSET(18720, glUniformMatrix4fvARB, glUniformMatrix4fvARB, NULL, _gloffset_UniformMatrix4fvARB), - NAME_FUNC_OFFSET(18739, glUseProgramObjectARB, glUseProgramObjectARB, NULL, _gloffset_UseProgramObjectARB), - NAME_FUNC_OFFSET(18752, glValidateProgramARB, glValidateProgramARB, NULL, _gloffset_ValidateProgramARB), - NAME_FUNC_OFFSET(18770, glBindAttribLocationARB, glBindAttribLocationARB, NULL, _gloffset_BindAttribLocationARB), - NAME_FUNC_OFFSET(18791, glGetActiveAttribARB, glGetActiveAttribARB, NULL, _gloffset_GetActiveAttribARB), - NAME_FUNC_OFFSET(18809, glGetAttribLocationARB, glGetAttribLocationARB, NULL, _gloffset_GetAttribLocationARB), - NAME_FUNC_OFFSET(18829, glDrawBuffersARB, glDrawBuffersARB, NULL, _gloffset_DrawBuffersARB), - NAME_FUNC_OFFSET(18843, glDrawBuffersARB, glDrawBuffersARB, NULL, _gloffset_DrawBuffersARB), - NAME_FUNC_OFFSET(18860, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, _gloffset_RenderbufferStorageMultisample), - NAME_FUNC_OFFSET(18896, gl_dispatch_stub_596, gl_dispatch_stub_596, NULL, _gloffset_SampleMaskSGIS), - NAME_FUNC_OFFSET(18912, gl_dispatch_stub_597, gl_dispatch_stub_597, NULL, _gloffset_SamplePatternSGIS), - NAME_FUNC_OFFSET(18931, glPointParameterfEXT, glPointParameterfEXT, NULL, _gloffset_PointParameterfEXT), - NAME_FUNC_OFFSET(18949, glPointParameterfEXT, glPointParameterfEXT, NULL, _gloffset_PointParameterfEXT), - NAME_FUNC_OFFSET(18970, glPointParameterfEXT, glPointParameterfEXT, NULL, _gloffset_PointParameterfEXT), - NAME_FUNC_OFFSET(18992, glPointParameterfvEXT, glPointParameterfvEXT, NULL, _gloffset_PointParameterfvEXT), - NAME_FUNC_OFFSET(19011, glPointParameterfvEXT, glPointParameterfvEXT, NULL, _gloffset_PointParameterfvEXT), - NAME_FUNC_OFFSET(19033, glPointParameterfvEXT, glPointParameterfvEXT, NULL, _gloffset_PointParameterfvEXT), - NAME_FUNC_OFFSET(19056, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, _gloffset_SecondaryColor3bEXT), - NAME_FUNC_OFFSET(19075, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, _gloffset_SecondaryColor3bvEXT), - NAME_FUNC_OFFSET(19095, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, _gloffset_SecondaryColor3dEXT), - NAME_FUNC_OFFSET(19114, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, _gloffset_SecondaryColor3dvEXT), - NAME_FUNC_OFFSET(19134, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, _gloffset_SecondaryColor3fEXT), - NAME_FUNC_OFFSET(19153, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, _gloffset_SecondaryColor3fvEXT), - NAME_FUNC_OFFSET(19173, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, _gloffset_SecondaryColor3iEXT), - NAME_FUNC_OFFSET(19192, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, _gloffset_SecondaryColor3ivEXT), - NAME_FUNC_OFFSET(19212, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, _gloffset_SecondaryColor3sEXT), - NAME_FUNC_OFFSET(19231, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, _gloffset_SecondaryColor3svEXT), - NAME_FUNC_OFFSET(19251, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, _gloffset_SecondaryColor3ubEXT), - NAME_FUNC_OFFSET(19271, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, _gloffset_SecondaryColor3ubvEXT), - NAME_FUNC_OFFSET(19292, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, _gloffset_SecondaryColor3uiEXT), - NAME_FUNC_OFFSET(19312, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, _gloffset_SecondaryColor3uivEXT), - NAME_FUNC_OFFSET(19333, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, _gloffset_SecondaryColor3usEXT), - NAME_FUNC_OFFSET(19353, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, _gloffset_SecondaryColor3usvEXT), - NAME_FUNC_OFFSET(19374, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, _gloffset_SecondaryColorPointerEXT), - NAME_FUNC_OFFSET(19398, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, _gloffset_MultiDrawArraysEXT), - NAME_FUNC_OFFSET(19416, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, _gloffset_MultiDrawElementsEXT), - NAME_FUNC_OFFSET(19436, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, _gloffset_FogCoordPointerEXT), - NAME_FUNC_OFFSET(19454, glFogCoorddEXT, glFogCoorddEXT, NULL, _gloffset_FogCoorddEXT), - NAME_FUNC_OFFSET(19466, glFogCoorddvEXT, glFogCoorddvEXT, NULL, _gloffset_FogCoorddvEXT), - NAME_FUNC_OFFSET(19479, glFogCoordfEXT, glFogCoordfEXT, NULL, _gloffset_FogCoordfEXT), - NAME_FUNC_OFFSET(19491, glFogCoordfvEXT, glFogCoordfvEXT, NULL, _gloffset_FogCoordfvEXT), - NAME_FUNC_OFFSET(19504, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, _gloffset_BlendFuncSeparateEXT), - NAME_FUNC_OFFSET(19524, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, _gloffset_BlendFuncSeparateEXT), - NAME_FUNC_OFFSET(19548, glWindowPos2dMESA, glWindowPos2dMESA, NULL, _gloffset_WindowPos2dMESA), - NAME_FUNC_OFFSET(19562, glWindowPos2dMESA, glWindowPos2dMESA, NULL, _gloffset_WindowPos2dMESA), - NAME_FUNC_OFFSET(19579, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, _gloffset_WindowPos2dvMESA), - NAME_FUNC_OFFSET(19594, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, _gloffset_WindowPos2dvMESA), - NAME_FUNC_OFFSET(19612, glWindowPos2fMESA, glWindowPos2fMESA, NULL, _gloffset_WindowPos2fMESA), - NAME_FUNC_OFFSET(19626, glWindowPos2fMESA, glWindowPos2fMESA, NULL, _gloffset_WindowPos2fMESA), - NAME_FUNC_OFFSET(19643, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, _gloffset_WindowPos2fvMESA), - NAME_FUNC_OFFSET(19658, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, _gloffset_WindowPos2fvMESA), - NAME_FUNC_OFFSET(19676, glWindowPos2iMESA, glWindowPos2iMESA, NULL, _gloffset_WindowPos2iMESA), - NAME_FUNC_OFFSET(19690, glWindowPos2iMESA, glWindowPos2iMESA, NULL, _gloffset_WindowPos2iMESA), - NAME_FUNC_OFFSET(19707, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, _gloffset_WindowPos2ivMESA), - NAME_FUNC_OFFSET(19722, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, _gloffset_WindowPos2ivMESA), - NAME_FUNC_OFFSET(19740, glWindowPos2sMESA, glWindowPos2sMESA, NULL, _gloffset_WindowPos2sMESA), - NAME_FUNC_OFFSET(19754, glWindowPos2sMESA, glWindowPos2sMESA, NULL, _gloffset_WindowPos2sMESA), - NAME_FUNC_OFFSET(19771, glWindowPos2svMESA, glWindowPos2svMESA, NULL, _gloffset_WindowPos2svMESA), - NAME_FUNC_OFFSET(19786, glWindowPos2svMESA, glWindowPos2svMESA, NULL, _gloffset_WindowPos2svMESA), - NAME_FUNC_OFFSET(19804, glWindowPos3dMESA, glWindowPos3dMESA, NULL, _gloffset_WindowPos3dMESA), - NAME_FUNC_OFFSET(19818, glWindowPos3dMESA, glWindowPos3dMESA, NULL, _gloffset_WindowPos3dMESA), - NAME_FUNC_OFFSET(19835, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, _gloffset_WindowPos3dvMESA), - NAME_FUNC_OFFSET(19850, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, _gloffset_WindowPos3dvMESA), - NAME_FUNC_OFFSET(19868, glWindowPos3fMESA, glWindowPos3fMESA, NULL, _gloffset_WindowPos3fMESA), - NAME_FUNC_OFFSET(19882, glWindowPos3fMESA, glWindowPos3fMESA, NULL, _gloffset_WindowPos3fMESA), - NAME_FUNC_OFFSET(19899, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, _gloffset_WindowPos3fvMESA), - NAME_FUNC_OFFSET(19914, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, _gloffset_WindowPos3fvMESA), - NAME_FUNC_OFFSET(19932, glWindowPos3iMESA, glWindowPos3iMESA, NULL, _gloffset_WindowPos3iMESA), - NAME_FUNC_OFFSET(19946, glWindowPos3iMESA, glWindowPos3iMESA, NULL, _gloffset_WindowPos3iMESA), - NAME_FUNC_OFFSET(19963, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, _gloffset_WindowPos3ivMESA), - NAME_FUNC_OFFSET(19978, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, _gloffset_WindowPos3ivMESA), - NAME_FUNC_OFFSET(19996, glWindowPos3sMESA, glWindowPos3sMESA, NULL, _gloffset_WindowPos3sMESA), - NAME_FUNC_OFFSET(20010, glWindowPos3sMESA, glWindowPos3sMESA, NULL, _gloffset_WindowPos3sMESA), - NAME_FUNC_OFFSET(20027, glWindowPos3svMESA, glWindowPos3svMESA, NULL, _gloffset_WindowPos3svMESA), - NAME_FUNC_OFFSET(20042, glWindowPos3svMESA, glWindowPos3svMESA, NULL, _gloffset_WindowPos3svMESA), - NAME_FUNC_OFFSET(20060, glBindProgramNV, glBindProgramNV, NULL, _gloffset_BindProgramNV), - NAME_FUNC_OFFSET(20077, glDeleteProgramsNV, glDeleteProgramsNV, NULL, _gloffset_DeleteProgramsNV), - NAME_FUNC_OFFSET(20097, glGenProgramsNV, glGenProgramsNV, NULL, _gloffset_GenProgramsNV), - NAME_FUNC_OFFSET(20114, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, _gloffset_GetVertexAttribPointervNV), - NAME_FUNC_OFFSET(20140, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, _gloffset_GetVertexAttribPointervNV), - NAME_FUNC_OFFSET(20169, glIsProgramNV, glIsProgramNV, NULL, _gloffset_IsProgramNV), - NAME_FUNC_OFFSET(20184, glPointParameteriNV, glPointParameteriNV, NULL, _gloffset_PointParameteriNV), - NAME_FUNC_OFFSET(20202, glPointParameterivNV, glPointParameterivNV, NULL, _gloffset_PointParameterivNV), - NAME_FUNC_OFFSET(20221, gl_dispatch_stub_767, gl_dispatch_stub_767, NULL, _gloffset_DeleteVertexArraysAPPLE), - NAME_FUNC_OFFSET(20242, gl_dispatch_stub_769, gl_dispatch_stub_769, NULL, _gloffset_IsVertexArrayAPPLE), - NAME_FUNC_OFFSET(20258, gl_dispatch_stub_777, gl_dispatch_stub_777, NULL, _gloffset_BlendEquationSeparateEXT), - NAME_FUNC_OFFSET(20282, gl_dispatch_stub_777, gl_dispatch_stub_777, NULL, _gloffset_BlendEquationSeparateEXT), - NAME_FUNC_OFFSET(20309, glBindFramebufferEXT, glBindFramebufferEXT, NULL, _gloffset_BindFramebufferEXT), - NAME_FUNC_OFFSET(20327, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, _gloffset_BindRenderbufferEXT), - NAME_FUNC_OFFSET(20346, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, _gloffset_CheckFramebufferStatusEXT), - NAME_FUNC_OFFSET(20371, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, _gloffset_DeleteFramebuffersEXT), - NAME_FUNC_OFFSET(20392, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, _gloffset_DeleteRenderbuffersEXT), - NAME_FUNC_OFFSET(20414, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, _gloffset_FramebufferRenderbufferEXT), - NAME_FUNC_OFFSET(20440, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, _gloffset_FramebufferTexture1DEXT), - NAME_FUNC_OFFSET(20463, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, _gloffset_FramebufferTexture2DEXT), - NAME_FUNC_OFFSET(20486, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, _gloffset_FramebufferTexture3DEXT), - NAME_FUNC_OFFSET(20509, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, _gloffset_GenFramebuffersEXT), - NAME_FUNC_OFFSET(20527, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, _gloffset_GenRenderbuffersEXT), - NAME_FUNC_OFFSET(20546, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, _gloffset_GenerateMipmapEXT), - NAME_FUNC_OFFSET(20563, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, _gloffset_GetFramebufferAttachmentParameterivEXT), - NAME_FUNC_OFFSET(20601, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, _gloffset_GetRenderbufferParameterivEXT), - NAME_FUNC_OFFSET(20630, glIsFramebufferEXT, glIsFramebufferEXT, NULL, _gloffset_IsFramebufferEXT), - NAME_FUNC_OFFSET(20646, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, _gloffset_IsRenderbufferEXT), - NAME_FUNC_OFFSET(20663, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, _gloffset_RenderbufferStorageEXT), - NAME_FUNC_OFFSET(20685, gl_dispatch_stub_795, gl_dispatch_stub_795, NULL, _gloffset_BlitFramebufferEXT), - NAME_FUNC_OFFSET(20703, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, _gloffset_FramebufferTextureLayerEXT), - NAME_FUNC_OFFSET(20729, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, _gloffset_BeginTransformFeedbackEXT), - NAME_FUNC_OFFSET(20754, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, _gloffset_BindBufferBaseEXT), - NAME_FUNC_OFFSET(20771, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, _gloffset_BindBufferRangeEXT), - NAME_FUNC_OFFSET(20789, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, _gloffset_EndTransformFeedbackEXT), - NAME_FUNC_OFFSET(20812, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, _gloffset_GetTransformFeedbackVaryingEXT), - NAME_FUNC_OFFSET(20842, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, _gloffset_TransformFeedbackVaryingsEXT), - NAME_FUNC_OFFSET(20870, glProvokingVertexEXT, glProvokingVertexEXT, NULL, _gloffset_ProvokingVertexEXT), + NAME_FUNC_OFFSET(15257, glColorTable, glColorTable, NULL, _gloffset_ColorTable), + NAME_FUNC_OFFSET(15273, glColorTableParameterfv, glColorTableParameterfv, NULL, _gloffset_ColorTableParameterfv), + NAME_FUNC_OFFSET(15300, glColorTableParameteriv, glColorTableParameteriv, NULL, _gloffset_ColorTableParameteriv), + NAME_FUNC_OFFSET(15327, glCopyColorTable, glCopyColorTable, NULL, _gloffset_CopyColorTable), + NAME_FUNC_OFFSET(15347, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, _gloffset_GetColorTable), + NAME_FUNC_OFFSET(15366, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, _gloffset_GetColorTable), + NAME_FUNC_OFFSET(15385, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, _gloffset_GetColorTableParameterfv), + NAME_FUNC_OFFSET(15415, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, _gloffset_GetColorTableParameterfv), + NAME_FUNC_OFFSET(15445, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, _gloffset_GetColorTableParameteriv), + NAME_FUNC_OFFSET(15475, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, _gloffset_GetColorTableParameteriv), + NAME_FUNC_OFFSET(15505, glColorSubTable, glColorSubTable, NULL, _gloffset_ColorSubTable), + NAME_FUNC_OFFSET(15524, glCopyColorSubTable, glCopyColorSubTable, NULL, _gloffset_CopyColorSubTable), + NAME_FUNC_OFFSET(15547, glConvolutionFilter1D, glConvolutionFilter1D, NULL, _gloffset_ConvolutionFilter1D), + NAME_FUNC_OFFSET(15572, glConvolutionFilter2D, glConvolutionFilter2D, NULL, _gloffset_ConvolutionFilter2D), + NAME_FUNC_OFFSET(15597, glConvolutionParameterf, glConvolutionParameterf, NULL, _gloffset_ConvolutionParameterf), + NAME_FUNC_OFFSET(15624, glConvolutionParameterfv, glConvolutionParameterfv, NULL, _gloffset_ConvolutionParameterfv), + NAME_FUNC_OFFSET(15652, glConvolutionParameteri, glConvolutionParameteri, NULL, _gloffset_ConvolutionParameteri), + NAME_FUNC_OFFSET(15679, glConvolutionParameteriv, glConvolutionParameteriv, NULL, _gloffset_ConvolutionParameteriv), + NAME_FUNC_OFFSET(15707, glCopyConvolutionFilter1D, glCopyConvolutionFilter1D, NULL, _gloffset_CopyConvolutionFilter1D), + NAME_FUNC_OFFSET(15736, glCopyConvolutionFilter2D, glCopyConvolutionFilter2D, NULL, _gloffset_CopyConvolutionFilter2D), + NAME_FUNC_OFFSET(15765, glGetConvolutionFilter, gl_dispatch_stub_356, gl_dispatch_stub_356, _gloffset_GetConvolutionFilter), + NAME_FUNC_OFFSET(15791, glGetConvolutionParameterfv, gl_dispatch_stub_357, gl_dispatch_stub_357, _gloffset_GetConvolutionParameterfv), + NAME_FUNC_OFFSET(15822, glGetConvolutionParameteriv, gl_dispatch_stub_358, gl_dispatch_stub_358, _gloffset_GetConvolutionParameteriv), + NAME_FUNC_OFFSET(15853, glGetSeparableFilter, gl_dispatch_stub_359, gl_dispatch_stub_359, _gloffset_GetSeparableFilter), + NAME_FUNC_OFFSET(15877, glSeparableFilter2D, glSeparableFilter2D, NULL, _gloffset_SeparableFilter2D), + NAME_FUNC_OFFSET(15900, glGetHistogram, gl_dispatch_stub_361, gl_dispatch_stub_361, _gloffset_GetHistogram), + NAME_FUNC_OFFSET(15918, glGetHistogramParameterfv, gl_dispatch_stub_362, gl_dispatch_stub_362, _gloffset_GetHistogramParameterfv), + NAME_FUNC_OFFSET(15947, glGetHistogramParameteriv, gl_dispatch_stub_363, gl_dispatch_stub_363, _gloffset_GetHistogramParameteriv), + NAME_FUNC_OFFSET(15976, glGetMinmax, gl_dispatch_stub_364, gl_dispatch_stub_364, _gloffset_GetMinmax), + NAME_FUNC_OFFSET(15991, glGetMinmaxParameterfv, gl_dispatch_stub_365, gl_dispatch_stub_365, _gloffset_GetMinmaxParameterfv), + NAME_FUNC_OFFSET(16017, glGetMinmaxParameteriv, gl_dispatch_stub_366, gl_dispatch_stub_366, _gloffset_GetMinmaxParameteriv), + NAME_FUNC_OFFSET(16043, glHistogram, glHistogram, NULL, _gloffset_Histogram), + NAME_FUNC_OFFSET(16058, glMinmax, glMinmax, NULL, _gloffset_Minmax), + NAME_FUNC_OFFSET(16070, glResetHistogram, glResetHistogram, NULL, _gloffset_ResetHistogram), + NAME_FUNC_OFFSET(16090, glResetMinmax, glResetMinmax, NULL, _gloffset_ResetMinmax), + NAME_FUNC_OFFSET(16107, glTexImage3D, glTexImage3D, NULL, _gloffset_TexImage3D), + NAME_FUNC_OFFSET(16123, glTexSubImage3D, glTexSubImage3D, NULL, _gloffset_TexSubImage3D), + NAME_FUNC_OFFSET(16142, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, _gloffset_CopyTexSubImage3D), + NAME_FUNC_OFFSET(16165, glActiveTextureARB, glActiveTextureARB, NULL, _gloffset_ActiveTextureARB), + NAME_FUNC_OFFSET(16181, glClientActiveTextureARB, glClientActiveTextureARB, NULL, _gloffset_ClientActiveTextureARB), + NAME_FUNC_OFFSET(16203, glMultiTexCoord1dARB, glMultiTexCoord1dARB, NULL, _gloffset_MultiTexCoord1dARB), + NAME_FUNC_OFFSET(16221, glMultiTexCoord1dvARB, glMultiTexCoord1dvARB, NULL, _gloffset_MultiTexCoord1dvARB), + NAME_FUNC_OFFSET(16240, glMultiTexCoord1fARB, glMultiTexCoord1fARB, NULL, _gloffset_MultiTexCoord1fARB), + NAME_FUNC_OFFSET(16258, glMultiTexCoord1fvARB, glMultiTexCoord1fvARB, NULL, _gloffset_MultiTexCoord1fvARB), + NAME_FUNC_OFFSET(16277, glMultiTexCoord1iARB, glMultiTexCoord1iARB, NULL, _gloffset_MultiTexCoord1iARB), + NAME_FUNC_OFFSET(16295, glMultiTexCoord1ivARB, glMultiTexCoord1ivARB, NULL, _gloffset_MultiTexCoord1ivARB), + NAME_FUNC_OFFSET(16314, glMultiTexCoord1sARB, glMultiTexCoord1sARB, NULL, _gloffset_MultiTexCoord1sARB), + NAME_FUNC_OFFSET(16332, glMultiTexCoord1svARB, glMultiTexCoord1svARB, NULL, _gloffset_MultiTexCoord1svARB), + NAME_FUNC_OFFSET(16351, glMultiTexCoord2dARB, glMultiTexCoord2dARB, NULL, _gloffset_MultiTexCoord2dARB), + NAME_FUNC_OFFSET(16369, glMultiTexCoord2dvARB, glMultiTexCoord2dvARB, NULL, _gloffset_MultiTexCoord2dvARB), + NAME_FUNC_OFFSET(16388, glMultiTexCoord2fARB, glMultiTexCoord2fARB, NULL, _gloffset_MultiTexCoord2fARB), + NAME_FUNC_OFFSET(16406, glMultiTexCoord2fvARB, glMultiTexCoord2fvARB, NULL, _gloffset_MultiTexCoord2fvARB), + NAME_FUNC_OFFSET(16425, glMultiTexCoord2iARB, glMultiTexCoord2iARB, NULL, _gloffset_MultiTexCoord2iARB), + NAME_FUNC_OFFSET(16443, glMultiTexCoord2ivARB, glMultiTexCoord2ivARB, NULL, _gloffset_MultiTexCoord2ivARB), + NAME_FUNC_OFFSET(16462, glMultiTexCoord2sARB, glMultiTexCoord2sARB, NULL, _gloffset_MultiTexCoord2sARB), + NAME_FUNC_OFFSET(16480, glMultiTexCoord2svARB, glMultiTexCoord2svARB, NULL, _gloffset_MultiTexCoord2svARB), + NAME_FUNC_OFFSET(16499, glMultiTexCoord3dARB, glMultiTexCoord3dARB, NULL, _gloffset_MultiTexCoord3dARB), + NAME_FUNC_OFFSET(16517, glMultiTexCoord3dvARB, glMultiTexCoord3dvARB, NULL, _gloffset_MultiTexCoord3dvARB), + NAME_FUNC_OFFSET(16536, glMultiTexCoord3fARB, glMultiTexCoord3fARB, NULL, _gloffset_MultiTexCoord3fARB), + NAME_FUNC_OFFSET(16554, glMultiTexCoord3fvARB, glMultiTexCoord3fvARB, NULL, _gloffset_MultiTexCoord3fvARB), + NAME_FUNC_OFFSET(16573, glMultiTexCoord3iARB, glMultiTexCoord3iARB, NULL, _gloffset_MultiTexCoord3iARB), + NAME_FUNC_OFFSET(16591, glMultiTexCoord3ivARB, glMultiTexCoord3ivARB, NULL, _gloffset_MultiTexCoord3ivARB), + NAME_FUNC_OFFSET(16610, glMultiTexCoord3sARB, glMultiTexCoord3sARB, NULL, _gloffset_MultiTexCoord3sARB), + NAME_FUNC_OFFSET(16628, glMultiTexCoord3svARB, glMultiTexCoord3svARB, NULL, _gloffset_MultiTexCoord3svARB), + NAME_FUNC_OFFSET(16647, glMultiTexCoord4dARB, glMultiTexCoord4dARB, NULL, _gloffset_MultiTexCoord4dARB), + NAME_FUNC_OFFSET(16665, glMultiTexCoord4dvARB, glMultiTexCoord4dvARB, NULL, _gloffset_MultiTexCoord4dvARB), + NAME_FUNC_OFFSET(16684, glMultiTexCoord4fARB, glMultiTexCoord4fARB, NULL, _gloffset_MultiTexCoord4fARB), + NAME_FUNC_OFFSET(16702, glMultiTexCoord4fvARB, glMultiTexCoord4fvARB, NULL, _gloffset_MultiTexCoord4fvARB), + NAME_FUNC_OFFSET(16721, glMultiTexCoord4iARB, glMultiTexCoord4iARB, NULL, _gloffset_MultiTexCoord4iARB), + NAME_FUNC_OFFSET(16739, glMultiTexCoord4ivARB, glMultiTexCoord4ivARB, NULL, _gloffset_MultiTexCoord4ivARB), + NAME_FUNC_OFFSET(16758, glMultiTexCoord4sARB, glMultiTexCoord4sARB, NULL, _gloffset_MultiTexCoord4sARB), + NAME_FUNC_OFFSET(16776, glMultiTexCoord4svARB, glMultiTexCoord4svARB, NULL, _gloffset_MultiTexCoord4svARB), + NAME_FUNC_OFFSET(16795, glStencilOpSeparate, glStencilOpSeparate, NULL, _gloffset_StencilOpSeparate), + NAME_FUNC_OFFSET(16818, glDrawArraysInstanced, glDrawArraysInstanced, NULL, _gloffset_DrawArraysInstanced), + NAME_FUNC_OFFSET(16843, glDrawArraysInstanced, glDrawArraysInstanced, NULL, _gloffset_DrawArraysInstanced), + NAME_FUNC_OFFSET(16868, glDrawElementsInstanced, glDrawElementsInstanced, NULL, _gloffset_DrawElementsInstanced), + NAME_FUNC_OFFSET(16895, glDrawElementsInstanced, glDrawElementsInstanced, NULL, _gloffset_DrawElementsInstanced), + NAME_FUNC_OFFSET(16922, glLoadTransposeMatrixdARB, glLoadTransposeMatrixdARB, NULL, _gloffset_LoadTransposeMatrixdARB), + NAME_FUNC_OFFSET(16945, glLoadTransposeMatrixfARB, glLoadTransposeMatrixfARB, NULL, _gloffset_LoadTransposeMatrixfARB), + NAME_FUNC_OFFSET(16968, glMultTransposeMatrixdARB, glMultTransposeMatrixdARB, NULL, _gloffset_MultTransposeMatrixdARB), + NAME_FUNC_OFFSET(16991, glMultTransposeMatrixfARB, glMultTransposeMatrixfARB, NULL, _gloffset_MultTransposeMatrixfARB), + NAME_FUNC_OFFSET(17014, glSampleCoverageARB, glSampleCoverageARB, NULL, _gloffset_SampleCoverageARB), + NAME_FUNC_OFFSET(17031, glCompressedTexImage1DARB, glCompressedTexImage1DARB, NULL, _gloffset_CompressedTexImage1DARB), + NAME_FUNC_OFFSET(17054, glCompressedTexImage2DARB, glCompressedTexImage2DARB, NULL, _gloffset_CompressedTexImage2DARB), + NAME_FUNC_OFFSET(17077, glCompressedTexImage3DARB, glCompressedTexImage3DARB, NULL, _gloffset_CompressedTexImage3DARB), + NAME_FUNC_OFFSET(17100, glCompressedTexSubImage1DARB, glCompressedTexSubImage1DARB, NULL, _gloffset_CompressedTexSubImage1DARB), + NAME_FUNC_OFFSET(17126, glCompressedTexSubImage2DARB, glCompressedTexSubImage2DARB, NULL, _gloffset_CompressedTexSubImage2DARB), + NAME_FUNC_OFFSET(17152, glCompressedTexSubImage3DARB, glCompressedTexSubImage3DARB, NULL, _gloffset_CompressedTexSubImage3DARB), + NAME_FUNC_OFFSET(17178, glGetCompressedTexImageARB, glGetCompressedTexImageARB, NULL, _gloffset_GetCompressedTexImageARB), + NAME_FUNC_OFFSET(17202, glDisableVertexAttribArrayARB, glDisableVertexAttribArrayARB, NULL, _gloffset_DisableVertexAttribArrayARB), + NAME_FUNC_OFFSET(17229, glEnableVertexAttribArrayARB, glEnableVertexAttribArrayARB, NULL, _gloffset_EnableVertexAttribArrayARB), + NAME_FUNC_OFFSET(17255, glGetVertexAttribdvARB, glGetVertexAttribdvARB, NULL, _gloffset_GetVertexAttribdvARB), + NAME_FUNC_OFFSET(17275, glGetVertexAttribfvARB, glGetVertexAttribfvARB, NULL, _gloffset_GetVertexAttribfvARB), + NAME_FUNC_OFFSET(17295, glGetVertexAttribivARB, glGetVertexAttribivARB, NULL, _gloffset_GetVertexAttribivARB), + NAME_FUNC_OFFSET(17315, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, _gloffset_ProgramEnvParameter4dARB), + NAME_FUNC_OFFSET(17338, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, _gloffset_ProgramEnvParameter4dvARB), + NAME_FUNC_OFFSET(17362, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, _gloffset_ProgramEnvParameter4fARB), + NAME_FUNC_OFFSET(17385, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, _gloffset_ProgramEnvParameter4fvARB), + NAME_FUNC_OFFSET(17409, glVertexAttrib1dARB, glVertexAttrib1dARB, NULL, _gloffset_VertexAttrib1dARB), + NAME_FUNC_OFFSET(17426, glVertexAttrib1dvARB, glVertexAttrib1dvARB, NULL, _gloffset_VertexAttrib1dvARB), + NAME_FUNC_OFFSET(17444, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, _gloffset_VertexAttrib1fARB), + NAME_FUNC_OFFSET(17461, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, _gloffset_VertexAttrib1fvARB), + NAME_FUNC_OFFSET(17479, glVertexAttrib1sARB, glVertexAttrib1sARB, NULL, _gloffset_VertexAttrib1sARB), + NAME_FUNC_OFFSET(17496, glVertexAttrib1svARB, glVertexAttrib1svARB, NULL, _gloffset_VertexAttrib1svARB), + NAME_FUNC_OFFSET(17514, glVertexAttrib2dARB, glVertexAttrib2dARB, NULL, _gloffset_VertexAttrib2dARB), + NAME_FUNC_OFFSET(17531, glVertexAttrib2dvARB, glVertexAttrib2dvARB, NULL, _gloffset_VertexAttrib2dvARB), + NAME_FUNC_OFFSET(17549, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, _gloffset_VertexAttrib2fARB), + NAME_FUNC_OFFSET(17566, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, _gloffset_VertexAttrib2fvARB), + NAME_FUNC_OFFSET(17584, glVertexAttrib2sARB, glVertexAttrib2sARB, NULL, _gloffset_VertexAttrib2sARB), + NAME_FUNC_OFFSET(17601, glVertexAttrib2svARB, glVertexAttrib2svARB, NULL, _gloffset_VertexAttrib2svARB), + NAME_FUNC_OFFSET(17619, glVertexAttrib3dARB, glVertexAttrib3dARB, NULL, _gloffset_VertexAttrib3dARB), + NAME_FUNC_OFFSET(17636, glVertexAttrib3dvARB, glVertexAttrib3dvARB, NULL, _gloffset_VertexAttrib3dvARB), + NAME_FUNC_OFFSET(17654, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, _gloffset_VertexAttrib3fARB), + NAME_FUNC_OFFSET(17671, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, _gloffset_VertexAttrib3fvARB), + NAME_FUNC_OFFSET(17689, glVertexAttrib3sARB, glVertexAttrib3sARB, NULL, _gloffset_VertexAttrib3sARB), + NAME_FUNC_OFFSET(17706, glVertexAttrib3svARB, glVertexAttrib3svARB, NULL, _gloffset_VertexAttrib3svARB), + NAME_FUNC_OFFSET(17724, glVertexAttrib4NbvARB, glVertexAttrib4NbvARB, NULL, _gloffset_VertexAttrib4NbvARB), + NAME_FUNC_OFFSET(17743, glVertexAttrib4NivARB, glVertexAttrib4NivARB, NULL, _gloffset_VertexAttrib4NivARB), + NAME_FUNC_OFFSET(17762, glVertexAttrib4NsvARB, glVertexAttrib4NsvARB, NULL, _gloffset_VertexAttrib4NsvARB), + NAME_FUNC_OFFSET(17781, glVertexAttrib4NubARB, glVertexAttrib4NubARB, NULL, _gloffset_VertexAttrib4NubARB), + NAME_FUNC_OFFSET(17800, glVertexAttrib4NubvARB, glVertexAttrib4NubvARB, NULL, _gloffset_VertexAttrib4NubvARB), + NAME_FUNC_OFFSET(17820, glVertexAttrib4NuivARB, glVertexAttrib4NuivARB, NULL, _gloffset_VertexAttrib4NuivARB), + NAME_FUNC_OFFSET(17840, glVertexAttrib4NusvARB, glVertexAttrib4NusvARB, NULL, _gloffset_VertexAttrib4NusvARB), + NAME_FUNC_OFFSET(17860, glVertexAttrib4bvARB, glVertexAttrib4bvARB, NULL, _gloffset_VertexAttrib4bvARB), + NAME_FUNC_OFFSET(17878, glVertexAttrib4dARB, glVertexAttrib4dARB, NULL, _gloffset_VertexAttrib4dARB), + NAME_FUNC_OFFSET(17895, glVertexAttrib4dvARB, glVertexAttrib4dvARB, NULL, _gloffset_VertexAttrib4dvARB), + NAME_FUNC_OFFSET(17913, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, _gloffset_VertexAttrib4fARB), + NAME_FUNC_OFFSET(17930, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, _gloffset_VertexAttrib4fvARB), + NAME_FUNC_OFFSET(17948, glVertexAttrib4ivARB, glVertexAttrib4ivARB, NULL, _gloffset_VertexAttrib4ivARB), + NAME_FUNC_OFFSET(17966, glVertexAttrib4sARB, glVertexAttrib4sARB, NULL, _gloffset_VertexAttrib4sARB), + NAME_FUNC_OFFSET(17983, glVertexAttrib4svARB, glVertexAttrib4svARB, NULL, _gloffset_VertexAttrib4svARB), + NAME_FUNC_OFFSET(18001, glVertexAttrib4ubvARB, glVertexAttrib4ubvARB, NULL, _gloffset_VertexAttrib4ubvARB), + NAME_FUNC_OFFSET(18020, glVertexAttrib4uivARB, glVertexAttrib4uivARB, NULL, _gloffset_VertexAttrib4uivARB), + NAME_FUNC_OFFSET(18039, glVertexAttrib4usvARB, glVertexAttrib4usvARB, NULL, _gloffset_VertexAttrib4usvARB), + NAME_FUNC_OFFSET(18058, glVertexAttribPointerARB, glVertexAttribPointerARB, NULL, _gloffset_VertexAttribPointerARB), + NAME_FUNC_OFFSET(18080, glBindBufferARB, glBindBufferARB, NULL, _gloffset_BindBufferARB), + NAME_FUNC_OFFSET(18093, glBufferDataARB, glBufferDataARB, NULL, _gloffset_BufferDataARB), + NAME_FUNC_OFFSET(18106, glBufferSubDataARB, glBufferSubDataARB, NULL, _gloffset_BufferSubDataARB), + NAME_FUNC_OFFSET(18122, glDeleteBuffersARB, glDeleteBuffersARB, NULL, _gloffset_DeleteBuffersARB), + NAME_FUNC_OFFSET(18138, glGenBuffersARB, glGenBuffersARB, NULL, _gloffset_GenBuffersARB), + NAME_FUNC_OFFSET(18151, glGetBufferParameterivARB, glGetBufferParameterivARB, NULL, _gloffset_GetBufferParameterivARB), + NAME_FUNC_OFFSET(18174, glGetBufferPointervARB, glGetBufferPointervARB, NULL, _gloffset_GetBufferPointervARB), + NAME_FUNC_OFFSET(18194, glGetBufferSubDataARB, glGetBufferSubDataARB, NULL, _gloffset_GetBufferSubDataARB), + NAME_FUNC_OFFSET(18213, glIsBufferARB, glIsBufferARB, NULL, _gloffset_IsBufferARB), + NAME_FUNC_OFFSET(18224, glMapBufferARB, glMapBufferARB, NULL, _gloffset_MapBufferARB), + NAME_FUNC_OFFSET(18236, glUnmapBufferARB, glUnmapBufferARB, NULL, _gloffset_UnmapBufferARB), + NAME_FUNC_OFFSET(18250, glBeginQueryARB, glBeginQueryARB, NULL, _gloffset_BeginQueryARB), + NAME_FUNC_OFFSET(18263, glDeleteQueriesARB, glDeleteQueriesARB, NULL, _gloffset_DeleteQueriesARB), + NAME_FUNC_OFFSET(18279, glEndQueryARB, glEndQueryARB, NULL, _gloffset_EndQueryARB), + NAME_FUNC_OFFSET(18290, glGenQueriesARB, glGenQueriesARB, NULL, _gloffset_GenQueriesARB), + NAME_FUNC_OFFSET(18303, glGetQueryObjectivARB, glGetQueryObjectivARB, NULL, _gloffset_GetQueryObjectivARB), + NAME_FUNC_OFFSET(18322, glGetQueryObjectuivARB, glGetQueryObjectuivARB, NULL, _gloffset_GetQueryObjectuivARB), + NAME_FUNC_OFFSET(18342, glGetQueryivARB, glGetQueryivARB, NULL, _gloffset_GetQueryivARB), + NAME_FUNC_OFFSET(18355, glIsQueryARB, glIsQueryARB, NULL, _gloffset_IsQueryARB), + NAME_FUNC_OFFSET(18365, glCompileShaderARB, glCompileShaderARB, NULL, _gloffset_CompileShaderARB), + NAME_FUNC_OFFSET(18381, glGetActiveUniformARB, glGetActiveUniformARB, NULL, _gloffset_GetActiveUniformARB), + NAME_FUNC_OFFSET(18400, glGetShaderSourceARB, glGetShaderSourceARB, NULL, _gloffset_GetShaderSourceARB), + NAME_FUNC_OFFSET(18418, glGetUniformLocationARB, glGetUniformLocationARB, NULL, _gloffset_GetUniformLocationARB), + NAME_FUNC_OFFSET(18439, glGetUniformfvARB, glGetUniformfvARB, NULL, _gloffset_GetUniformfvARB), + NAME_FUNC_OFFSET(18454, glGetUniformivARB, glGetUniformivARB, NULL, _gloffset_GetUniformivARB), + NAME_FUNC_OFFSET(18469, glLinkProgramARB, glLinkProgramARB, NULL, _gloffset_LinkProgramARB), + NAME_FUNC_OFFSET(18483, glShaderSourceARB, glShaderSourceARB, NULL, _gloffset_ShaderSourceARB), + NAME_FUNC_OFFSET(18498, glUniform1fARB, glUniform1fARB, NULL, _gloffset_Uniform1fARB), + NAME_FUNC_OFFSET(18510, glUniform1fvARB, glUniform1fvARB, NULL, _gloffset_Uniform1fvARB), + NAME_FUNC_OFFSET(18523, glUniform1iARB, glUniform1iARB, NULL, _gloffset_Uniform1iARB), + NAME_FUNC_OFFSET(18535, glUniform1ivARB, glUniform1ivARB, NULL, _gloffset_Uniform1ivARB), + NAME_FUNC_OFFSET(18548, glUniform2fARB, glUniform2fARB, NULL, _gloffset_Uniform2fARB), + NAME_FUNC_OFFSET(18560, glUniform2fvARB, glUniform2fvARB, NULL, _gloffset_Uniform2fvARB), + NAME_FUNC_OFFSET(18573, glUniform2iARB, glUniform2iARB, NULL, _gloffset_Uniform2iARB), + NAME_FUNC_OFFSET(18585, glUniform2ivARB, glUniform2ivARB, NULL, _gloffset_Uniform2ivARB), + NAME_FUNC_OFFSET(18598, glUniform3fARB, glUniform3fARB, NULL, _gloffset_Uniform3fARB), + NAME_FUNC_OFFSET(18610, glUniform3fvARB, glUniform3fvARB, NULL, _gloffset_Uniform3fvARB), + NAME_FUNC_OFFSET(18623, glUniform3iARB, glUniform3iARB, NULL, _gloffset_Uniform3iARB), + NAME_FUNC_OFFSET(18635, glUniform3ivARB, glUniform3ivARB, NULL, _gloffset_Uniform3ivARB), + NAME_FUNC_OFFSET(18648, glUniform4fARB, glUniform4fARB, NULL, _gloffset_Uniform4fARB), + NAME_FUNC_OFFSET(18660, glUniform4fvARB, glUniform4fvARB, NULL, _gloffset_Uniform4fvARB), + NAME_FUNC_OFFSET(18673, glUniform4iARB, glUniform4iARB, NULL, _gloffset_Uniform4iARB), + NAME_FUNC_OFFSET(18685, glUniform4ivARB, glUniform4ivARB, NULL, _gloffset_Uniform4ivARB), + NAME_FUNC_OFFSET(18698, glUniformMatrix2fvARB, glUniformMatrix2fvARB, NULL, _gloffset_UniformMatrix2fvARB), + NAME_FUNC_OFFSET(18717, glUniformMatrix3fvARB, glUniformMatrix3fvARB, NULL, _gloffset_UniformMatrix3fvARB), + NAME_FUNC_OFFSET(18736, glUniformMatrix4fvARB, glUniformMatrix4fvARB, NULL, _gloffset_UniformMatrix4fvARB), + NAME_FUNC_OFFSET(18755, glUseProgramObjectARB, glUseProgramObjectARB, NULL, _gloffset_UseProgramObjectARB), + NAME_FUNC_OFFSET(18768, glValidateProgramARB, glValidateProgramARB, NULL, _gloffset_ValidateProgramARB), + NAME_FUNC_OFFSET(18786, glBindAttribLocationARB, glBindAttribLocationARB, NULL, _gloffset_BindAttribLocationARB), + NAME_FUNC_OFFSET(18807, glGetActiveAttribARB, glGetActiveAttribARB, NULL, _gloffset_GetActiveAttribARB), + NAME_FUNC_OFFSET(18825, glGetAttribLocationARB, glGetAttribLocationARB, NULL, _gloffset_GetAttribLocationARB), + NAME_FUNC_OFFSET(18845, glDrawBuffersARB, glDrawBuffersARB, NULL, _gloffset_DrawBuffersARB), + NAME_FUNC_OFFSET(18859, glDrawBuffersARB, glDrawBuffersARB, NULL, _gloffset_DrawBuffersARB), + NAME_FUNC_OFFSET(18876, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, _gloffset_RenderbufferStorageMultisample), + NAME_FUNC_OFFSET(18912, gl_dispatch_stub_597, gl_dispatch_stub_597, NULL, _gloffset_SampleMaskSGIS), + NAME_FUNC_OFFSET(18928, gl_dispatch_stub_598, gl_dispatch_stub_598, NULL, _gloffset_SamplePatternSGIS), + NAME_FUNC_OFFSET(18947, glPointParameterfEXT, glPointParameterfEXT, NULL, _gloffset_PointParameterfEXT), + NAME_FUNC_OFFSET(18965, glPointParameterfEXT, glPointParameterfEXT, NULL, _gloffset_PointParameterfEXT), + NAME_FUNC_OFFSET(18986, glPointParameterfEXT, glPointParameterfEXT, NULL, _gloffset_PointParameterfEXT), + NAME_FUNC_OFFSET(19008, glPointParameterfvEXT, glPointParameterfvEXT, NULL, _gloffset_PointParameterfvEXT), + NAME_FUNC_OFFSET(19027, glPointParameterfvEXT, glPointParameterfvEXT, NULL, _gloffset_PointParameterfvEXT), + NAME_FUNC_OFFSET(19049, glPointParameterfvEXT, glPointParameterfvEXT, NULL, _gloffset_PointParameterfvEXT), + NAME_FUNC_OFFSET(19072, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, _gloffset_SecondaryColor3bEXT), + NAME_FUNC_OFFSET(19091, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, _gloffset_SecondaryColor3bvEXT), + NAME_FUNC_OFFSET(19111, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, _gloffset_SecondaryColor3dEXT), + NAME_FUNC_OFFSET(19130, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, _gloffset_SecondaryColor3dvEXT), + NAME_FUNC_OFFSET(19150, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, _gloffset_SecondaryColor3fEXT), + NAME_FUNC_OFFSET(19169, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, _gloffset_SecondaryColor3fvEXT), + NAME_FUNC_OFFSET(19189, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, _gloffset_SecondaryColor3iEXT), + NAME_FUNC_OFFSET(19208, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, _gloffset_SecondaryColor3ivEXT), + NAME_FUNC_OFFSET(19228, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, _gloffset_SecondaryColor3sEXT), + NAME_FUNC_OFFSET(19247, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, _gloffset_SecondaryColor3svEXT), + NAME_FUNC_OFFSET(19267, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, _gloffset_SecondaryColor3ubEXT), + NAME_FUNC_OFFSET(19287, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, _gloffset_SecondaryColor3ubvEXT), + NAME_FUNC_OFFSET(19308, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, _gloffset_SecondaryColor3uiEXT), + NAME_FUNC_OFFSET(19328, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, _gloffset_SecondaryColor3uivEXT), + NAME_FUNC_OFFSET(19349, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, _gloffset_SecondaryColor3usEXT), + NAME_FUNC_OFFSET(19369, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, _gloffset_SecondaryColor3usvEXT), + NAME_FUNC_OFFSET(19390, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, _gloffset_SecondaryColorPointerEXT), + NAME_FUNC_OFFSET(19414, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, _gloffset_MultiDrawArraysEXT), + NAME_FUNC_OFFSET(19432, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, _gloffset_MultiDrawElementsEXT), + NAME_FUNC_OFFSET(19452, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, _gloffset_FogCoordPointerEXT), + NAME_FUNC_OFFSET(19470, glFogCoorddEXT, glFogCoorddEXT, NULL, _gloffset_FogCoorddEXT), + NAME_FUNC_OFFSET(19482, glFogCoorddvEXT, glFogCoorddvEXT, NULL, _gloffset_FogCoorddvEXT), + NAME_FUNC_OFFSET(19495, glFogCoordfEXT, glFogCoordfEXT, NULL, _gloffset_FogCoordfEXT), + NAME_FUNC_OFFSET(19507, glFogCoordfvEXT, glFogCoordfvEXT, NULL, _gloffset_FogCoordfvEXT), + NAME_FUNC_OFFSET(19520, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, _gloffset_BlendFuncSeparateEXT), + NAME_FUNC_OFFSET(19540, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, _gloffset_BlendFuncSeparateEXT), + NAME_FUNC_OFFSET(19564, glWindowPos2dMESA, glWindowPos2dMESA, NULL, _gloffset_WindowPos2dMESA), + NAME_FUNC_OFFSET(19578, glWindowPos2dMESA, glWindowPos2dMESA, NULL, _gloffset_WindowPos2dMESA), + NAME_FUNC_OFFSET(19595, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, _gloffset_WindowPos2dvMESA), + NAME_FUNC_OFFSET(19610, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, _gloffset_WindowPos2dvMESA), + NAME_FUNC_OFFSET(19628, glWindowPos2fMESA, glWindowPos2fMESA, NULL, _gloffset_WindowPos2fMESA), + NAME_FUNC_OFFSET(19642, glWindowPos2fMESA, glWindowPos2fMESA, NULL, _gloffset_WindowPos2fMESA), + NAME_FUNC_OFFSET(19659, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, _gloffset_WindowPos2fvMESA), + NAME_FUNC_OFFSET(19674, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, _gloffset_WindowPos2fvMESA), + NAME_FUNC_OFFSET(19692, glWindowPos2iMESA, glWindowPos2iMESA, NULL, _gloffset_WindowPos2iMESA), + NAME_FUNC_OFFSET(19706, glWindowPos2iMESA, glWindowPos2iMESA, NULL, _gloffset_WindowPos2iMESA), + NAME_FUNC_OFFSET(19723, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, _gloffset_WindowPos2ivMESA), + NAME_FUNC_OFFSET(19738, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, _gloffset_WindowPos2ivMESA), + NAME_FUNC_OFFSET(19756, glWindowPos2sMESA, glWindowPos2sMESA, NULL, _gloffset_WindowPos2sMESA), + NAME_FUNC_OFFSET(19770, glWindowPos2sMESA, glWindowPos2sMESA, NULL, _gloffset_WindowPos2sMESA), + NAME_FUNC_OFFSET(19787, glWindowPos2svMESA, glWindowPos2svMESA, NULL, _gloffset_WindowPos2svMESA), + NAME_FUNC_OFFSET(19802, glWindowPos2svMESA, glWindowPos2svMESA, NULL, _gloffset_WindowPos2svMESA), + NAME_FUNC_OFFSET(19820, glWindowPos3dMESA, glWindowPos3dMESA, NULL, _gloffset_WindowPos3dMESA), + NAME_FUNC_OFFSET(19834, glWindowPos3dMESA, glWindowPos3dMESA, NULL, _gloffset_WindowPos3dMESA), + NAME_FUNC_OFFSET(19851, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, _gloffset_WindowPos3dvMESA), + NAME_FUNC_OFFSET(19866, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, _gloffset_WindowPos3dvMESA), + NAME_FUNC_OFFSET(19884, glWindowPos3fMESA, glWindowPos3fMESA, NULL, _gloffset_WindowPos3fMESA), + NAME_FUNC_OFFSET(19898, glWindowPos3fMESA, glWindowPos3fMESA, NULL, _gloffset_WindowPos3fMESA), + NAME_FUNC_OFFSET(19915, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, _gloffset_WindowPos3fvMESA), + NAME_FUNC_OFFSET(19930, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, _gloffset_WindowPos3fvMESA), + NAME_FUNC_OFFSET(19948, glWindowPos3iMESA, glWindowPos3iMESA, NULL, _gloffset_WindowPos3iMESA), + NAME_FUNC_OFFSET(19962, glWindowPos3iMESA, glWindowPos3iMESA, NULL, _gloffset_WindowPos3iMESA), + NAME_FUNC_OFFSET(19979, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, _gloffset_WindowPos3ivMESA), + NAME_FUNC_OFFSET(19994, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, _gloffset_WindowPos3ivMESA), + NAME_FUNC_OFFSET(20012, glWindowPos3sMESA, glWindowPos3sMESA, NULL, _gloffset_WindowPos3sMESA), + NAME_FUNC_OFFSET(20026, glWindowPos3sMESA, glWindowPos3sMESA, NULL, _gloffset_WindowPos3sMESA), + NAME_FUNC_OFFSET(20043, glWindowPos3svMESA, glWindowPos3svMESA, NULL, _gloffset_WindowPos3svMESA), + NAME_FUNC_OFFSET(20058, glWindowPos3svMESA, glWindowPos3svMESA, NULL, _gloffset_WindowPos3svMESA), + NAME_FUNC_OFFSET(20076, glBindProgramNV, glBindProgramNV, NULL, _gloffset_BindProgramNV), + NAME_FUNC_OFFSET(20093, glDeleteProgramsNV, glDeleteProgramsNV, NULL, _gloffset_DeleteProgramsNV), + NAME_FUNC_OFFSET(20113, glGenProgramsNV, glGenProgramsNV, NULL, _gloffset_GenProgramsNV), + NAME_FUNC_OFFSET(20130, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, _gloffset_GetVertexAttribPointervNV), + NAME_FUNC_OFFSET(20156, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, _gloffset_GetVertexAttribPointervNV), + NAME_FUNC_OFFSET(20185, glIsProgramNV, glIsProgramNV, NULL, _gloffset_IsProgramNV), + NAME_FUNC_OFFSET(20200, glPointParameteriNV, glPointParameteriNV, NULL, _gloffset_PointParameteriNV), + NAME_FUNC_OFFSET(20218, glPointParameterivNV, glPointParameterivNV, NULL, _gloffset_PointParameterivNV), + NAME_FUNC_OFFSET(20237, gl_dispatch_stub_768, gl_dispatch_stub_768, NULL, _gloffset_DeleteVertexArraysAPPLE), + NAME_FUNC_OFFSET(20258, gl_dispatch_stub_770, gl_dispatch_stub_770, NULL, _gloffset_IsVertexArrayAPPLE), + NAME_FUNC_OFFSET(20274, gl_dispatch_stub_778, gl_dispatch_stub_778, NULL, _gloffset_BlendEquationSeparateEXT), + NAME_FUNC_OFFSET(20298, gl_dispatch_stub_778, gl_dispatch_stub_778, NULL, _gloffset_BlendEquationSeparateEXT), + NAME_FUNC_OFFSET(20325, glBindFramebufferEXT, glBindFramebufferEXT, NULL, _gloffset_BindFramebufferEXT), + NAME_FUNC_OFFSET(20343, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, _gloffset_BindRenderbufferEXT), + NAME_FUNC_OFFSET(20362, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, _gloffset_CheckFramebufferStatusEXT), + NAME_FUNC_OFFSET(20387, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, _gloffset_DeleteFramebuffersEXT), + NAME_FUNC_OFFSET(20408, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, _gloffset_DeleteRenderbuffersEXT), + NAME_FUNC_OFFSET(20430, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, _gloffset_FramebufferRenderbufferEXT), + NAME_FUNC_OFFSET(20456, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, _gloffset_FramebufferTexture1DEXT), + NAME_FUNC_OFFSET(20479, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, _gloffset_FramebufferTexture2DEXT), + NAME_FUNC_OFFSET(20502, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, _gloffset_FramebufferTexture3DEXT), + NAME_FUNC_OFFSET(20525, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, _gloffset_GenFramebuffersEXT), + NAME_FUNC_OFFSET(20543, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, _gloffset_GenRenderbuffersEXT), + NAME_FUNC_OFFSET(20562, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, _gloffset_GenerateMipmapEXT), + NAME_FUNC_OFFSET(20579, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, _gloffset_GetFramebufferAttachmentParameterivEXT), + NAME_FUNC_OFFSET(20617, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, _gloffset_GetRenderbufferParameterivEXT), + NAME_FUNC_OFFSET(20646, glIsFramebufferEXT, glIsFramebufferEXT, NULL, _gloffset_IsFramebufferEXT), + NAME_FUNC_OFFSET(20662, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, _gloffset_IsRenderbufferEXT), + NAME_FUNC_OFFSET(20679, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, _gloffset_RenderbufferStorageEXT), + NAME_FUNC_OFFSET(20701, gl_dispatch_stub_796, gl_dispatch_stub_796, NULL, _gloffset_BlitFramebufferEXT), + NAME_FUNC_OFFSET(20719, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, _gloffset_FramebufferTextureLayerEXT), + NAME_FUNC_OFFSET(20745, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, _gloffset_BeginTransformFeedbackEXT), + NAME_FUNC_OFFSET(20770, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, _gloffset_BindBufferBaseEXT), + NAME_FUNC_OFFSET(20787, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, _gloffset_BindBufferRangeEXT), + NAME_FUNC_OFFSET(20805, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, _gloffset_EndTransformFeedbackEXT), + NAME_FUNC_OFFSET(20828, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, _gloffset_GetTransformFeedbackVaryingEXT), + NAME_FUNC_OFFSET(20858, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, _gloffset_TransformFeedbackVaryingsEXT), + NAME_FUNC_OFFSET(20886, glProvokingVertexEXT, glProvokingVertexEXT, NULL, _gloffset_ProvokingVertexEXT), NAME_FUNC_OFFSET(-1, NULL, NULL, NULL, 0) }; diff --git a/src/mesa/main/enums.c b/src/mesa/main/enums.c index bc18e1b113..3990964b8a 100644 --- a/src/mesa/main/enums.c +++ b/src/mesa/main/enums.c @@ -175,11 +175,14 @@ LONGSTRING static const char enum_string_table[] = "GL_C4UB_V3F\0" "GL_CCW\0" "GL_CLAMP\0" + "GL_CLAMP_FRAGMENT_COLOR_ARB\0" + "GL_CLAMP_READ_COLOR_ARB\0" "GL_CLAMP_TO_BORDER\0" "GL_CLAMP_TO_BORDER_ARB\0" "GL_CLAMP_TO_BORDER_SGIS\0" "GL_CLAMP_TO_EDGE\0" "GL_CLAMP_TO_EDGE_SGIS\0" + "GL_CLAMP_VERTEX_COLOR_ARB\0" "GL_CLEAR\0" "GL_CLIENT_ACTIVE_TEXTURE\0" "GL_CLIENT_ACTIVE_TEXTURE_ARB\0" @@ -547,6 +550,7 @@ LONGSTRING static const char enum_string_table[] = "GL_FIRST_VERTEX_CONVENTION_EXT\0" "GL_FIXED\0" "GL_FIXED_OES\0" + "GL_FIXED_ONLY_ARB\0" "GL_FLAT\0" "GL_FLOAT\0" "GL_FLOAT_MAT2\0" @@ -1548,6 +1552,7 @@ LONGSTRING static const char enum_string_table[] = "GL_RGBA8_OES\0" "GL_RGBA8_SNORM\0" "GL_RGBA_DXT5_S3TC\0" + "GL_RGBA_FLOAT_MODE_ARB\0" "GL_RGBA_MODE\0" "GL_RGBA_S3TC\0" "GL_RGBA_SNORM\0" @@ -2103,7 +2108,7 @@ LONGSTRING static const char enum_string_table[] = "GL_ZOOM_Y\0" ; -static const enum_elt all_enums[2065] = +static const enum_elt all_enums[2070] = { { 0, 0x00000600 }, /* GL_2D */ { 6, 0x00001407 }, /* GL_2_BYTES */ @@ -2244,3358 +2249,3368 @@ static const enum_elt all_enums[2065] = { 2378, 0x00002A23 }, /* GL_C4UB_V3F */ { 2390, 0x00000901 }, /* GL_CCW */ { 2397, 0x00002900 }, /* GL_CLAMP */ - { 2406, 0x0000812D }, /* GL_CLAMP_TO_BORDER */ - { 2425, 0x0000812D }, /* GL_CLAMP_TO_BORDER_ARB */ - { 2448, 0x0000812D }, /* GL_CLAMP_TO_BORDER_SGIS */ - { 2472, 0x0000812F }, /* GL_CLAMP_TO_EDGE */ - { 2489, 0x0000812F }, /* GL_CLAMP_TO_EDGE_SGIS */ - { 2511, 0x00001500 }, /* GL_CLEAR */ - { 2520, 0x000084E1 }, /* GL_CLIENT_ACTIVE_TEXTURE */ - { 2545, 0x000084E1 }, /* GL_CLIENT_ACTIVE_TEXTURE_ARB */ - { 2574, 0xFFFFFFFF }, /* GL_CLIENT_ALL_ATTRIB_BITS */ - { 2600, 0x00000BB1 }, /* GL_CLIENT_ATTRIB_STACK_DEPTH */ - { 2629, 0x00000001 }, /* GL_CLIENT_PIXEL_STORE_BIT */ - { 2655, 0x00000002 }, /* GL_CLIENT_VERTEX_ARRAY_BIT */ - { 2682, 0x00003000 }, /* GL_CLIP_PLANE0 */ - { 2697, 0x00003001 }, /* GL_CLIP_PLANE1 */ - { 2712, 0x00003002 }, /* GL_CLIP_PLANE2 */ - { 2727, 0x00003003 }, /* GL_CLIP_PLANE3 */ - { 2742, 0x00003004 }, /* GL_CLIP_PLANE4 */ - { 2757, 0x00003005 }, /* GL_CLIP_PLANE5 */ - { 2772, 0x000080F0 }, /* GL_CLIP_VOLUME_CLIPPING_HINT_EXT */ - { 2805, 0x00000A00 }, /* GL_COEFF */ - { 2814, 0x00001800 }, /* GL_COLOR */ - { 2823, 0x00008076 }, /* GL_COLOR_ARRAY */ - { 2838, 0x00008898 }, /* GL_COLOR_ARRAY_BUFFER_BINDING */ - { 2868, 0x00008898 }, /* GL_COLOR_ARRAY_BUFFER_BINDING_ARB */ - { 2902, 0x00008090 }, /* GL_COLOR_ARRAY_POINTER */ - { 2925, 0x00008081 }, /* GL_COLOR_ARRAY_SIZE */ - { 2945, 0x00008083 }, /* GL_COLOR_ARRAY_STRIDE */ - { 2967, 0x00008082 }, /* GL_COLOR_ARRAY_TYPE */ - { 2987, 0x00008CE0 }, /* GL_COLOR_ATTACHMENT0 */ - { 3008, 0x00008CE0 }, /* GL_COLOR_ATTACHMENT0_EXT */ - { 3033, 0x00008CE0 }, /* GL_COLOR_ATTACHMENT0_OES */ - { 3058, 0x00008CE1 }, /* GL_COLOR_ATTACHMENT1 */ - { 3079, 0x00008CEA }, /* GL_COLOR_ATTACHMENT10 */ - { 3101, 0x00008CEA }, /* GL_COLOR_ATTACHMENT10_EXT */ - { 3127, 0x00008CEB }, /* GL_COLOR_ATTACHMENT11 */ - { 3149, 0x00008CEB }, /* GL_COLOR_ATTACHMENT11_EXT */ - { 3175, 0x00008CEC }, /* GL_COLOR_ATTACHMENT12 */ - { 3197, 0x00008CEC }, /* GL_COLOR_ATTACHMENT12_EXT */ - { 3223, 0x00008CED }, /* GL_COLOR_ATTACHMENT13 */ - { 3245, 0x00008CED }, /* GL_COLOR_ATTACHMENT13_EXT */ - { 3271, 0x00008CEE }, /* GL_COLOR_ATTACHMENT14 */ - { 3293, 0x00008CEE }, /* GL_COLOR_ATTACHMENT14_EXT */ - { 3319, 0x00008CEF }, /* GL_COLOR_ATTACHMENT15 */ - { 3341, 0x00008CEF }, /* GL_COLOR_ATTACHMENT15_EXT */ - { 3367, 0x00008CE1 }, /* GL_COLOR_ATTACHMENT1_EXT */ - { 3392, 0x00008CE2 }, /* GL_COLOR_ATTACHMENT2 */ - { 3413, 0x00008CE2 }, /* GL_COLOR_ATTACHMENT2_EXT */ - { 3438, 0x00008CE3 }, /* GL_COLOR_ATTACHMENT3 */ - { 3459, 0x00008CE3 }, /* GL_COLOR_ATTACHMENT3_EXT */ - { 3484, 0x00008CE4 }, /* GL_COLOR_ATTACHMENT4 */ - { 3505, 0x00008CE4 }, /* GL_COLOR_ATTACHMENT4_EXT */ - { 3530, 0x00008CE5 }, /* GL_COLOR_ATTACHMENT5 */ - { 3551, 0x00008CE5 }, /* GL_COLOR_ATTACHMENT5_EXT */ - { 3576, 0x00008CE6 }, /* GL_COLOR_ATTACHMENT6 */ - { 3597, 0x00008CE6 }, /* GL_COLOR_ATTACHMENT6_EXT */ - { 3622, 0x00008CE7 }, /* GL_COLOR_ATTACHMENT7 */ - { 3643, 0x00008CE7 }, /* GL_COLOR_ATTACHMENT7_EXT */ - { 3668, 0x00008CE8 }, /* GL_COLOR_ATTACHMENT8 */ - { 3689, 0x00008CE8 }, /* GL_COLOR_ATTACHMENT8_EXT */ - { 3714, 0x00008CE9 }, /* GL_COLOR_ATTACHMENT9 */ - { 3735, 0x00008CE9 }, /* GL_COLOR_ATTACHMENT9_EXT */ - { 3760, 0x00004000 }, /* GL_COLOR_BUFFER_BIT */ - { 3780, 0x00000C22 }, /* GL_COLOR_CLEAR_VALUE */ - { 3801, 0x00001900 }, /* GL_COLOR_INDEX */ - { 3816, 0x00001603 }, /* GL_COLOR_INDEXES */ - { 3833, 0x00000BF2 }, /* GL_COLOR_LOGIC_OP */ - { 3851, 0x00000B57 }, /* GL_COLOR_MATERIAL */ - { 3869, 0x00000B55 }, /* GL_COLOR_MATERIAL_FACE */ - { 3892, 0x00000B56 }, /* GL_COLOR_MATERIAL_PARAMETER */ - { 3920, 0x000080B1 }, /* GL_COLOR_MATRIX */ - { 3936, 0x000080B1 }, /* GL_COLOR_MATRIX_SGI */ - { 3956, 0x000080B2 }, /* GL_COLOR_MATRIX_STACK_DEPTH */ - { 3984, 0x000080B2 }, /* GL_COLOR_MATRIX_STACK_DEPTH_SGI */ - { 4016, 0x00008458 }, /* GL_COLOR_SUM */ - { 4029, 0x00008458 }, /* GL_COLOR_SUM_ARB */ - { 4046, 0x000080D0 }, /* GL_COLOR_TABLE */ - { 4061, 0x000080DD }, /* GL_COLOR_TABLE_ALPHA_SIZE */ - { 4087, 0x000080DD }, /* GL_COLOR_TABLE_ALPHA_SIZE_EXT */ - { 4117, 0x000080DD }, /* GL_COLOR_TABLE_ALPHA_SIZE_SGI */ - { 4147, 0x000080D7 }, /* GL_COLOR_TABLE_BIAS */ - { 4167, 0x000080D7 }, /* GL_COLOR_TABLE_BIAS_SGI */ - { 4191, 0x000080DC }, /* GL_COLOR_TABLE_BLUE_SIZE */ - { 4216, 0x000080DC }, /* GL_COLOR_TABLE_BLUE_SIZE_EXT */ - { 4245, 0x000080DC }, /* GL_COLOR_TABLE_BLUE_SIZE_SGI */ - { 4274, 0x000080D8 }, /* GL_COLOR_TABLE_FORMAT */ - { 4296, 0x000080D8 }, /* GL_COLOR_TABLE_FORMAT_EXT */ - { 4322, 0x000080D8 }, /* GL_COLOR_TABLE_FORMAT_SGI */ - { 4348, 0x000080DB }, /* GL_COLOR_TABLE_GREEN_SIZE */ - { 4374, 0x000080DB }, /* GL_COLOR_TABLE_GREEN_SIZE_EXT */ - { 4404, 0x000080DB }, /* GL_COLOR_TABLE_GREEN_SIZE_SGI */ - { 4434, 0x000080DF }, /* GL_COLOR_TABLE_INTENSITY_SIZE */ - { 4464, 0x000080DF }, /* GL_COLOR_TABLE_INTENSITY_SIZE_EXT */ - { 4498, 0x000080DF }, /* GL_COLOR_TABLE_INTENSITY_SIZE_SGI */ - { 4532, 0x000080DE }, /* GL_COLOR_TABLE_LUMINANCE_SIZE */ - { 4562, 0x000080DE }, /* GL_COLOR_TABLE_LUMINANCE_SIZE_EXT */ - { 4596, 0x000080DE }, /* GL_COLOR_TABLE_LUMINANCE_SIZE_SGI */ - { 4630, 0x000080DA }, /* GL_COLOR_TABLE_RED_SIZE */ - { 4654, 0x000080DA }, /* GL_COLOR_TABLE_RED_SIZE_EXT */ - { 4682, 0x000080DA }, /* GL_COLOR_TABLE_RED_SIZE_SGI */ - { 4710, 0x000080D6 }, /* GL_COLOR_TABLE_SCALE */ - { 4731, 0x000080D6 }, /* GL_COLOR_TABLE_SCALE_SGI */ - { 4756, 0x000080D9 }, /* GL_COLOR_TABLE_WIDTH */ - { 4777, 0x000080D9 }, /* GL_COLOR_TABLE_WIDTH_EXT */ - { 4802, 0x000080D9 }, /* GL_COLOR_TABLE_WIDTH_SGI */ - { 4827, 0x00000C23 }, /* GL_COLOR_WRITEMASK */ - { 4846, 0x00008570 }, /* GL_COMBINE */ - { 4857, 0x00008503 }, /* GL_COMBINE4 */ - { 4869, 0x00008572 }, /* GL_COMBINE_ALPHA */ - { 4886, 0x00008572 }, /* GL_COMBINE_ALPHA_ARB */ - { 4907, 0x00008572 }, /* GL_COMBINE_ALPHA_EXT */ - { 4928, 0x00008570 }, /* GL_COMBINE_ARB */ - { 4943, 0x00008570 }, /* GL_COMBINE_EXT */ - { 4958, 0x00008571 }, /* GL_COMBINE_RGB */ - { 4973, 0x00008571 }, /* GL_COMBINE_RGB_ARB */ - { 4992, 0x00008571 }, /* GL_COMBINE_RGB_EXT */ - { 5011, 0x0000884E }, /* GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT */ - { 5047, 0x0000884E }, /* GL_COMPARE_R_TO_TEXTURE */ - { 5071, 0x0000884E }, /* GL_COMPARE_R_TO_TEXTURE_ARB */ - { 5099, 0x00001300 }, /* GL_COMPILE */ - { 5110, 0x00001301 }, /* GL_COMPILE_AND_EXECUTE */ - { 5133, 0x00008B81 }, /* GL_COMPILE_STATUS */ - { 5151, 0x000084E9 }, /* GL_COMPRESSED_ALPHA */ - { 5171, 0x000084E9 }, /* GL_COMPRESSED_ALPHA_ARB */ - { 5195, 0x000084EC }, /* GL_COMPRESSED_INTENSITY */ - { 5219, 0x000084EC }, /* GL_COMPRESSED_INTENSITY_ARB */ - { 5247, 0x000084EA }, /* GL_COMPRESSED_LUMINANCE */ - { 5271, 0x000084EB }, /* GL_COMPRESSED_LUMINANCE_ALPHA */ - { 5301, 0x000084EB }, /* GL_COMPRESSED_LUMINANCE_ALPHA_ARB */ - { 5335, 0x000084EA }, /* GL_COMPRESSED_LUMINANCE_ARB */ - { 5363, 0x000084ED }, /* GL_COMPRESSED_RGB */ - { 5381, 0x000084EE }, /* GL_COMPRESSED_RGBA */ - { 5400, 0x000084EE }, /* GL_COMPRESSED_RGBA_ARB */ - { 5423, 0x000086B1 }, /* GL_COMPRESSED_RGBA_FXT1_3DFX */ - { 5452, 0x000083F1 }, /* GL_COMPRESSED_RGBA_S3TC_DXT1_EXT */ - { 5485, 0x000083F2 }, /* GL_COMPRESSED_RGBA_S3TC_DXT3_EXT */ - { 5518, 0x000083F3 }, /* GL_COMPRESSED_RGBA_S3TC_DXT5_EXT */ - { 5551, 0x000084ED }, /* GL_COMPRESSED_RGB_ARB */ - { 5573, 0x000086B0 }, /* GL_COMPRESSED_RGB_FXT1_3DFX */ - { 5601, 0x000083F0 }, /* GL_COMPRESSED_RGB_S3TC_DXT1_EXT */ - { 5633, 0x00008C4A }, /* GL_COMPRESSED_SLUMINANCE */ - { 5658, 0x00008C4B }, /* GL_COMPRESSED_SLUMINANCE_ALPHA */ - { 5689, 0x00008C48 }, /* GL_COMPRESSED_SRGB */ - { 5708, 0x00008C49 }, /* GL_COMPRESSED_SRGB_ALPHA */ - { 5733, 0x000086A3 }, /* GL_COMPRESSED_TEXTURE_FORMATS */ - { 5763, 0x0000911C }, /* GL_CONDITION_SATISFIED */ - { 5786, 0x00008576 }, /* GL_CONSTANT */ - { 5798, 0x00008003 }, /* GL_CONSTANT_ALPHA */ - { 5816, 0x00008003 }, /* GL_CONSTANT_ALPHA_EXT */ - { 5838, 0x00008576 }, /* GL_CONSTANT_ARB */ - { 5854, 0x00001207 }, /* GL_CONSTANT_ATTENUATION */ - { 5878, 0x00008151 }, /* GL_CONSTANT_BORDER_HP */ - { 5900, 0x00008001 }, /* GL_CONSTANT_COLOR */ - { 5918, 0x00008001 }, /* GL_CONSTANT_COLOR_EXT */ - { 5940, 0x00008576 }, /* GL_CONSTANT_EXT */ - { 5956, 0x00008010 }, /* GL_CONVOLUTION_1D */ - { 5974, 0x00008011 }, /* GL_CONVOLUTION_2D */ - { 5992, 0x00008154 }, /* GL_CONVOLUTION_BORDER_COLOR */ - { 6020, 0x00008154 }, /* GL_CONVOLUTION_BORDER_COLOR_HP */ - { 6051, 0x00008013 }, /* GL_CONVOLUTION_BORDER_MODE */ - { 6078, 0x00008013 }, /* GL_CONVOLUTION_BORDER_MODE_EXT */ - { 6109, 0x00008015 }, /* GL_CONVOLUTION_FILTER_BIAS */ - { 6136, 0x00008015 }, /* GL_CONVOLUTION_FILTER_BIAS_EXT */ - { 6167, 0x00008014 }, /* GL_CONVOLUTION_FILTER_SCALE */ - { 6195, 0x00008014 }, /* GL_CONVOLUTION_FILTER_SCALE_EXT */ - { 6227, 0x00008017 }, /* GL_CONVOLUTION_FORMAT */ - { 6249, 0x00008017 }, /* GL_CONVOLUTION_FORMAT_EXT */ - { 6275, 0x00008019 }, /* GL_CONVOLUTION_HEIGHT */ - { 6297, 0x00008019 }, /* GL_CONVOLUTION_HEIGHT_EXT */ - { 6323, 0x00008018 }, /* GL_CONVOLUTION_WIDTH */ - { 6344, 0x00008018 }, /* GL_CONVOLUTION_WIDTH_EXT */ - { 6369, 0x00008862 }, /* GL_COORD_REPLACE */ - { 6386, 0x00008862 }, /* GL_COORD_REPLACE_ARB */ - { 6407, 0x00008862 }, /* GL_COORD_REPLACE_NV */ - { 6427, 0x00008862 }, /* GL_COORD_REPLACE_OES */ - { 6448, 0x00001503 }, /* GL_COPY */ - { 6456, 0x0000150C }, /* GL_COPY_INVERTED */ - { 6473, 0x00000706 }, /* GL_COPY_PIXEL_TOKEN */ - { 6493, 0x00008F36 }, /* GL_COPY_READ_BUFFER */ - { 6513, 0x00008F37 }, /* GL_COPY_WRITE_BUFFER */ - { 6534, 0x00000B44 }, /* GL_CULL_FACE */ - { 6547, 0x00000B45 }, /* GL_CULL_FACE_MODE */ - { 6565, 0x000081AA }, /* GL_CULL_VERTEX_EXT */ - { 6584, 0x000081AC }, /* GL_CULL_VERTEX_EYE_POSITION_EXT */ - { 6616, 0x000081AB }, /* GL_CULL_VERTEX_OBJECT_POSITION_EXT */ - { 6651, 0x00008626 }, /* GL_CURRENT_ATTRIB_NV */ - { 6672, 0x00000001 }, /* GL_CURRENT_BIT */ - { 6687, 0x00000B00 }, /* GL_CURRENT_COLOR */ - { 6704, 0x00008453 }, /* GL_CURRENT_FOG_COORD */ - { 6725, 0x00008453 }, /* GL_CURRENT_FOG_COORDINATE */ - { 6751, 0x00000B01 }, /* GL_CURRENT_INDEX */ - { 6768, 0x00008641 }, /* GL_CURRENT_MATRIX_ARB */ - { 6790, 0x00008845 }, /* GL_CURRENT_MATRIX_INDEX_ARB */ - { 6818, 0x00008641 }, /* GL_CURRENT_MATRIX_NV */ - { 6839, 0x00008640 }, /* GL_CURRENT_MATRIX_STACK_DEPTH_ARB */ - { 6873, 0x00008640 }, /* GL_CURRENT_MATRIX_STACK_DEPTH_NV */ - { 6906, 0x00000B02 }, /* GL_CURRENT_NORMAL */ - { 6924, 0x00008843 }, /* GL_CURRENT_PALETTE_MATRIX_ARB */ - { 6954, 0x00008843 }, /* GL_CURRENT_PALETTE_MATRIX_OES */ - { 6984, 0x00008B8D }, /* GL_CURRENT_PROGRAM */ - { 7003, 0x00008865 }, /* GL_CURRENT_QUERY */ - { 7020, 0x00008865 }, /* GL_CURRENT_QUERY_ARB */ - { 7041, 0x00000B04 }, /* GL_CURRENT_RASTER_COLOR */ - { 7065, 0x00000B09 }, /* GL_CURRENT_RASTER_DISTANCE */ - { 7092, 0x00000B05 }, /* GL_CURRENT_RASTER_INDEX */ - { 7116, 0x00000B07 }, /* GL_CURRENT_RASTER_POSITION */ - { 7143, 0x00000B08 }, /* GL_CURRENT_RASTER_POSITION_VALID */ - { 7176, 0x0000845F }, /* GL_CURRENT_RASTER_SECONDARY_COLOR */ - { 7210, 0x00000B06 }, /* GL_CURRENT_RASTER_TEXTURE_COORDS */ - { 7243, 0x00008459 }, /* GL_CURRENT_SECONDARY_COLOR */ - { 7270, 0x00000B03 }, /* GL_CURRENT_TEXTURE_COORDS */ - { 7296, 0x00008626 }, /* GL_CURRENT_VERTEX_ATTRIB */ - { 7321, 0x00008626 }, /* GL_CURRENT_VERTEX_ATTRIB_ARB */ - { 7350, 0x000086A8 }, /* GL_CURRENT_WEIGHT_ARB */ - { 7372, 0x00000900 }, /* GL_CW */ - { 7378, 0x0000875B }, /* GL_DEBUG_ASSERT_MESA */ - { 7399, 0x00008759 }, /* GL_DEBUG_OBJECT_MESA */ - { 7420, 0x0000875A }, /* GL_DEBUG_PRINT_MESA */ - { 7440, 0x00002101 }, /* GL_DECAL */ - { 7449, 0x00001E03 }, /* GL_DECR */ - { 7457, 0x00008508 }, /* GL_DECR_WRAP */ - { 7470, 0x00008508 }, /* GL_DECR_WRAP_EXT */ - { 7487, 0x00008B80 }, /* GL_DELETE_STATUS */ - { 7504, 0x00001801 }, /* GL_DEPTH */ - { 7513, 0x000088F0 }, /* GL_DEPTH24_STENCIL8 */ - { 7533, 0x000088F0 }, /* GL_DEPTH24_STENCIL8_EXT */ - { 7557, 0x000088F0 }, /* GL_DEPTH24_STENCIL8_OES */ - { 7581, 0x00008D00 }, /* GL_DEPTH_ATTACHMENT */ - { 7601, 0x00008D00 }, /* GL_DEPTH_ATTACHMENT_EXT */ - { 7625, 0x00008D00 }, /* GL_DEPTH_ATTACHMENT_OES */ - { 7649, 0x00000D1F }, /* GL_DEPTH_BIAS */ - { 7663, 0x00000D56 }, /* GL_DEPTH_BITS */ - { 7677, 0x00008891 }, /* GL_DEPTH_BOUNDS_EXT */ - { 7697, 0x00008890 }, /* GL_DEPTH_BOUNDS_TEST_EXT */ - { 7722, 0x00000100 }, /* GL_DEPTH_BUFFER_BIT */ - { 7742, 0x0000864F }, /* GL_DEPTH_CLAMP */ - { 7757, 0x0000864F }, /* GL_DEPTH_CLAMP_NV */ - { 7775, 0x00000B73 }, /* GL_DEPTH_CLEAR_VALUE */ - { 7796, 0x00001902 }, /* GL_DEPTH_COMPONENT */ - { 7815, 0x000081A5 }, /* GL_DEPTH_COMPONENT16 */ - { 7836, 0x000081A5 }, /* GL_DEPTH_COMPONENT16_ARB */ - { 7861, 0x000081A5 }, /* GL_DEPTH_COMPONENT16_OES */ - { 7886, 0x000081A5 }, /* GL_DEPTH_COMPONENT16_SGIX */ - { 7912, 0x000081A6 }, /* GL_DEPTH_COMPONENT24 */ - { 7933, 0x000081A6 }, /* GL_DEPTH_COMPONENT24_ARB */ - { 7958, 0x000081A6 }, /* GL_DEPTH_COMPONENT24_OES */ - { 7983, 0x000081A6 }, /* GL_DEPTH_COMPONENT24_SGIX */ - { 8009, 0x000081A7 }, /* GL_DEPTH_COMPONENT32 */ - { 8030, 0x000081A7 }, /* GL_DEPTH_COMPONENT32_ARB */ - { 8055, 0x000081A7 }, /* GL_DEPTH_COMPONENT32_OES */ - { 8080, 0x000081A7 }, /* GL_DEPTH_COMPONENT32_SGIX */ - { 8106, 0x00000B74 }, /* GL_DEPTH_FUNC */ - { 8120, 0x00000B70 }, /* GL_DEPTH_RANGE */ - { 8135, 0x00000D1E }, /* GL_DEPTH_SCALE */ - { 8150, 0x000084F9 }, /* GL_DEPTH_STENCIL */ - { 8167, 0x0000821A }, /* GL_DEPTH_STENCIL_ATTACHMENT */ - { 8195, 0x000084F9 }, /* GL_DEPTH_STENCIL_EXT */ - { 8216, 0x000084F9 }, /* GL_DEPTH_STENCIL_NV */ - { 8236, 0x000084F9 }, /* GL_DEPTH_STENCIL_OES */ - { 8257, 0x0000886F }, /* GL_DEPTH_STENCIL_TO_BGRA_NV */ - { 8285, 0x0000886E }, /* GL_DEPTH_STENCIL_TO_RGBA_NV */ - { 8313, 0x00000B71 }, /* GL_DEPTH_TEST */ - { 8327, 0x0000884B }, /* GL_DEPTH_TEXTURE_MODE */ - { 8349, 0x0000884B }, /* GL_DEPTH_TEXTURE_MODE_ARB */ - { 8375, 0x00000B72 }, /* GL_DEPTH_WRITEMASK */ - { 8394, 0x00001201 }, /* GL_DIFFUSE */ - { 8405, 0x00000BD0 }, /* GL_DITHER */ - { 8415, 0x00000A02 }, /* GL_DOMAIN */ - { 8425, 0x00001100 }, /* GL_DONT_CARE */ - { 8438, 0x000086AE }, /* GL_DOT3_RGB */ - { 8450, 0x000086AF }, /* GL_DOT3_RGBA */ - { 8463, 0x000086AF }, /* GL_DOT3_RGBA_ARB */ - { 8480, 0x00008741 }, /* GL_DOT3_RGBA_EXT */ - { 8497, 0x000086AE }, /* GL_DOT3_RGB_ARB */ - { 8513, 0x00008740 }, /* GL_DOT3_RGB_EXT */ - { 8529, 0x0000140A }, /* GL_DOUBLE */ - { 8539, 0x00000C32 }, /* GL_DOUBLEBUFFER */ - { 8555, 0x00000C01 }, /* GL_DRAW_BUFFER */ - { 8570, 0x00008825 }, /* GL_DRAW_BUFFER0 */ - { 8586, 0x00008825 }, /* GL_DRAW_BUFFER0_ARB */ - { 8606, 0x00008825 }, /* GL_DRAW_BUFFER0_ATI */ - { 8626, 0x00008826 }, /* GL_DRAW_BUFFER1 */ - { 8642, 0x0000882F }, /* GL_DRAW_BUFFER10 */ - { 8659, 0x0000882F }, /* GL_DRAW_BUFFER10_ARB */ - { 8680, 0x0000882F }, /* GL_DRAW_BUFFER10_ATI */ - { 8701, 0x00008830 }, /* GL_DRAW_BUFFER11 */ - { 8718, 0x00008830 }, /* GL_DRAW_BUFFER11_ARB */ - { 8739, 0x00008830 }, /* GL_DRAW_BUFFER11_ATI */ - { 8760, 0x00008831 }, /* GL_DRAW_BUFFER12 */ - { 8777, 0x00008831 }, /* GL_DRAW_BUFFER12_ARB */ - { 8798, 0x00008831 }, /* GL_DRAW_BUFFER12_ATI */ - { 8819, 0x00008832 }, /* GL_DRAW_BUFFER13 */ - { 8836, 0x00008832 }, /* GL_DRAW_BUFFER13_ARB */ - { 8857, 0x00008832 }, /* GL_DRAW_BUFFER13_ATI */ - { 8878, 0x00008833 }, /* GL_DRAW_BUFFER14 */ - { 8895, 0x00008833 }, /* GL_DRAW_BUFFER14_ARB */ - { 8916, 0x00008833 }, /* GL_DRAW_BUFFER14_ATI */ - { 8937, 0x00008834 }, /* GL_DRAW_BUFFER15 */ - { 8954, 0x00008834 }, /* GL_DRAW_BUFFER15_ARB */ - { 8975, 0x00008834 }, /* GL_DRAW_BUFFER15_ATI */ - { 8996, 0x00008826 }, /* GL_DRAW_BUFFER1_ARB */ - { 9016, 0x00008826 }, /* GL_DRAW_BUFFER1_ATI */ - { 9036, 0x00008827 }, /* GL_DRAW_BUFFER2 */ - { 9052, 0x00008827 }, /* GL_DRAW_BUFFER2_ARB */ - { 9072, 0x00008827 }, /* GL_DRAW_BUFFER2_ATI */ - { 9092, 0x00008828 }, /* GL_DRAW_BUFFER3 */ - { 9108, 0x00008828 }, /* GL_DRAW_BUFFER3_ARB */ - { 9128, 0x00008828 }, /* GL_DRAW_BUFFER3_ATI */ - { 9148, 0x00008829 }, /* GL_DRAW_BUFFER4 */ - { 9164, 0x00008829 }, /* GL_DRAW_BUFFER4_ARB */ - { 9184, 0x00008829 }, /* GL_DRAW_BUFFER4_ATI */ - { 9204, 0x0000882A }, /* GL_DRAW_BUFFER5 */ - { 9220, 0x0000882A }, /* GL_DRAW_BUFFER5_ARB */ - { 9240, 0x0000882A }, /* GL_DRAW_BUFFER5_ATI */ - { 9260, 0x0000882B }, /* GL_DRAW_BUFFER6 */ - { 9276, 0x0000882B }, /* GL_DRAW_BUFFER6_ARB */ - { 9296, 0x0000882B }, /* GL_DRAW_BUFFER6_ATI */ - { 9316, 0x0000882C }, /* GL_DRAW_BUFFER7 */ - { 9332, 0x0000882C }, /* GL_DRAW_BUFFER7_ARB */ - { 9352, 0x0000882C }, /* GL_DRAW_BUFFER7_ATI */ - { 9372, 0x0000882D }, /* GL_DRAW_BUFFER8 */ - { 9388, 0x0000882D }, /* GL_DRAW_BUFFER8_ARB */ - { 9408, 0x0000882D }, /* GL_DRAW_BUFFER8_ATI */ - { 9428, 0x0000882E }, /* GL_DRAW_BUFFER9 */ - { 9444, 0x0000882E }, /* GL_DRAW_BUFFER9_ARB */ - { 9464, 0x0000882E }, /* GL_DRAW_BUFFER9_ATI */ - { 9484, 0x00008CA9 }, /* GL_DRAW_FRAMEBUFFER */ - { 9504, 0x00008CA6 }, /* GL_DRAW_FRAMEBUFFER_BINDING */ - { 9532, 0x00008CA6 }, /* GL_DRAW_FRAMEBUFFER_BINDING_EXT */ - { 9564, 0x00008CA9 }, /* GL_DRAW_FRAMEBUFFER_EXT */ - { 9588, 0x00000705 }, /* GL_DRAW_PIXEL_TOKEN */ - { 9608, 0x00000304 }, /* GL_DST_ALPHA */ - { 9621, 0x00000306 }, /* GL_DST_COLOR */ - { 9634, 0x0000877A }, /* GL_DU8DV8_ATI */ - { 9648, 0x00008779 }, /* GL_DUDV_ATI */ - { 9660, 0x000088EA }, /* GL_DYNAMIC_COPY */ - { 9676, 0x000088EA }, /* GL_DYNAMIC_COPY_ARB */ - { 9696, 0x000088E8 }, /* GL_DYNAMIC_DRAW */ - { 9712, 0x000088E8 }, /* GL_DYNAMIC_DRAW_ARB */ - { 9732, 0x000088E9 }, /* GL_DYNAMIC_READ */ - { 9748, 0x000088E9 }, /* GL_DYNAMIC_READ_ARB */ - { 9768, 0x00000B43 }, /* GL_EDGE_FLAG */ - { 9781, 0x00008079 }, /* GL_EDGE_FLAG_ARRAY */ - { 9800, 0x0000889B }, /* GL_EDGE_FLAG_ARRAY_BUFFER_BINDING */ - { 9834, 0x0000889B }, /* GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB */ - { 9872, 0x00008093 }, /* GL_EDGE_FLAG_ARRAY_POINTER */ - { 9899, 0x0000808C }, /* GL_EDGE_FLAG_ARRAY_STRIDE */ - { 9925, 0x00008893 }, /* GL_ELEMENT_ARRAY_BUFFER */ - { 9949, 0x00008895 }, /* GL_ELEMENT_ARRAY_BUFFER_BINDING */ - { 9981, 0x00008895 }, /* GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB */ - { 10017, 0x00001600 }, /* GL_EMISSION */ - { 10029, 0x00002000 }, /* GL_ENABLE_BIT */ - { 10043, 0x00000202 }, /* GL_EQUAL */ - { 10052, 0x00001509 }, /* GL_EQUIV */ - { 10061, 0x00010000 }, /* GL_EVAL_BIT */ - { 10073, 0x00000800 }, /* GL_EXP */ - { 10080, 0x00000801 }, /* GL_EXP2 */ - { 10088, 0x00001F03 }, /* GL_EXTENSIONS */ - { 10102, 0x00002400 }, /* GL_EYE_LINEAR */ - { 10116, 0x00002502 }, /* GL_EYE_PLANE */ - { 10129, 0x0000855C }, /* GL_EYE_PLANE_ABSOLUTE_NV */ - { 10154, 0x0000855B }, /* GL_EYE_RADIAL_NV */ - { 10171, 0x00000000 }, /* GL_FALSE */ - { 10180, 0x00001101 }, /* GL_FASTEST */ - { 10191, 0x00001C01 }, /* GL_FEEDBACK */ - { 10203, 0x00000DF0 }, /* GL_FEEDBACK_BUFFER_POINTER */ - { 10230, 0x00000DF1 }, /* GL_FEEDBACK_BUFFER_SIZE */ - { 10254, 0x00000DF2 }, /* GL_FEEDBACK_BUFFER_TYPE */ - { 10278, 0x00001B02 }, /* GL_FILL */ - { 10286, 0x00008E4D }, /* GL_FIRST_VERTEX_CONVENTION */ - { 10313, 0x00008E4D }, /* GL_FIRST_VERTEX_CONVENTION_EXT */ - { 10344, 0x0000140C }, /* GL_FIXED */ - { 10353, 0x0000140C }, /* GL_FIXED_OES */ - { 10366, 0x00001D00 }, /* GL_FLAT */ - { 10374, 0x00001406 }, /* GL_FLOAT */ - { 10383, 0x00008B5A }, /* GL_FLOAT_MAT2 */ - { 10397, 0x00008B5A }, /* GL_FLOAT_MAT2_ARB */ - { 10415, 0x00008B65 }, /* GL_FLOAT_MAT2x3 */ - { 10431, 0x00008B66 }, /* GL_FLOAT_MAT2x4 */ - { 10447, 0x00008B5B }, /* GL_FLOAT_MAT3 */ - { 10461, 0x00008B5B }, /* GL_FLOAT_MAT3_ARB */ - { 10479, 0x00008B67 }, /* GL_FLOAT_MAT3x2 */ - { 10495, 0x00008B68 }, /* GL_FLOAT_MAT3x4 */ - { 10511, 0x00008B5C }, /* GL_FLOAT_MAT4 */ - { 10525, 0x00008B5C }, /* GL_FLOAT_MAT4_ARB */ - { 10543, 0x00008B69 }, /* GL_FLOAT_MAT4x2 */ - { 10559, 0x00008B6A }, /* GL_FLOAT_MAT4x3 */ - { 10575, 0x00008B50 }, /* GL_FLOAT_VEC2 */ - { 10589, 0x00008B50 }, /* GL_FLOAT_VEC2_ARB */ - { 10607, 0x00008B51 }, /* GL_FLOAT_VEC3 */ - { 10621, 0x00008B51 }, /* GL_FLOAT_VEC3_ARB */ - { 10639, 0x00008B52 }, /* GL_FLOAT_VEC4 */ - { 10653, 0x00008B52 }, /* GL_FLOAT_VEC4_ARB */ - { 10671, 0x00000B60 }, /* GL_FOG */ - { 10678, 0x00000080 }, /* GL_FOG_BIT */ - { 10689, 0x00000B66 }, /* GL_FOG_COLOR */ - { 10702, 0x00008451 }, /* GL_FOG_COORD */ - { 10715, 0x00008451 }, /* GL_FOG_COORDINATE */ - { 10733, 0x00008457 }, /* GL_FOG_COORDINATE_ARRAY */ - { 10757, 0x0000889D }, /* GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING */ - { 10796, 0x0000889D }, /* GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB */ - { 10839, 0x00008456 }, /* GL_FOG_COORDINATE_ARRAY_POINTER */ - { 10871, 0x00008455 }, /* GL_FOG_COORDINATE_ARRAY_STRIDE */ - { 10902, 0x00008454 }, /* GL_FOG_COORDINATE_ARRAY_TYPE */ - { 10931, 0x00008450 }, /* GL_FOG_COORDINATE_SOURCE */ - { 10956, 0x00008457 }, /* GL_FOG_COORD_ARRAY */ - { 10975, 0x0000889D }, /* GL_FOG_COORD_ARRAY_BUFFER_BINDING */ - { 11009, 0x00008456 }, /* GL_FOG_COORD_ARRAY_POINTER */ - { 11036, 0x00008455 }, /* GL_FOG_COORD_ARRAY_STRIDE */ - { 11062, 0x00008454 }, /* GL_FOG_COORD_ARRAY_TYPE */ - { 11086, 0x00008450 }, /* GL_FOG_COORD_SRC */ - { 11103, 0x00000B62 }, /* GL_FOG_DENSITY */ - { 11118, 0x0000855A }, /* GL_FOG_DISTANCE_MODE_NV */ - { 11142, 0x00000B64 }, /* GL_FOG_END */ - { 11153, 0x00000C54 }, /* GL_FOG_HINT */ - { 11165, 0x00000B61 }, /* GL_FOG_INDEX */ - { 11178, 0x00000B65 }, /* GL_FOG_MODE */ - { 11190, 0x00008198 }, /* GL_FOG_OFFSET_SGIX */ - { 11209, 0x00008199 }, /* GL_FOG_OFFSET_VALUE_SGIX */ - { 11234, 0x00000B63 }, /* GL_FOG_START */ - { 11247, 0x00008452 }, /* GL_FRAGMENT_DEPTH */ - { 11265, 0x00008804 }, /* GL_FRAGMENT_PROGRAM_ARB */ - { 11289, 0x00008B30 }, /* GL_FRAGMENT_SHADER */ - { 11308, 0x00008B30 }, /* GL_FRAGMENT_SHADER_ARB */ - { 11331, 0x00008B8B }, /* GL_FRAGMENT_SHADER_DERIVATIVE_HINT */ - { 11366, 0x00008B8B }, /* GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES */ - { 11405, 0x00008D40 }, /* GL_FRAMEBUFFER */ - { 11420, 0x00008215 }, /* GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE */ - { 11457, 0x00008214 }, /* GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE */ - { 11493, 0x00008210 }, /* GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING */ - { 11534, 0x00008211 }, /* GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE */ - { 11575, 0x00008216 }, /* GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE */ - { 11612, 0x00008213 }, /* GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE */ - { 11649, 0x00008DA7 }, /* GL_FRAMEBUFFER_ATTACHMENT_LAYERED_ARB */ - { 11687, 0x00008CD1 }, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME */ - { 11725, 0x00008CD1 }, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT */ - { 11767, 0x00008CD1 }, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_OES */ - { 11809, 0x00008CD0 }, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE */ - { 11847, 0x00008CD0 }, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT */ - { 11889, 0x00008CD0 }, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_OES */ - { 11931, 0x00008212 }, /* GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE */ - { 11966, 0x00008217 }, /* GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE */ - { 12005, 0x00008CD4 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT */ - { 12054, 0x00008CD4 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_OES */ - { 12103, 0x00008CD3 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE */ - { 12151, 0x00008CD3 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT */ - { 12203, 0x00008CD3 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_OES */ - { 12255, 0x00008CD4 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER */ - { 12295, 0x00008CD4 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT */ - { 12339, 0x00008CD2 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL */ - { 12379, 0x00008CD2 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT */ - { 12423, 0x00008CD2 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_OES */ - { 12467, 0x00008CA6 }, /* GL_FRAMEBUFFER_BINDING */ - { 12490, 0x00008CA6 }, /* GL_FRAMEBUFFER_BINDING_EXT */ - { 12517, 0x00008CA6 }, /* GL_FRAMEBUFFER_BINDING_OES */ - { 12544, 0x00008CD5 }, /* GL_FRAMEBUFFER_COMPLETE */ - { 12568, 0x00008CD5 }, /* GL_FRAMEBUFFER_COMPLETE_EXT */ - { 12596, 0x00008CD5 }, /* GL_FRAMEBUFFER_COMPLETE_OES */ - { 12624, 0x00008218 }, /* GL_FRAMEBUFFER_DEFAULT */ - { 12647, 0x00008D40 }, /* GL_FRAMEBUFFER_EXT */ - { 12666, 0x00008CD6 }, /* GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT */ - { 12703, 0x00008CD6 }, /* GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT */ - { 12744, 0x00008CD6 }, /* GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES */ - { 12785, 0x00008CD9 }, /* GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS */ - { 12822, 0x00008CD9 }, /* GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT */ - { 12863, 0x00008CD9 }, /* GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_OES */ - { 12904, 0x00008CDB }, /* GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER */ - { 12942, 0x00008CDB }, /* GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT */ - { 12984, 0x00008CDB }, /* GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_OES */ - { 13026, 0x00008CD8 }, /* GL_FRAMEBUFFER_INCOMPLETE_DUPLICATE_ATTACHMENT_EXT */ - { 13077, 0x00008CDA }, /* GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT */ - { 13115, 0x00008CDA }, /* GL_FRAMEBUFFER_INCOMPLETE_FORMATS_OES */ - { 13153, 0x00008DA9 }, /* GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB */ - { 13195, 0x00008DA8 }, /* GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB */ - { 13239, 0x00008CD7 }, /* GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT */ - { 13284, 0x00008CD7 }, /* GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT */ - { 13333, 0x00008CD7 }, /* GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES */ - { 13382, 0x00008D56 }, /* GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE */ - { 13420, 0x00008D56 }, /* GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT */ - { 13462, 0x00008CDC }, /* GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER */ - { 13500, 0x00008CDC }, /* GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT */ - { 13542, 0x00008CDC }, /* GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_OES */ - { 13584, 0x00008D40 }, /* GL_FRAMEBUFFER_OES */ - { 13603, 0x00008CDE }, /* GL_FRAMEBUFFER_STATUS_ERROR_EXT */ - { 13635, 0x00008219 }, /* GL_FRAMEBUFFER_UNDEFINED */ - { 13660, 0x00008CDD }, /* GL_FRAMEBUFFER_UNSUPPORTED */ - { 13687, 0x00008CDD }, /* GL_FRAMEBUFFER_UNSUPPORTED_EXT */ - { 13718, 0x00008CDD }, /* GL_FRAMEBUFFER_UNSUPPORTED_OES */ - { 13749, 0x00000404 }, /* GL_FRONT */ - { 13758, 0x00000408 }, /* GL_FRONT_AND_BACK */ - { 13776, 0x00000B46 }, /* GL_FRONT_FACE */ - { 13790, 0x00000400 }, /* GL_FRONT_LEFT */ - { 13804, 0x00000401 }, /* GL_FRONT_RIGHT */ - { 13819, 0x00008006 }, /* GL_FUNC_ADD */ - { 13831, 0x00008006 }, /* GL_FUNC_ADD_EXT */ - { 13847, 0x00008006 }, /* GL_FUNC_ADD_OES */ - { 13863, 0x0000800B }, /* GL_FUNC_REVERSE_SUBTRACT */ - { 13888, 0x0000800B }, /* GL_FUNC_REVERSE_SUBTRACT_EXT */ - { 13917, 0x0000800B }, /* GL_FUNC_REVERSE_SUBTRACT_OES */ - { 13946, 0x0000800A }, /* GL_FUNC_SUBTRACT */ - { 13963, 0x0000800A }, /* GL_FUNC_SUBTRACT_EXT */ - { 13984, 0x0000800A }, /* GL_FUNC_SUBTRACT_OES */ - { 14005, 0x00008191 }, /* GL_GENERATE_MIPMAP */ - { 14024, 0x00008192 }, /* GL_GENERATE_MIPMAP_HINT */ - { 14048, 0x00008192 }, /* GL_GENERATE_MIPMAP_HINT_SGIS */ - { 14077, 0x00008191 }, /* GL_GENERATE_MIPMAP_SGIS */ - { 14101, 0x00008DDB }, /* GL_GEOMETRY_INPUT_TYPE_ARB */ - { 14128, 0x00008DDC }, /* GL_GEOMETRY_OUTPUT_TYPE_ARB */ - { 14156, 0x00008DD9 }, /* GL_GEOMETRY_SHADER_ARB */ - { 14179, 0x00008DDA }, /* GL_GEOMETRY_VERTICES_OUT_ARB */ - { 14208, 0x00000206 }, /* GL_GEQUAL */ - { 14218, 0x00000204 }, /* GL_GREATER */ - { 14229, 0x00001904 }, /* GL_GREEN */ - { 14238, 0x00000D19 }, /* GL_GREEN_BIAS */ - { 14252, 0x00000D53 }, /* GL_GREEN_BITS */ - { 14266, 0x00000D18 }, /* GL_GREEN_SCALE */ - { 14281, 0x0000140B }, /* GL_HALF_FLOAT */ - { 14295, 0x00008D61 }, /* GL_HALF_FLOAT_OES */ - { 14313, 0x00008DF2 }, /* GL_HIGH_FLOAT */ - { 14327, 0x00008DF5 }, /* GL_HIGH_INT */ - { 14339, 0x00008000 }, /* GL_HINT_BIT */ - { 14351, 0x00008024 }, /* GL_HISTOGRAM */ - { 14364, 0x0000802B }, /* GL_HISTOGRAM_ALPHA_SIZE */ - { 14388, 0x0000802B }, /* GL_HISTOGRAM_ALPHA_SIZE_EXT */ - { 14416, 0x0000802A }, /* GL_HISTOGRAM_BLUE_SIZE */ - { 14439, 0x0000802A }, /* GL_HISTOGRAM_BLUE_SIZE_EXT */ - { 14466, 0x00008024 }, /* GL_HISTOGRAM_EXT */ - { 14483, 0x00008027 }, /* GL_HISTOGRAM_FORMAT */ - { 14503, 0x00008027 }, /* GL_HISTOGRAM_FORMAT_EXT */ - { 14527, 0x00008029 }, /* GL_HISTOGRAM_GREEN_SIZE */ - { 14551, 0x00008029 }, /* GL_HISTOGRAM_GREEN_SIZE_EXT */ - { 14579, 0x0000802C }, /* GL_HISTOGRAM_LUMINANCE_SIZE */ - { 14607, 0x0000802C }, /* GL_HISTOGRAM_LUMINANCE_SIZE_EXT */ - { 14639, 0x00008028 }, /* GL_HISTOGRAM_RED_SIZE */ - { 14661, 0x00008028 }, /* GL_HISTOGRAM_RED_SIZE_EXT */ - { 14687, 0x0000802D }, /* GL_HISTOGRAM_SINK */ - { 14705, 0x0000802D }, /* GL_HISTOGRAM_SINK_EXT */ - { 14727, 0x00008026 }, /* GL_HISTOGRAM_WIDTH */ - { 14746, 0x00008026 }, /* GL_HISTOGRAM_WIDTH_EXT */ - { 14769, 0x0000862A }, /* GL_IDENTITY_NV */ - { 14784, 0x00008150 }, /* GL_IGNORE_BORDER_HP */ - { 14804, 0x00008B9B }, /* GL_IMPLEMENTATION_COLOR_READ_FORMAT */ - { 14840, 0x00008B9B }, /* GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES */ - { 14880, 0x00008B9A }, /* GL_IMPLEMENTATION_COLOR_READ_TYPE */ - { 14914, 0x00008B9A }, /* GL_IMPLEMENTATION_COLOR_READ_TYPE_OES */ - { 14952, 0x00001E02 }, /* GL_INCR */ - { 14960, 0x00008507 }, /* GL_INCR_WRAP */ - { 14973, 0x00008507 }, /* GL_INCR_WRAP_EXT */ - { 14990, 0x00008222 }, /* GL_INDEX */ - { 14999, 0x00008077 }, /* GL_INDEX_ARRAY */ - { 15014, 0x00008899 }, /* GL_INDEX_ARRAY_BUFFER_BINDING */ - { 15044, 0x00008899 }, /* GL_INDEX_ARRAY_BUFFER_BINDING_ARB */ - { 15078, 0x00008091 }, /* GL_INDEX_ARRAY_POINTER */ - { 15101, 0x00008086 }, /* GL_INDEX_ARRAY_STRIDE */ - { 15123, 0x00008085 }, /* GL_INDEX_ARRAY_TYPE */ - { 15143, 0x00000D51 }, /* GL_INDEX_BITS */ - { 15157, 0x00000C20 }, /* GL_INDEX_CLEAR_VALUE */ - { 15178, 0x00000BF1 }, /* GL_INDEX_LOGIC_OP */ - { 15196, 0x00000C30 }, /* GL_INDEX_MODE */ - { 15210, 0x00000D13 }, /* GL_INDEX_OFFSET */ - { 15226, 0x00000D12 }, /* GL_INDEX_SHIFT */ - { 15241, 0x00000C21 }, /* GL_INDEX_WRITEMASK */ - { 15260, 0x00008B84 }, /* GL_INFO_LOG_LENGTH */ - { 15279, 0x00001404 }, /* GL_INT */ - { 15286, 0x00008049 }, /* GL_INTENSITY */ - { 15299, 0x0000804C }, /* GL_INTENSITY12 */ - { 15314, 0x0000804C }, /* GL_INTENSITY12_EXT */ - { 15333, 0x0000804D }, /* GL_INTENSITY16 */ - { 15348, 0x0000804D }, /* GL_INTENSITY16_EXT */ - { 15367, 0x0000804A }, /* GL_INTENSITY4 */ - { 15381, 0x0000804A }, /* GL_INTENSITY4_EXT */ - { 15399, 0x0000804B }, /* GL_INTENSITY8 */ - { 15413, 0x0000804B }, /* GL_INTENSITY8_EXT */ - { 15431, 0x00008049 }, /* GL_INTENSITY_EXT */ - { 15448, 0x00008C8C }, /* GL_INTERLEAVED_ATTRIBS_EXT */ - { 15475, 0x00008575 }, /* GL_INTERPOLATE */ - { 15490, 0x00008575 }, /* GL_INTERPOLATE_ARB */ - { 15509, 0x00008575 }, /* GL_INTERPOLATE_EXT */ - { 15528, 0x00008DF7 }, /* GL_INT_10_10_10_2_OES */ - { 15550, 0x00008B53 }, /* GL_INT_VEC2 */ - { 15562, 0x00008B53 }, /* GL_INT_VEC2_ARB */ - { 15578, 0x00008B54 }, /* GL_INT_VEC3 */ - { 15590, 0x00008B54 }, /* GL_INT_VEC3_ARB */ - { 15606, 0x00008B55 }, /* GL_INT_VEC4 */ - { 15618, 0x00008B55 }, /* GL_INT_VEC4_ARB */ - { 15634, 0x00000500 }, /* GL_INVALID_ENUM */ - { 15650, 0x00000506 }, /* GL_INVALID_FRAMEBUFFER_OPERATION */ - { 15683, 0x00000506 }, /* GL_INVALID_FRAMEBUFFER_OPERATION_EXT */ - { 15720, 0x00000506 }, /* GL_INVALID_FRAMEBUFFER_OPERATION_OES */ - { 15757, 0x00000502 }, /* GL_INVALID_OPERATION */ - { 15778, 0x00000501 }, /* GL_INVALID_VALUE */ - { 15795, 0x0000862B }, /* GL_INVERSE_NV */ - { 15809, 0x0000862D }, /* GL_INVERSE_TRANSPOSE_NV */ - { 15833, 0x0000150A }, /* GL_INVERT */ - { 15843, 0x00001E00 }, /* GL_KEEP */ - { 15851, 0x00008E4E }, /* GL_LAST_VERTEX_CONVENTION */ - { 15877, 0x00008E4E }, /* GL_LAST_VERTEX_CONVENTION_EXT */ - { 15907, 0x00000406 }, /* GL_LEFT */ - { 15915, 0x00000203 }, /* GL_LEQUAL */ - { 15925, 0x00000201 }, /* GL_LESS */ - { 15933, 0x00004000 }, /* GL_LIGHT0 */ - { 15943, 0x00004001 }, /* GL_LIGHT1 */ - { 15953, 0x00004002 }, /* GL_LIGHT2 */ - { 15963, 0x00004003 }, /* GL_LIGHT3 */ - { 15973, 0x00004004 }, /* GL_LIGHT4 */ - { 15983, 0x00004005 }, /* GL_LIGHT5 */ - { 15993, 0x00004006 }, /* GL_LIGHT6 */ - { 16003, 0x00004007 }, /* GL_LIGHT7 */ - { 16013, 0x00000B50 }, /* GL_LIGHTING */ - { 16025, 0x00000040 }, /* GL_LIGHTING_BIT */ - { 16041, 0x00000B53 }, /* GL_LIGHT_MODEL_AMBIENT */ - { 16064, 0x000081F8 }, /* GL_LIGHT_MODEL_COLOR_CONTROL */ - { 16093, 0x000081F8 }, /* GL_LIGHT_MODEL_COLOR_CONTROL_EXT */ - { 16126, 0x00000B51 }, /* GL_LIGHT_MODEL_LOCAL_VIEWER */ - { 16154, 0x00000B52 }, /* GL_LIGHT_MODEL_TWO_SIDE */ - { 16178, 0x00001B01 }, /* GL_LINE */ - { 16186, 0x00002601 }, /* GL_LINEAR */ - { 16196, 0x00001208 }, /* GL_LINEAR_ATTENUATION */ - { 16218, 0x00008170 }, /* GL_LINEAR_CLIPMAP_LINEAR_SGIX */ - { 16248, 0x0000844F }, /* GL_LINEAR_CLIPMAP_NEAREST_SGIX */ - { 16279, 0x00002703 }, /* GL_LINEAR_MIPMAP_LINEAR */ - { 16303, 0x00002701 }, /* GL_LINEAR_MIPMAP_NEAREST */ - { 16328, 0x00000001 }, /* GL_LINES */ - { 16337, 0x0000000A }, /* GL_LINES_ADJACENCY_ARB */ - { 16360, 0x00000004 }, /* GL_LINE_BIT */ - { 16372, 0x00000002 }, /* GL_LINE_LOOP */ - { 16385, 0x00000707 }, /* GL_LINE_RESET_TOKEN */ - { 16405, 0x00000B20 }, /* GL_LINE_SMOOTH */ - { 16420, 0x00000C52 }, /* GL_LINE_SMOOTH_HINT */ - { 16440, 0x00000B24 }, /* GL_LINE_STIPPLE */ - { 16456, 0x00000B25 }, /* GL_LINE_STIPPLE_PATTERN */ - { 16480, 0x00000B26 }, /* GL_LINE_STIPPLE_REPEAT */ - { 16503, 0x00000003 }, /* GL_LINE_STRIP */ - { 16517, 0x0000000B }, /* GL_LINE_STRIP_ADJACENCY_ARB */ - { 16545, 0x00000702 }, /* GL_LINE_TOKEN */ - { 16559, 0x00000B21 }, /* GL_LINE_WIDTH */ - { 16573, 0x00000B23 }, /* GL_LINE_WIDTH_GRANULARITY */ - { 16599, 0x00000B22 }, /* GL_LINE_WIDTH_RANGE */ - { 16619, 0x00008B82 }, /* GL_LINK_STATUS */ - { 16634, 0x00000B32 }, /* GL_LIST_BASE */ - { 16647, 0x00020000 }, /* GL_LIST_BIT */ - { 16659, 0x00000B33 }, /* GL_LIST_INDEX */ - { 16673, 0x00000B30 }, /* GL_LIST_MODE */ - { 16686, 0x00000101 }, /* GL_LOAD */ - { 16694, 0x00000BF1 }, /* GL_LOGIC_OP */ - { 16706, 0x00000BF0 }, /* GL_LOGIC_OP_MODE */ - { 16723, 0x00008CA1 }, /* GL_LOWER_LEFT */ - { 16737, 0x00008DF0 }, /* GL_LOW_FLOAT */ - { 16750, 0x00008DF3 }, /* GL_LOW_INT */ - { 16761, 0x00001909 }, /* GL_LUMINANCE */ - { 16774, 0x00008041 }, /* GL_LUMINANCE12 */ - { 16789, 0x00008047 }, /* GL_LUMINANCE12_ALPHA12 */ - { 16812, 0x00008047 }, /* GL_LUMINANCE12_ALPHA12_EXT */ - { 16839, 0x00008046 }, /* GL_LUMINANCE12_ALPHA4 */ - { 16861, 0x00008046 }, /* GL_LUMINANCE12_ALPHA4_EXT */ - { 16887, 0x00008041 }, /* GL_LUMINANCE12_EXT */ - { 16906, 0x00008042 }, /* GL_LUMINANCE16 */ - { 16921, 0x00008048 }, /* GL_LUMINANCE16_ALPHA16 */ - { 16944, 0x00008048 }, /* GL_LUMINANCE16_ALPHA16_EXT */ - { 16971, 0x00008042 }, /* GL_LUMINANCE16_EXT */ - { 16990, 0x0000803F }, /* GL_LUMINANCE4 */ - { 17004, 0x00008043 }, /* GL_LUMINANCE4_ALPHA4 */ - { 17025, 0x00008043 }, /* GL_LUMINANCE4_ALPHA4_EXT */ - { 17050, 0x0000803F }, /* GL_LUMINANCE4_EXT */ - { 17068, 0x00008044 }, /* GL_LUMINANCE6_ALPHA2 */ - { 17089, 0x00008044 }, /* GL_LUMINANCE6_ALPHA2_EXT */ - { 17114, 0x00008040 }, /* GL_LUMINANCE8 */ - { 17128, 0x00008045 }, /* GL_LUMINANCE8_ALPHA8 */ - { 17149, 0x00008045 }, /* GL_LUMINANCE8_ALPHA8_EXT */ - { 17174, 0x00008040 }, /* GL_LUMINANCE8_EXT */ - { 17192, 0x0000190A }, /* GL_LUMINANCE_ALPHA */ - { 17211, 0x00000D90 }, /* GL_MAP1_COLOR_4 */ - { 17227, 0x00000DD0 }, /* GL_MAP1_GRID_DOMAIN */ - { 17247, 0x00000DD1 }, /* GL_MAP1_GRID_SEGMENTS */ - { 17269, 0x00000D91 }, /* GL_MAP1_INDEX */ - { 17283, 0x00000D92 }, /* GL_MAP1_NORMAL */ - { 17298, 0x00000D93 }, /* GL_MAP1_TEXTURE_COORD_1 */ - { 17322, 0x00000D94 }, /* GL_MAP1_TEXTURE_COORD_2 */ - { 17346, 0x00000D95 }, /* GL_MAP1_TEXTURE_COORD_3 */ - { 17370, 0x00000D96 }, /* GL_MAP1_TEXTURE_COORD_4 */ - { 17394, 0x00000D97 }, /* GL_MAP1_VERTEX_3 */ - { 17411, 0x00000D98 }, /* GL_MAP1_VERTEX_4 */ - { 17428, 0x00008660 }, /* GL_MAP1_VERTEX_ATTRIB0_4_NV */ - { 17456, 0x0000866A }, /* GL_MAP1_VERTEX_ATTRIB10_4_NV */ - { 17485, 0x0000866B }, /* GL_MAP1_VERTEX_ATTRIB11_4_NV */ - { 17514, 0x0000866C }, /* GL_MAP1_VERTEX_ATTRIB12_4_NV */ - { 17543, 0x0000866D }, /* GL_MAP1_VERTEX_ATTRIB13_4_NV */ - { 17572, 0x0000866E }, /* GL_MAP1_VERTEX_ATTRIB14_4_NV */ - { 17601, 0x0000866F }, /* GL_MAP1_VERTEX_ATTRIB15_4_NV */ - { 17630, 0x00008661 }, /* GL_MAP1_VERTEX_ATTRIB1_4_NV */ - { 17658, 0x00008662 }, /* GL_MAP1_VERTEX_ATTRIB2_4_NV */ - { 17686, 0x00008663 }, /* GL_MAP1_VERTEX_ATTRIB3_4_NV */ - { 17714, 0x00008664 }, /* GL_MAP1_VERTEX_ATTRIB4_4_NV */ - { 17742, 0x00008665 }, /* GL_MAP1_VERTEX_ATTRIB5_4_NV */ - { 17770, 0x00008666 }, /* GL_MAP1_VERTEX_ATTRIB6_4_NV */ - { 17798, 0x00008667 }, /* GL_MAP1_VERTEX_ATTRIB7_4_NV */ - { 17826, 0x00008668 }, /* GL_MAP1_VERTEX_ATTRIB8_4_NV */ - { 17854, 0x00008669 }, /* GL_MAP1_VERTEX_ATTRIB9_4_NV */ - { 17882, 0x00000DB0 }, /* GL_MAP2_COLOR_4 */ - { 17898, 0x00000DD2 }, /* GL_MAP2_GRID_DOMAIN */ - { 17918, 0x00000DD3 }, /* GL_MAP2_GRID_SEGMENTS */ - { 17940, 0x00000DB1 }, /* GL_MAP2_INDEX */ - { 17954, 0x00000DB2 }, /* GL_MAP2_NORMAL */ - { 17969, 0x00000DB3 }, /* GL_MAP2_TEXTURE_COORD_1 */ - { 17993, 0x00000DB4 }, /* GL_MAP2_TEXTURE_COORD_2 */ - { 18017, 0x00000DB5 }, /* GL_MAP2_TEXTURE_COORD_3 */ - { 18041, 0x00000DB6 }, /* GL_MAP2_TEXTURE_COORD_4 */ - { 18065, 0x00000DB7 }, /* GL_MAP2_VERTEX_3 */ - { 18082, 0x00000DB8 }, /* GL_MAP2_VERTEX_4 */ - { 18099, 0x00008670 }, /* GL_MAP2_VERTEX_ATTRIB0_4_NV */ - { 18127, 0x0000867A }, /* GL_MAP2_VERTEX_ATTRIB10_4_NV */ - { 18156, 0x0000867B }, /* GL_MAP2_VERTEX_ATTRIB11_4_NV */ - { 18185, 0x0000867C }, /* GL_MAP2_VERTEX_ATTRIB12_4_NV */ - { 18214, 0x0000867D }, /* GL_MAP2_VERTEX_ATTRIB13_4_NV */ - { 18243, 0x0000867E }, /* GL_MAP2_VERTEX_ATTRIB14_4_NV */ - { 18272, 0x0000867F }, /* GL_MAP2_VERTEX_ATTRIB15_4_NV */ - { 18301, 0x00008671 }, /* GL_MAP2_VERTEX_ATTRIB1_4_NV */ - { 18329, 0x00008672 }, /* GL_MAP2_VERTEX_ATTRIB2_4_NV */ - { 18357, 0x00008673 }, /* GL_MAP2_VERTEX_ATTRIB3_4_NV */ - { 18385, 0x00008674 }, /* GL_MAP2_VERTEX_ATTRIB4_4_NV */ - { 18413, 0x00008675 }, /* GL_MAP2_VERTEX_ATTRIB5_4_NV */ - { 18441, 0x00008676 }, /* GL_MAP2_VERTEX_ATTRIB6_4_NV */ - { 18469, 0x00008677 }, /* GL_MAP2_VERTEX_ATTRIB7_4_NV */ - { 18497, 0x00008678 }, /* GL_MAP2_VERTEX_ATTRIB8_4_NV */ - { 18525, 0x00008679 }, /* GL_MAP2_VERTEX_ATTRIB9_4_NV */ - { 18553, 0x00000D10 }, /* GL_MAP_COLOR */ - { 18566, 0x00000010 }, /* GL_MAP_FLUSH_EXPLICIT_BIT */ - { 18592, 0x00000008 }, /* GL_MAP_INVALIDATE_BUFFER_BIT */ - { 18621, 0x00000004 }, /* GL_MAP_INVALIDATE_RANGE_BIT */ - { 18649, 0x00000001 }, /* GL_MAP_READ_BIT */ - { 18665, 0x00000D11 }, /* GL_MAP_STENCIL */ - { 18680, 0x00000020 }, /* GL_MAP_UNSYNCHRONIZED_BIT */ - { 18706, 0x00000002 }, /* GL_MAP_WRITE_BIT */ - { 18723, 0x000088C0 }, /* GL_MATRIX0_ARB */ - { 18738, 0x00008630 }, /* GL_MATRIX0_NV */ - { 18752, 0x000088CA }, /* GL_MATRIX10_ARB */ - { 18768, 0x000088CB }, /* GL_MATRIX11_ARB */ - { 18784, 0x000088CC }, /* GL_MATRIX12_ARB */ - { 18800, 0x000088CD }, /* GL_MATRIX13_ARB */ - { 18816, 0x000088CE }, /* GL_MATRIX14_ARB */ - { 18832, 0x000088CF }, /* GL_MATRIX15_ARB */ - { 18848, 0x000088D0 }, /* GL_MATRIX16_ARB */ - { 18864, 0x000088D1 }, /* GL_MATRIX17_ARB */ - { 18880, 0x000088D2 }, /* GL_MATRIX18_ARB */ - { 18896, 0x000088D3 }, /* GL_MATRIX19_ARB */ - { 18912, 0x000088C1 }, /* GL_MATRIX1_ARB */ - { 18927, 0x00008631 }, /* GL_MATRIX1_NV */ - { 18941, 0x000088D4 }, /* GL_MATRIX20_ARB */ - { 18957, 0x000088D5 }, /* GL_MATRIX21_ARB */ - { 18973, 0x000088D6 }, /* GL_MATRIX22_ARB */ - { 18989, 0x000088D7 }, /* GL_MATRIX23_ARB */ - { 19005, 0x000088D8 }, /* GL_MATRIX24_ARB */ - { 19021, 0x000088D9 }, /* GL_MATRIX25_ARB */ - { 19037, 0x000088DA }, /* GL_MATRIX26_ARB */ - { 19053, 0x000088DB }, /* GL_MATRIX27_ARB */ - { 19069, 0x000088DC }, /* GL_MATRIX28_ARB */ - { 19085, 0x000088DD }, /* GL_MATRIX29_ARB */ - { 19101, 0x000088C2 }, /* GL_MATRIX2_ARB */ - { 19116, 0x00008632 }, /* GL_MATRIX2_NV */ - { 19130, 0x000088DE }, /* GL_MATRIX30_ARB */ - { 19146, 0x000088DF }, /* GL_MATRIX31_ARB */ - { 19162, 0x000088C3 }, /* GL_MATRIX3_ARB */ - { 19177, 0x00008633 }, /* GL_MATRIX3_NV */ - { 19191, 0x000088C4 }, /* GL_MATRIX4_ARB */ - { 19206, 0x00008634 }, /* GL_MATRIX4_NV */ - { 19220, 0x000088C5 }, /* GL_MATRIX5_ARB */ - { 19235, 0x00008635 }, /* GL_MATRIX5_NV */ - { 19249, 0x000088C6 }, /* GL_MATRIX6_ARB */ - { 19264, 0x00008636 }, /* GL_MATRIX6_NV */ - { 19278, 0x000088C7 }, /* GL_MATRIX7_ARB */ - { 19293, 0x00008637 }, /* GL_MATRIX7_NV */ - { 19307, 0x000088C8 }, /* GL_MATRIX8_ARB */ - { 19322, 0x000088C9 }, /* GL_MATRIX9_ARB */ - { 19337, 0x00008844 }, /* GL_MATRIX_INDEX_ARRAY_ARB */ - { 19363, 0x00008B9E }, /* GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES */ - { 19404, 0x00008844 }, /* GL_MATRIX_INDEX_ARRAY_OES */ - { 19430, 0x00008849 }, /* GL_MATRIX_INDEX_ARRAY_POINTER_ARB */ - { 19464, 0x00008849 }, /* GL_MATRIX_INDEX_ARRAY_POINTER_OES */ - { 19498, 0x00008846 }, /* GL_MATRIX_INDEX_ARRAY_SIZE_ARB */ - { 19529, 0x00008846 }, /* GL_MATRIX_INDEX_ARRAY_SIZE_OES */ - { 19560, 0x00008848 }, /* GL_MATRIX_INDEX_ARRAY_STRIDE_ARB */ - { 19593, 0x00008848 }, /* GL_MATRIX_INDEX_ARRAY_STRIDE_OES */ - { 19626, 0x00008847 }, /* GL_MATRIX_INDEX_ARRAY_TYPE_ARB */ - { 19657, 0x00008847 }, /* GL_MATRIX_INDEX_ARRAY_TYPE_OES */ - { 19688, 0x00000BA0 }, /* GL_MATRIX_MODE */ - { 19703, 0x00008840 }, /* GL_MATRIX_PALETTE_ARB */ - { 19725, 0x00008840 }, /* GL_MATRIX_PALETTE_OES */ - { 19747, 0x00008008 }, /* GL_MAX */ - { 19754, 0x00008073 }, /* GL_MAX_3D_TEXTURE_SIZE */ - { 19777, 0x00008073 }, /* GL_MAX_3D_TEXTURE_SIZE_OES */ - { 19804, 0x000088FF }, /* GL_MAX_ARRAY_TEXTURE_LAYERS_EXT */ - { 19836, 0x00000D35 }, /* GL_MAX_ATTRIB_STACK_DEPTH */ - { 19862, 0x00000D3B }, /* GL_MAX_CLIENT_ATTRIB_STACK_DEPTH */ - { 19895, 0x00008177 }, /* GL_MAX_CLIPMAP_DEPTH_SGIX */ - { 19921, 0x00008178 }, /* GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX */ - { 19955, 0x00000D32 }, /* GL_MAX_CLIP_PLANES */ - { 19974, 0x00008CDF }, /* GL_MAX_COLOR_ATTACHMENTS */ - { 19999, 0x00008CDF }, /* GL_MAX_COLOR_ATTACHMENTS_EXT */ - { 20028, 0x000080B3 }, /* GL_MAX_COLOR_MATRIX_STACK_DEPTH */ - { 20060, 0x000080B3 }, /* GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI */ - { 20096, 0x00008B4D }, /* GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS */ - { 20132, 0x00008B4D }, /* GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB */ - { 20172, 0x0000801B }, /* GL_MAX_CONVOLUTION_HEIGHT */ - { 20198, 0x0000801B }, /* GL_MAX_CONVOLUTION_HEIGHT_EXT */ - { 20228, 0x0000801A }, /* GL_MAX_CONVOLUTION_WIDTH */ - { 20253, 0x0000801A }, /* GL_MAX_CONVOLUTION_WIDTH_EXT */ - { 20282, 0x0000851C }, /* GL_MAX_CUBE_MAP_TEXTURE_SIZE */ - { 20311, 0x0000851C }, /* GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB */ - { 20344, 0x0000851C }, /* GL_MAX_CUBE_MAP_TEXTURE_SIZE_OES */ - { 20377, 0x00008824 }, /* GL_MAX_DRAW_BUFFERS */ - { 20397, 0x00008824 }, /* GL_MAX_DRAW_BUFFERS_ARB */ - { 20421, 0x00008824 }, /* GL_MAX_DRAW_BUFFERS_ATI */ - { 20445, 0x000080E9 }, /* GL_MAX_ELEMENTS_INDICES */ - { 20469, 0x000080E8 }, /* GL_MAX_ELEMENTS_VERTICES */ - { 20494, 0x00000D30 }, /* GL_MAX_EVAL_ORDER */ - { 20512, 0x00008008 }, /* GL_MAX_EXT */ - { 20523, 0x00008B49 }, /* GL_MAX_FRAGMENT_UNIFORM_COMPONENTS */ - { 20558, 0x00008B49 }, /* GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB */ - { 20597, 0x00008DFD }, /* GL_MAX_FRAGMENT_UNIFORM_VECTORS */ - { 20629, 0x00008DE0 }, /* GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB */ - { 20665, 0x00008C29 }, /* GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB */ - { 20705, 0x00008DE1 }, /* GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB */ - { 20749, 0x00008DDF }, /* GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB */ - { 20788, 0x00008DDD }, /* GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB */ - { 20827, 0x00000D31 }, /* GL_MAX_LIGHTS */ - { 20841, 0x00000B31 }, /* GL_MAX_LIST_NESTING */ - { 20861, 0x00008841 }, /* GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB */ - { 20899, 0x00000D36 }, /* GL_MAX_MODELVIEW_STACK_DEPTH */ - { 20928, 0x00000D37 }, /* GL_MAX_NAME_STACK_DEPTH */ - { 20952, 0x00008842 }, /* GL_MAX_PALETTE_MATRICES_ARB */ - { 20980, 0x00008842 }, /* GL_MAX_PALETTE_MATRICES_OES */ - { 21008, 0x00000D34 }, /* GL_MAX_PIXEL_MAP_TABLE */ - { 21031, 0x000088B1 }, /* GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB */ - { 21068, 0x0000880B }, /* GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB */ - { 21104, 0x000088AD }, /* GL_MAX_PROGRAM_ATTRIBS_ARB */ - { 21131, 0x000088F5 }, /* GL_MAX_PROGRAM_CALL_DEPTH_NV */ - { 21160, 0x000088B5 }, /* GL_MAX_PROGRAM_ENV_PARAMETERS_ARB */ - { 21194, 0x000088F4 }, /* GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV */ - { 21230, 0x000088F6 }, /* GL_MAX_PROGRAM_IF_DEPTH_NV */ - { 21257, 0x000088A1 }, /* GL_MAX_PROGRAM_INSTRUCTIONS_ARB */ - { 21289, 0x000088B4 }, /* GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB */ - { 21325, 0x000088F8 }, /* GL_MAX_PROGRAM_LOOP_COUNT_NV */ - { 21354, 0x000088F7 }, /* GL_MAX_PROGRAM_LOOP_DEPTH_NV */ - { 21383, 0x0000862F }, /* GL_MAX_PROGRAM_MATRICES_ARB */ - { 21411, 0x0000862E }, /* GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB */ - { 21449, 0x000088B3 }, /* GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ - { 21493, 0x0000880E }, /* GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ - { 21536, 0x000088AF }, /* GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB */ - { 21570, 0x000088A3 }, /* GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ - { 21609, 0x000088AB }, /* GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB */ - { 21646, 0x000088A7 }, /* GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB */ - { 21684, 0x00008810 }, /* GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ - { 21727, 0x0000880F }, /* GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ - { 21770, 0x000088A9 }, /* GL_MAX_PROGRAM_PARAMETERS_ARB */ - { 21800, 0x000088A5 }, /* GL_MAX_PROGRAM_TEMPORARIES_ARB */ - { 21831, 0x0000880D }, /* GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB */ - { 21867, 0x0000880C }, /* GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB */ - { 21903, 0x00000D38 }, /* GL_MAX_PROJECTION_STACK_DEPTH */ - { 21933, 0x000084F8 }, /* GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB */ - { 21967, 0x000084F8 }, /* GL_MAX_RECTANGLE_TEXTURE_SIZE_NV */ - { 22000, 0x000084E8 }, /* GL_MAX_RENDERBUFFER_SIZE */ - { 22025, 0x000084E8 }, /* GL_MAX_RENDERBUFFER_SIZE_EXT */ - { 22054, 0x000084E8 }, /* GL_MAX_RENDERBUFFER_SIZE_OES */ - { 22083, 0x00008D57 }, /* GL_MAX_SAMPLES */ - { 22098, 0x00008D57 }, /* GL_MAX_SAMPLES_EXT */ - { 22117, 0x00009111 }, /* GL_MAX_SERVER_WAIT_TIMEOUT */ - { 22144, 0x00008504 }, /* GL_MAX_SHININESS_NV */ - { 22164, 0x00008505 }, /* GL_MAX_SPOT_EXPONENT_NV */ - { 22188, 0x00008871 }, /* GL_MAX_TEXTURE_COORDS */ - { 22210, 0x00008871 }, /* GL_MAX_TEXTURE_COORDS_ARB */ - { 22236, 0x00008872 }, /* GL_MAX_TEXTURE_IMAGE_UNITS */ - { 22263, 0x00008872 }, /* GL_MAX_TEXTURE_IMAGE_UNITS_ARB */ - { 22294, 0x000084FD }, /* GL_MAX_TEXTURE_LOD_BIAS */ - { 22318, 0x000084FD }, /* GL_MAX_TEXTURE_LOD_BIAS_EXT */ - { 22346, 0x000084FF }, /* GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT */ - { 22380, 0x00000D33 }, /* GL_MAX_TEXTURE_SIZE */ - { 22400, 0x00000D39 }, /* GL_MAX_TEXTURE_STACK_DEPTH */ - { 22427, 0x000084E2 }, /* GL_MAX_TEXTURE_UNITS */ - { 22448, 0x000084E2 }, /* GL_MAX_TEXTURE_UNITS_ARB */ - { 22473, 0x0000862F }, /* GL_MAX_TRACK_MATRICES_NV */ - { 22498, 0x0000862E }, /* GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV */ - { 22533, 0x00008C8A }, /* GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT */ - { 22586, 0x00008C8B }, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT */ - { 22633, 0x00008C80 }, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT */ - { 22683, 0x00008B4B }, /* GL_MAX_VARYING_COMPONENTS */ - { 22709, 0x00008B4B }, /* GL_MAX_VARYING_FLOATS */ - { 22731, 0x00008B4B }, /* GL_MAX_VARYING_FLOATS_ARB */ - { 22757, 0x00008DFC }, /* GL_MAX_VARYING_VECTORS */ - { 22780, 0x00008869 }, /* GL_MAX_VERTEX_ATTRIBS */ - { 22802, 0x00008869 }, /* GL_MAX_VERTEX_ATTRIBS_ARB */ - { 22828, 0x00008B4C }, /* GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS */ - { 22862, 0x00008B4C }, /* GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB */ - { 22900, 0x00008B4A }, /* GL_MAX_VERTEX_UNIFORM_COMPONENTS */ - { 22933, 0x00008B4A }, /* GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB */ - { 22970, 0x00008DFB }, /* GL_MAX_VERTEX_UNIFORM_VECTORS */ - { 23000, 0x000086A4 }, /* GL_MAX_VERTEX_UNITS_ARB */ - { 23024, 0x000086A4 }, /* GL_MAX_VERTEX_UNITS_OES */ - { 23048, 0x00008DDE }, /* GL_MAX_VERTEX_VARYING_COMPONENTS_ARB */ - { 23085, 0x00000D3A }, /* GL_MAX_VIEWPORT_DIMS */ - { 23106, 0x00008DF1 }, /* GL_MEDIUM_FLOAT */ - { 23122, 0x00008DF4 }, /* GL_MEDIUM_INT */ - { 23136, 0x00008007 }, /* GL_MIN */ - { 23143, 0x0000802E }, /* GL_MINMAX */ - { 23153, 0x0000802E }, /* GL_MINMAX_EXT */ - { 23167, 0x0000802F }, /* GL_MINMAX_FORMAT */ - { 23184, 0x0000802F }, /* GL_MINMAX_FORMAT_EXT */ - { 23205, 0x00008030 }, /* GL_MINMAX_SINK */ - { 23220, 0x00008030 }, /* GL_MINMAX_SINK_EXT */ - { 23239, 0x00008007 }, /* GL_MIN_EXT */ - { 23250, 0x00008370 }, /* GL_MIRRORED_REPEAT */ - { 23269, 0x00008370 }, /* GL_MIRRORED_REPEAT_ARB */ - { 23292, 0x00008370 }, /* GL_MIRRORED_REPEAT_IBM */ - { 23315, 0x00008742 }, /* GL_MIRROR_CLAMP_ATI */ - { 23335, 0x00008742 }, /* GL_MIRROR_CLAMP_EXT */ - { 23355, 0x00008912 }, /* GL_MIRROR_CLAMP_TO_BORDER_EXT */ - { 23385, 0x00008743 }, /* GL_MIRROR_CLAMP_TO_EDGE_ATI */ - { 23413, 0x00008743 }, /* GL_MIRROR_CLAMP_TO_EDGE_EXT */ - { 23441, 0x00001700 }, /* GL_MODELVIEW */ - { 23454, 0x00001700 }, /* GL_MODELVIEW0_ARB */ - { 23472, 0x0000872A }, /* GL_MODELVIEW10_ARB */ - { 23491, 0x0000872B }, /* GL_MODELVIEW11_ARB */ - { 23510, 0x0000872C }, /* GL_MODELVIEW12_ARB */ - { 23529, 0x0000872D }, /* GL_MODELVIEW13_ARB */ - { 23548, 0x0000872E }, /* GL_MODELVIEW14_ARB */ - { 23567, 0x0000872F }, /* GL_MODELVIEW15_ARB */ - { 23586, 0x00008730 }, /* GL_MODELVIEW16_ARB */ - { 23605, 0x00008731 }, /* GL_MODELVIEW17_ARB */ - { 23624, 0x00008732 }, /* GL_MODELVIEW18_ARB */ - { 23643, 0x00008733 }, /* GL_MODELVIEW19_ARB */ - { 23662, 0x0000850A }, /* GL_MODELVIEW1_ARB */ - { 23680, 0x00008734 }, /* GL_MODELVIEW20_ARB */ - { 23699, 0x00008735 }, /* GL_MODELVIEW21_ARB */ - { 23718, 0x00008736 }, /* GL_MODELVIEW22_ARB */ - { 23737, 0x00008737 }, /* GL_MODELVIEW23_ARB */ - { 23756, 0x00008738 }, /* GL_MODELVIEW24_ARB */ - { 23775, 0x00008739 }, /* GL_MODELVIEW25_ARB */ - { 23794, 0x0000873A }, /* GL_MODELVIEW26_ARB */ - { 23813, 0x0000873B }, /* GL_MODELVIEW27_ARB */ - { 23832, 0x0000873C }, /* GL_MODELVIEW28_ARB */ - { 23851, 0x0000873D }, /* GL_MODELVIEW29_ARB */ - { 23870, 0x00008722 }, /* GL_MODELVIEW2_ARB */ - { 23888, 0x0000873E }, /* GL_MODELVIEW30_ARB */ - { 23907, 0x0000873F }, /* GL_MODELVIEW31_ARB */ - { 23926, 0x00008723 }, /* GL_MODELVIEW3_ARB */ - { 23944, 0x00008724 }, /* GL_MODELVIEW4_ARB */ - { 23962, 0x00008725 }, /* GL_MODELVIEW5_ARB */ - { 23980, 0x00008726 }, /* GL_MODELVIEW6_ARB */ - { 23998, 0x00008727 }, /* GL_MODELVIEW7_ARB */ - { 24016, 0x00008728 }, /* GL_MODELVIEW8_ARB */ - { 24034, 0x00008729 }, /* GL_MODELVIEW9_ARB */ - { 24052, 0x00000BA6 }, /* GL_MODELVIEW_MATRIX */ - { 24072, 0x0000898D }, /* GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES */ - { 24114, 0x00008629 }, /* GL_MODELVIEW_PROJECTION_NV */ - { 24141, 0x00000BA3 }, /* GL_MODELVIEW_STACK_DEPTH */ - { 24166, 0x00002100 }, /* GL_MODULATE */ - { 24178, 0x00008744 }, /* GL_MODULATE_ADD_ATI */ - { 24198, 0x00008745 }, /* GL_MODULATE_SIGNED_ADD_ATI */ - { 24225, 0x00008746 }, /* GL_MODULATE_SUBTRACT_ATI */ - { 24250, 0x00000103 }, /* GL_MULT */ - { 24258, 0x0000809D }, /* GL_MULTISAMPLE */ - { 24273, 0x000086B2 }, /* GL_MULTISAMPLE_3DFX */ - { 24293, 0x0000809D }, /* GL_MULTISAMPLE_ARB */ - { 24312, 0x20000000 }, /* GL_MULTISAMPLE_BIT */ - { 24331, 0x20000000 }, /* GL_MULTISAMPLE_BIT_3DFX */ - { 24355, 0x20000000 }, /* GL_MULTISAMPLE_BIT_ARB */ - { 24378, 0x00008534 }, /* GL_MULTISAMPLE_FILTER_HINT_NV */ - { 24408, 0x00002A25 }, /* GL_N3F_V3F */ - { 24419, 0x00000D70 }, /* GL_NAME_STACK_DEPTH */ - { 24439, 0x0000150E }, /* GL_NAND */ - { 24447, 0x00002600 }, /* GL_NEAREST */ - { 24458, 0x0000844E }, /* GL_NEAREST_CLIPMAP_LINEAR_SGIX */ - { 24489, 0x0000844D }, /* GL_NEAREST_CLIPMAP_NEAREST_SGIX */ - { 24521, 0x00002702 }, /* GL_NEAREST_MIPMAP_LINEAR */ - { 24546, 0x00002700 }, /* GL_NEAREST_MIPMAP_NEAREST */ - { 24572, 0x00000200 }, /* GL_NEVER */ - { 24581, 0x00001102 }, /* GL_NICEST */ - { 24591, 0x00000000 }, /* GL_NONE */ - { 24599, 0x00000000 }, /* GL_NONE_OES */ - { 24611, 0x00001505 }, /* GL_NOOP */ - { 24619, 0x00001508 }, /* GL_NOR */ - { 24626, 0x00000BA1 }, /* GL_NORMALIZE */ - { 24639, 0x00008075 }, /* GL_NORMAL_ARRAY */ - { 24655, 0x00008897 }, /* GL_NORMAL_ARRAY_BUFFER_BINDING */ - { 24686, 0x00008897 }, /* GL_NORMAL_ARRAY_BUFFER_BINDING_ARB */ - { 24721, 0x0000808F }, /* GL_NORMAL_ARRAY_POINTER */ - { 24745, 0x0000807F }, /* GL_NORMAL_ARRAY_STRIDE */ - { 24768, 0x0000807E }, /* GL_NORMAL_ARRAY_TYPE */ - { 24789, 0x00008511 }, /* GL_NORMAL_MAP */ - { 24803, 0x00008511 }, /* GL_NORMAL_MAP_ARB */ - { 24821, 0x00008511 }, /* GL_NORMAL_MAP_NV */ - { 24838, 0x00008511 }, /* GL_NORMAL_MAP_OES */ - { 24856, 0x00000205 }, /* GL_NOTEQUAL */ - { 24868, 0x00000000 }, /* GL_NO_ERROR */ - { 24880, 0x000086A2 }, /* GL_NUM_COMPRESSED_TEXTURE_FORMATS */ - { 24914, 0x000086A2 }, /* GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB */ - { 24952, 0x000087FE }, /* GL_NUM_PROGRAM_BINARY_FORMATS_OES */ - { 24986, 0x00008DF9 }, /* GL_NUM_SHADER_BINARY_FORMATS */ - { 25015, 0x00008B89 }, /* GL_OBJECT_ACTIVE_ATTRIBUTES_ARB */ - { 25047, 0x00008B8A }, /* GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB */ - { 25089, 0x00008B86 }, /* GL_OBJECT_ACTIVE_UNIFORMS_ARB */ - { 25119, 0x00008B87 }, /* GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB */ - { 25159, 0x00008B85 }, /* GL_OBJECT_ATTACHED_OBJECTS_ARB */ - { 25190, 0x00008B81 }, /* GL_OBJECT_COMPILE_STATUS_ARB */ - { 25219, 0x00008B80 }, /* GL_OBJECT_DELETE_STATUS_ARB */ - { 25247, 0x00008B84 }, /* GL_OBJECT_INFO_LOG_LENGTH_ARB */ - { 25277, 0x00002401 }, /* GL_OBJECT_LINEAR */ - { 25294, 0x00008B82 }, /* GL_OBJECT_LINK_STATUS_ARB */ - { 25320, 0x00002501 }, /* GL_OBJECT_PLANE */ - { 25336, 0x00008B88 }, /* GL_OBJECT_SHADER_SOURCE_LENGTH_ARB */ - { 25371, 0x00008B4F }, /* GL_OBJECT_SUBTYPE_ARB */ - { 25393, 0x00009112 }, /* GL_OBJECT_TYPE */ - { 25408, 0x00008B4E }, /* GL_OBJECT_TYPE_ARB */ - { 25427, 0x00008B83 }, /* GL_OBJECT_VALIDATE_STATUS_ARB */ - { 25457, 0x00008165 }, /* GL_OCCLUSION_TEST_HP */ - { 25478, 0x00008166 }, /* GL_OCCLUSION_TEST_RESULT_HP */ - { 25506, 0x00000001 }, /* GL_ONE */ - { 25513, 0x00008004 }, /* GL_ONE_MINUS_CONSTANT_ALPHA */ - { 25541, 0x00008004 }, /* GL_ONE_MINUS_CONSTANT_ALPHA_EXT */ - { 25573, 0x00008002 }, /* GL_ONE_MINUS_CONSTANT_COLOR */ - { 25601, 0x00008002 }, /* GL_ONE_MINUS_CONSTANT_COLOR_EXT */ - { 25633, 0x00000305 }, /* GL_ONE_MINUS_DST_ALPHA */ - { 25656, 0x00000307 }, /* GL_ONE_MINUS_DST_COLOR */ - { 25679, 0x00000303 }, /* GL_ONE_MINUS_SRC_ALPHA */ - { 25702, 0x00000301 }, /* GL_ONE_MINUS_SRC_COLOR */ - { 25725, 0x00008598 }, /* GL_OPERAND0_ALPHA */ - { 25743, 0x00008598 }, /* GL_OPERAND0_ALPHA_ARB */ - { 25765, 0x00008598 }, /* GL_OPERAND0_ALPHA_EXT */ - { 25787, 0x00008590 }, /* GL_OPERAND0_RGB */ - { 25803, 0x00008590 }, /* GL_OPERAND0_RGB_ARB */ - { 25823, 0x00008590 }, /* GL_OPERAND0_RGB_EXT */ - { 25843, 0x00008599 }, /* GL_OPERAND1_ALPHA */ - { 25861, 0x00008599 }, /* GL_OPERAND1_ALPHA_ARB */ - { 25883, 0x00008599 }, /* GL_OPERAND1_ALPHA_EXT */ - { 25905, 0x00008591 }, /* GL_OPERAND1_RGB */ - { 25921, 0x00008591 }, /* GL_OPERAND1_RGB_ARB */ - { 25941, 0x00008591 }, /* GL_OPERAND1_RGB_EXT */ - { 25961, 0x0000859A }, /* GL_OPERAND2_ALPHA */ - { 25979, 0x0000859A }, /* GL_OPERAND2_ALPHA_ARB */ - { 26001, 0x0000859A }, /* GL_OPERAND2_ALPHA_EXT */ - { 26023, 0x00008592 }, /* GL_OPERAND2_RGB */ - { 26039, 0x00008592 }, /* GL_OPERAND2_RGB_ARB */ - { 26059, 0x00008592 }, /* GL_OPERAND2_RGB_EXT */ - { 26079, 0x0000859B }, /* GL_OPERAND3_ALPHA_NV */ - { 26100, 0x00008593 }, /* GL_OPERAND3_RGB_NV */ - { 26119, 0x00001507 }, /* GL_OR */ - { 26125, 0x00000A01 }, /* GL_ORDER */ - { 26134, 0x0000150D }, /* GL_OR_INVERTED */ - { 26149, 0x0000150B }, /* GL_OR_REVERSE */ - { 26163, 0x00000505 }, /* GL_OUT_OF_MEMORY */ - { 26180, 0x00000D05 }, /* GL_PACK_ALIGNMENT */ - { 26198, 0x0000806C }, /* GL_PACK_IMAGE_HEIGHT */ - { 26219, 0x00008758 }, /* GL_PACK_INVERT_MESA */ - { 26239, 0x00000D01 }, /* GL_PACK_LSB_FIRST */ - { 26257, 0x00000D02 }, /* GL_PACK_ROW_LENGTH */ - { 26276, 0x0000806B }, /* GL_PACK_SKIP_IMAGES */ - { 26296, 0x00000D04 }, /* GL_PACK_SKIP_PIXELS */ - { 26316, 0x00000D03 }, /* GL_PACK_SKIP_ROWS */ - { 26334, 0x00000D00 }, /* GL_PACK_SWAP_BYTES */ - { 26353, 0x00008B92 }, /* GL_PALETTE4_R5_G6_B5_OES */ - { 26378, 0x00008B94 }, /* GL_PALETTE4_RGB5_A1_OES */ - { 26402, 0x00008B90 }, /* GL_PALETTE4_RGB8_OES */ - { 26423, 0x00008B93 }, /* GL_PALETTE4_RGBA4_OES */ - { 26445, 0x00008B91 }, /* GL_PALETTE4_RGBA8_OES */ - { 26467, 0x00008B97 }, /* GL_PALETTE8_R5_G6_B5_OES */ - { 26492, 0x00008B99 }, /* GL_PALETTE8_RGB5_A1_OES */ - { 26516, 0x00008B95 }, /* GL_PALETTE8_RGB8_OES */ - { 26537, 0x00008B98 }, /* GL_PALETTE8_RGBA4_OES */ - { 26559, 0x00008B96 }, /* GL_PALETTE8_RGBA8_OES */ - { 26581, 0x00000700 }, /* GL_PASS_THROUGH_TOKEN */ - { 26603, 0x00000C50 }, /* GL_PERSPECTIVE_CORRECTION_HINT */ - { 26634, 0x00000C79 }, /* GL_PIXEL_MAP_A_TO_A */ - { 26654, 0x00000CB9 }, /* GL_PIXEL_MAP_A_TO_A_SIZE */ - { 26679, 0x00000C78 }, /* GL_PIXEL_MAP_B_TO_B */ - { 26699, 0x00000CB8 }, /* GL_PIXEL_MAP_B_TO_B_SIZE */ - { 26724, 0x00000C77 }, /* GL_PIXEL_MAP_G_TO_G */ - { 26744, 0x00000CB7 }, /* GL_PIXEL_MAP_G_TO_G_SIZE */ - { 26769, 0x00000C75 }, /* GL_PIXEL_MAP_I_TO_A */ - { 26789, 0x00000CB5 }, /* GL_PIXEL_MAP_I_TO_A_SIZE */ - { 26814, 0x00000C74 }, /* GL_PIXEL_MAP_I_TO_B */ - { 26834, 0x00000CB4 }, /* GL_PIXEL_MAP_I_TO_B_SIZE */ - { 26859, 0x00000C73 }, /* GL_PIXEL_MAP_I_TO_G */ - { 26879, 0x00000CB3 }, /* GL_PIXEL_MAP_I_TO_G_SIZE */ - { 26904, 0x00000C70 }, /* GL_PIXEL_MAP_I_TO_I */ - { 26924, 0x00000CB0 }, /* GL_PIXEL_MAP_I_TO_I_SIZE */ - { 26949, 0x00000C72 }, /* GL_PIXEL_MAP_I_TO_R */ - { 26969, 0x00000CB2 }, /* GL_PIXEL_MAP_I_TO_R_SIZE */ - { 26994, 0x00000C76 }, /* GL_PIXEL_MAP_R_TO_R */ - { 27014, 0x00000CB6 }, /* GL_PIXEL_MAP_R_TO_R_SIZE */ - { 27039, 0x00000C71 }, /* GL_PIXEL_MAP_S_TO_S */ - { 27059, 0x00000CB1 }, /* GL_PIXEL_MAP_S_TO_S_SIZE */ - { 27084, 0x00000020 }, /* GL_PIXEL_MODE_BIT */ - { 27102, 0x000088EB }, /* GL_PIXEL_PACK_BUFFER */ - { 27123, 0x000088ED }, /* GL_PIXEL_PACK_BUFFER_BINDING */ - { 27152, 0x000088ED }, /* GL_PIXEL_PACK_BUFFER_BINDING_EXT */ - { 27185, 0x000088EB }, /* GL_PIXEL_PACK_BUFFER_EXT */ - { 27210, 0x000088EC }, /* GL_PIXEL_UNPACK_BUFFER */ - { 27233, 0x000088EF }, /* GL_PIXEL_UNPACK_BUFFER_BINDING */ - { 27264, 0x000088EF }, /* GL_PIXEL_UNPACK_BUFFER_BINDING_EXT */ - { 27299, 0x000088EC }, /* GL_PIXEL_UNPACK_BUFFER_EXT */ - { 27326, 0x00001B00 }, /* GL_POINT */ - { 27335, 0x00000000 }, /* GL_POINTS */ - { 27345, 0x00000002 }, /* GL_POINT_BIT */ - { 27358, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION */ - { 27388, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION_ARB */ - { 27422, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION_EXT */ - { 27456, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION_SGIS */ - { 27491, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE */ - { 27520, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE_ARB */ - { 27553, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE_EXT */ - { 27586, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE_SGIS */ - { 27620, 0x00000B11 }, /* GL_POINT_SIZE */ - { 27634, 0x00008B9F }, /* GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES */ - { 27673, 0x00008B9C }, /* GL_POINT_SIZE_ARRAY_OES */ - { 27697, 0x0000898C }, /* GL_POINT_SIZE_ARRAY_POINTER_OES */ - { 27729, 0x0000898B }, /* GL_POINT_SIZE_ARRAY_STRIDE_OES */ - { 27760, 0x0000898A }, /* GL_POINT_SIZE_ARRAY_TYPE_OES */ - { 27789, 0x00000B13 }, /* GL_POINT_SIZE_GRANULARITY */ - { 27815, 0x00008127 }, /* GL_POINT_SIZE_MAX */ - { 27833, 0x00008127 }, /* GL_POINT_SIZE_MAX_ARB */ - { 27855, 0x00008127 }, /* GL_POINT_SIZE_MAX_EXT */ - { 27877, 0x00008127 }, /* GL_POINT_SIZE_MAX_SGIS */ - { 27900, 0x00008126 }, /* GL_POINT_SIZE_MIN */ - { 27918, 0x00008126 }, /* GL_POINT_SIZE_MIN_ARB */ - { 27940, 0x00008126 }, /* GL_POINT_SIZE_MIN_EXT */ - { 27962, 0x00008126 }, /* GL_POINT_SIZE_MIN_SGIS */ - { 27985, 0x00000B12 }, /* GL_POINT_SIZE_RANGE */ - { 28005, 0x00000B10 }, /* GL_POINT_SMOOTH */ - { 28021, 0x00000C51 }, /* GL_POINT_SMOOTH_HINT */ - { 28042, 0x00008861 }, /* GL_POINT_SPRITE */ - { 28058, 0x00008861 }, /* GL_POINT_SPRITE_ARB */ - { 28078, 0x00008CA0 }, /* GL_POINT_SPRITE_COORD_ORIGIN */ - { 28107, 0x00008861 }, /* GL_POINT_SPRITE_NV */ - { 28126, 0x00008861 }, /* GL_POINT_SPRITE_OES */ - { 28146, 0x00008863 }, /* GL_POINT_SPRITE_R_MODE_NV */ - { 28172, 0x00000701 }, /* GL_POINT_TOKEN */ - { 28187, 0x00000009 }, /* GL_POLYGON */ - { 28198, 0x00000008 }, /* GL_POLYGON_BIT */ - { 28213, 0x00000B40 }, /* GL_POLYGON_MODE */ - { 28229, 0x00008039 }, /* GL_POLYGON_OFFSET_BIAS */ - { 28252, 0x00008038 }, /* GL_POLYGON_OFFSET_FACTOR */ - { 28277, 0x00008037 }, /* GL_POLYGON_OFFSET_FILL */ - { 28300, 0x00002A02 }, /* GL_POLYGON_OFFSET_LINE */ - { 28323, 0x00002A01 }, /* GL_POLYGON_OFFSET_POINT */ - { 28347, 0x00002A00 }, /* GL_POLYGON_OFFSET_UNITS */ - { 28371, 0x00000B41 }, /* GL_POLYGON_SMOOTH */ - { 28389, 0x00000C53 }, /* GL_POLYGON_SMOOTH_HINT */ - { 28412, 0x00000B42 }, /* GL_POLYGON_STIPPLE */ - { 28431, 0x00000010 }, /* GL_POLYGON_STIPPLE_BIT */ - { 28454, 0x00000703 }, /* GL_POLYGON_TOKEN */ - { 28471, 0x00001203 }, /* GL_POSITION */ - { 28483, 0x000080BB }, /* GL_POST_COLOR_MATRIX_ALPHA_BIAS */ - { 28515, 0x000080BB }, /* GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI */ - { 28551, 0x000080B7 }, /* GL_POST_COLOR_MATRIX_ALPHA_SCALE */ - { 28584, 0x000080B7 }, /* GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI */ - { 28621, 0x000080BA }, /* GL_POST_COLOR_MATRIX_BLUE_BIAS */ - { 28652, 0x000080BA }, /* GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI */ - { 28687, 0x000080B6 }, /* GL_POST_COLOR_MATRIX_BLUE_SCALE */ - { 28719, 0x000080B6 }, /* GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI */ - { 28755, 0x000080D2 }, /* GL_POST_COLOR_MATRIX_COLOR_TABLE */ - { 28788, 0x000080B9 }, /* GL_POST_COLOR_MATRIX_GREEN_BIAS */ - { 28820, 0x000080B9 }, /* GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI */ - { 28856, 0x000080B5 }, /* GL_POST_COLOR_MATRIX_GREEN_SCALE */ - { 28889, 0x000080B5 }, /* GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI */ - { 28926, 0x000080B8 }, /* GL_POST_COLOR_MATRIX_RED_BIAS */ - { 28956, 0x000080B8 }, /* GL_POST_COLOR_MATRIX_RED_BIAS_SGI */ - { 28990, 0x000080B4 }, /* GL_POST_COLOR_MATRIX_RED_SCALE */ - { 29021, 0x000080B4 }, /* GL_POST_COLOR_MATRIX_RED_SCALE_SGI */ - { 29056, 0x00008023 }, /* GL_POST_CONVOLUTION_ALPHA_BIAS */ - { 29087, 0x00008023 }, /* GL_POST_CONVOLUTION_ALPHA_BIAS_EXT */ - { 29122, 0x0000801F }, /* GL_POST_CONVOLUTION_ALPHA_SCALE */ - { 29154, 0x0000801F }, /* GL_POST_CONVOLUTION_ALPHA_SCALE_EXT */ - { 29190, 0x00008022 }, /* GL_POST_CONVOLUTION_BLUE_BIAS */ - { 29220, 0x00008022 }, /* GL_POST_CONVOLUTION_BLUE_BIAS_EXT */ - { 29254, 0x0000801E }, /* GL_POST_CONVOLUTION_BLUE_SCALE */ - { 29285, 0x0000801E }, /* GL_POST_CONVOLUTION_BLUE_SCALE_EXT */ - { 29320, 0x000080D1 }, /* GL_POST_CONVOLUTION_COLOR_TABLE */ - { 29352, 0x00008021 }, /* GL_POST_CONVOLUTION_GREEN_BIAS */ - { 29383, 0x00008021 }, /* GL_POST_CONVOLUTION_GREEN_BIAS_EXT */ - { 29418, 0x0000801D }, /* GL_POST_CONVOLUTION_GREEN_SCALE */ - { 29450, 0x0000801D }, /* GL_POST_CONVOLUTION_GREEN_SCALE_EXT */ - { 29486, 0x00008020 }, /* GL_POST_CONVOLUTION_RED_BIAS */ - { 29515, 0x00008020 }, /* GL_POST_CONVOLUTION_RED_BIAS_EXT */ - { 29548, 0x0000801C }, /* GL_POST_CONVOLUTION_RED_SCALE */ - { 29578, 0x0000801C }, /* GL_POST_CONVOLUTION_RED_SCALE_EXT */ - { 29612, 0x0000817B }, /* GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX */ - { 29651, 0x00008179 }, /* GL_POST_TEXTURE_FILTER_BIAS_SGIX */ - { 29684, 0x0000817C }, /* GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX */ - { 29724, 0x0000817A }, /* GL_POST_TEXTURE_FILTER_SCALE_SGIX */ - { 29758, 0x00008578 }, /* GL_PREVIOUS */ - { 29770, 0x00008578 }, /* GL_PREVIOUS_ARB */ - { 29786, 0x00008578 }, /* GL_PREVIOUS_EXT */ - { 29802, 0x00008577 }, /* GL_PRIMARY_COLOR */ - { 29819, 0x00008577 }, /* GL_PRIMARY_COLOR_ARB */ - { 29840, 0x00008577 }, /* GL_PRIMARY_COLOR_EXT */ - { 29861, 0x00008C87 }, /* GL_PRIMITIVES_GENERATED_EXT */ - { 29889, 0x000088B0 }, /* GL_PROGRAM_ADDRESS_REGISTERS_ARB */ - { 29922, 0x00008805 }, /* GL_PROGRAM_ALU_INSTRUCTIONS_ARB */ - { 29954, 0x000088AC }, /* GL_PROGRAM_ATTRIBS_ARB */ - { 29977, 0x000087FF }, /* GL_PROGRAM_BINARY_FORMATS_OES */ - { 30007, 0x00008741 }, /* GL_PROGRAM_BINARY_LENGTH_OES */ - { 30036, 0x00008677 }, /* GL_PROGRAM_BINDING_ARB */ - { 30059, 0x0000864B }, /* GL_PROGRAM_ERROR_POSITION_ARB */ - { 30089, 0x0000864B }, /* GL_PROGRAM_ERROR_POSITION_NV */ - { 30118, 0x00008874 }, /* GL_PROGRAM_ERROR_STRING_ARB */ - { 30146, 0x00008876 }, /* GL_PROGRAM_FORMAT_ARB */ - { 30168, 0x00008875 }, /* GL_PROGRAM_FORMAT_ASCII_ARB */ - { 30196, 0x000088A0 }, /* GL_PROGRAM_INSTRUCTIONS_ARB */ - { 30224, 0x00008627 }, /* GL_PROGRAM_LENGTH_ARB */ - { 30246, 0x00008627 }, /* GL_PROGRAM_LENGTH_NV */ - { 30267, 0x000088B2 }, /* GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ - { 30307, 0x00008808 }, /* GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ - { 30346, 0x000088AE }, /* GL_PROGRAM_NATIVE_ATTRIBS_ARB */ - { 30376, 0x000088A2 }, /* GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ - { 30411, 0x000088AA }, /* GL_PROGRAM_NATIVE_PARAMETERS_ARB */ - { 30444, 0x000088A6 }, /* GL_PROGRAM_NATIVE_TEMPORARIES_ARB */ - { 30478, 0x0000880A }, /* GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ - { 30517, 0x00008809 }, /* GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ - { 30556, 0x00008B40 }, /* GL_PROGRAM_OBJECT_ARB */ - { 30578, 0x000088A8 }, /* GL_PROGRAM_PARAMETERS_ARB */ - { 30604, 0x00008644 }, /* GL_PROGRAM_PARAMETER_NV */ - { 30628, 0x00008642 }, /* GL_PROGRAM_POINT_SIZE_ARB */ - { 30654, 0x00008647 }, /* GL_PROGRAM_RESIDENT_NV */ - { 30677, 0x00008628 }, /* GL_PROGRAM_STRING_ARB */ - { 30699, 0x00008628 }, /* GL_PROGRAM_STRING_NV */ - { 30720, 0x00008646 }, /* GL_PROGRAM_TARGET_NV */ - { 30741, 0x000088A4 }, /* GL_PROGRAM_TEMPORARIES_ARB */ - { 30768, 0x00008807 }, /* GL_PROGRAM_TEX_INDIRECTIONS_ARB */ - { 30800, 0x00008806 }, /* GL_PROGRAM_TEX_INSTRUCTIONS_ARB */ - { 30832, 0x000088B6 }, /* GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB */ - { 30867, 0x00001701 }, /* GL_PROJECTION */ - { 30881, 0x00000BA7 }, /* GL_PROJECTION_MATRIX */ - { 30902, 0x0000898E }, /* GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES */ - { 30945, 0x00000BA4 }, /* GL_PROJECTION_STACK_DEPTH */ - { 30971, 0x00008E4F }, /* GL_PROVOKING_VERTEX */ - { 30991, 0x00008E4F }, /* GL_PROVOKING_VERTEX_EXT */ - { 31015, 0x000080D3 }, /* GL_PROXY_COLOR_TABLE */ - { 31036, 0x00008025 }, /* GL_PROXY_HISTOGRAM */ - { 31055, 0x00008025 }, /* GL_PROXY_HISTOGRAM_EXT */ - { 31078, 0x000080D5 }, /* GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE */ - { 31117, 0x000080D4 }, /* GL_PROXY_POST_CONVOLUTION_COLOR_TABLE */ - { 31155, 0x00008063 }, /* GL_PROXY_TEXTURE_1D */ - { 31175, 0x00008C19 }, /* GL_PROXY_TEXTURE_1D_ARRAY_EXT */ - { 31205, 0x00008063 }, /* GL_PROXY_TEXTURE_1D_EXT */ - { 31229, 0x00008064 }, /* GL_PROXY_TEXTURE_2D */ - { 31249, 0x00008C1B }, /* GL_PROXY_TEXTURE_2D_ARRAY_EXT */ - { 31279, 0x00008064 }, /* GL_PROXY_TEXTURE_2D_EXT */ - { 31303, 0x00008070 }, /* GL_PROXY_TEXTURE_3D */ - { 31323, 0x000080BD }, /* GL_PROXY_TEXTURE_COLOR_TABLE_SGI */ - { 31356, 0x0000851B }, /* GL_PROXY_TEXTURE_CUBE_MAP */ - { 31382, 0x0000851B }, /* GL_PROXY_TEXTURE_CUBE_MAP_ARB */ - { 31412, 0x000084F7 }, /* GL_PROXY_TEXTURE_RECTANGLE_ARB */ - { 31443, 0x000084F7 }, /* GL_PROXY_TEXTURE_RECTANGLE_NV */ - { 31473, 0x00008A1D }, /* GL_PURGEABLE_APPLE */ - { 31492, 0x00002003 }, /* GL_Q */ - { 31497, 0x00001209 }, /* GL_QUADRATIC_ATTENUATION */ - { 31522, 0x00000007 }, /* GL_QUADS */ - { 31531, 0x00008E4C }, /* GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION */ - { 31575, 0x00008E4C }, /* GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT */ - { 31623, 0x00008614 }, /* GL_QUAD_MESH_SUN */ - { 31640, 0x00000008 }, /* GL_QUAD_STRIP */ - { 31654, 0x00008E16 }, /* GL_QUERY_BY_REGION_NO_WAIT_NV */ - { 31684, 0x00008E15 }, /* GL_QUERY_BY_REGION_WAIT_NV */ - { 31711, 0x00008864 }, /* GL_QUERY_COUNTER_BITS */ - { 31733, 0x00008864 }, /* GL_QUERY_COUNTER_BITS_ARB */ - { 31759, 0x00008E14 }, /* GL_QUERY_NO_WAIT_NV */ - { 31779, 0x00008866 }, /* GL_QUERY_RESULT */ - { 31795, 0x00008866 }, /* GL_QUERY_RESULT_ARB */ - { 31815, 0x00008867 }, /* GL_QUERY_RESULT_AVAILABLE */ - { 31841, 0x00008867 }, /* GL_QUERY_RESULT_AVAILABLE_ARB */ - { 31871, 0x00008E13 }, /* GL_QUERY_WAIT_NV */ - { 31888, 0x00002002 }, /* GL_R */ - { 31893, 0x00002A10 }, /* GL_R3_G3_B2 */ - { 31905, 0x00008C89 }, /* GL_RASTERIZER_DISCARD_EXT */ - { 31931, 0x00019262 }, /* GL_RASTER_POSITION_UNCLIPPED_IBM */ - { 31964, 0x00000C02 }, /* GL_READ_BUFFER */ - { 31979, 0x00008CA8 }, /* GL_READ_FRAMEBUFFER */ - { 31999, 0x00008CAA }, /* GL_READ_FRAMEBUFFER_BINDING */ - { 32027, 0x00008CAA }, /* GL_READ_FRAMEBUFFER_BINDING_EXT */ - { 32059, 0x00008CA8 }, /* GL_READ_FRAMEBUFFER_EXT */ - { 32083, 0x000088B8 }, /* GL_READ_ONLY */ - { 32096, 0x000088B8 }, /* GL_READ_ONLY_ARB */ - { 32113, 0x000088BA }, /* GL_READ_WRITE */ - { 32127, 0x000088BA }, /* GL_READ_WRITE_ARB */ - { 32145, 0x00001903 }, /* GL_RED */ - { 32152, 0x00008016 }, /* GL_REDUCE */ - { 32162, 0x00008016 }, /* GL_REDUCE_EXT */ - { 32176, 0x00000D15 }, /* GL_RED_BIAS */ - { 32188, 0x00000D52 }, /* GL_RED_BITS */ - { 32200, 0x00000D14 }, /* GL_RED_SCALE */ - { 32213, 0x00008512 }, /* GL_REFLECTION_MAP */ - { 32231, 0x00008512 }, /* GL_REFLECTION_MAP_ARB */ - { 32253, 0x00008512 }, /* GL_REFLECTION_MAP_NV */ - { 32274, 0x00008512 }, /* GL_REFLECTION_MAP_OES */ - { 32296, 0x00008A19 }, /* GL_RELEASED_APPLE */ - { 32314, 0x00001C00 }, /* GL_RENDER */ - { 32324, 0x00008D41 }, /* GL_RENDERBUFFER */ - { 32340, 0x00008D53 }, /* GL_RENDERBUFFER_ALPHA_SIZE */ - { 32367, 0x00008D53 }, /* GL_RENDERBUFFER_ALPHA_SIZE_OES */ - { 32398, 0x00008CA7 }, /* GL_RENDERBUFFER_BINDING */ - { 32422, 0x00008CA7 }, /* GL_RENDERBUFFER_BINDING_EXT */ - { 32450, 0x00008CA7 }, /* GL_RENDERBUFFER_BINDING_OES */ - { 32478, 0x00008D52 }, /* GL_RENDERBUFFER_BLUE_SIZE */ - { 32504, 0x00008D52 }, /* GL_RENDERBUFFER_BLUE_SIZE_OES */ - { 32534, 0x00008D54 }, /* GL_RENDERBUFFER_DEPTH_SIZE */ - { 32561, 0x00008D54 }, /* GL_RENDERBUFFER_DEPTH_SIZE_OES */ - { 32592, 0x00008D41 }, /* GL_RENDERBUFFER_EXT */ - { 32612, 0x00008D51 }, /* GL_RENDERBUFFER_GREEN_SIZE */ - { 32639, 0x00008D51 }, /* GL_RENDERBUFFER_GREEN_SIZE_OES */ - { 32670, 0x00008D43 }, /* GL_RENDERBUFFER_HEIGHT */ - { 32693, 0x00008D43 }, /* GL_RENDERBUFFER_HEIGHT_EXT */ - { 32720, 0x00008D43 }, /* GL_RENDERBUFFER_HEIGHT_OES */ - { 32747, 0x00008D44 }, /* GL_RENDERBUFFER_INTERNAL_FORMAT */ - { 32779, 0x00008D44 }, /* GL_RENDERBUFFER_INTERNAL_FORMAT_EXT */ - { 32815, 0x00008D44 }, /* GL_RENDERBUFFER_INTERNAL_FORMAT_OES */ - { 32851, 0x00008D41 }, /* GL_RENDERBUFFER_OES */ - { 32871, 0x00008D50 }, /* GL_RENDERBUFFER_RED_SIZE */ - { 32896, 0x00008D50 }, /* GL_RENDERBUFFER_RED_SIZE_OES */ - { 32925, 0x00008CAB }, /* GL_RENDERBUFFER_SAMPLES */ - { 32949, 0x00008CAB }, /* GL_RENDERBUFFER_SAMPLES_EXT */ - { 32977, 0x00008D55 }, /* GL_RENDERBUFFER_STENCIL_SIZE */ - { 33006, 0x00008D55 }, /* GL_RENDERBUFFER_STENCIL_SIZE_OES */ - { 33039, 0x00008D42 }, /* GL_RENDERBUFFER_WIDTH */ - { 33061, 0x00008D42 }, /* GL_RENDERBUFFER_WIDTH_EXT */ - { 33087, 0x00008D42 }, /* GL_RENDERBUFFER_WIDTH_OES */ - { 33113, 0x00001F01 }, /* GL_RENDERER */ - { 33125, 0x00000C40 }, /* GL_RENDER_MODE */ - { 33140, 0x00002901 }, /* GL_REPEAT */ - { 33150, 0x00001E01 }, /* GL_REPLACE */ - { 33161, 0x00008062 }, /* GL_REPLACE_EXT */ - { 33176, 0x00008153 }, /* GL_REPLICATE_BORDER_HP */ - { 33199, 0x0000803A }, /* GL_RESCALE_NORMAL */ - { 33217, 0x0000803A }, /* GL_RESCALE_NORMAL_EXT */ - { 33239, 0x00008A1B }, /* GL_RETAINED_APPLE */ - { 33257, 0x00000102 }, /* GL_RETURN */ - { 33267, 0x00001907 }, /* GL_RGB */ - { 33274, 0x00008052 }, /* GL_RGB10 */ - { 33283, 0x00008059 }, /* GL_RGB10_A2 */ - { 33295, 0x00008059 }, /* GL_RGB10_A2_EXT */ - { 33311, 0x00008052 }, /* GL_RGB10_EXT */ - { 33324, 0x00008053 }, /* GL_RGB12 */ - { 33333, 0x00008053 }, /* GL_RGB12_EXT */ - { 33346, 0x00008054 }, /* GL_RGB16 */ - { 33355, 0x00008054 }, /* GL_RGB16_EXT */ - { 33368, 0x0000804E }, /* GL_RGB2_EXT */ - { 33380, 0x0000804F }, /* GL_RGB4 */ - { 33388, 0x0000804F }, /* GL_RGB4_EXT */ - { 33400, 0x000083A1 }, /* GL_RGB4_S3TC */ - { 33413, 0x00008050 }, /* GL_RGB5 */ - { 33421, 0x00008D62 }, /* GL_RGB565 */ - { 33431, 0x00008D62 }, /* GL_RGB565_OES */ - { 33445, 0x00008057 }, /* GL_RGB5_A1 */ - { 33456, 0x00008057 }, /* GL_RGB5_A1_EXT */ - { 33471, 0x00008057 }, /* GL_RGB5_A1_OES */ - { 33486, 0x00008050 }, /* GL_RGB5_EXT */ - { 33498, 0x00008051 }, /* GL_RGB8 */ - { 33506, 0x00008051 }, /* GL_RGB8_EXT */ - { 33518, 0x00008051 }, /* GL_RGB8_OES */ - { 33530, 0x00001908 }, /* GL_RGBA */ - { 33538, 0x0000805A }, /* GL_RGBA12 */ - { 33548, 0x0000805A }, /* GL_RGBA12_EXT */ - { 33562, 0x0000805B }, /* GL_RGBA16 */ - { 33572, 0x0000805B }, /* GL_RGBA16_EXT */ - { 33586, 0x00008055 }, /* GL_RGBA2 */ - { 33595, 0x00008055 }, /* GL_RGBA2_EXT */ - { 33608, 0x00008056 }, /* GL_RGBA4 */ - { 33617, 0x000083A5 }, /* GL_RGBA4_DXT5_S3TC */ - { 33636, 0x00008056 }, /* GL_RGBA4_EXT */ - { 33649, 0x00008056 }, /* GL_RGBA4_OES */ - { 33662, 0x000083A3 }, /* GL_RGBA4_S3TC */ - { 33676, 0x00008058 }, /* GL_RGBA8 */ - { 33685, 0x00008058 }, /* GL_RGBA8_EXT */ - { 33698, 0x00008058 }, /* GL_RGBA8_OES */ - { 33711, 0x00008F97 }, /* GL_RGBA8_SNORM */ - { 33726, 0x000083A4 }, /* GL_RGBA_DXT5_S3TC */ - { 33744, 0x00000C31 }, /* GL_RGBA_MODE */ - { 33757, 0x000083A2 }, /* GL_RGBA_S3TC */ - { 33770, 0x00008F93 }, /* GL_RGBA_SNORM */ - { 33784, 0x000083A0 }, /* GL_RGB_S3TC */ - { 33796, 0x00008573 }, /* GL_RGB_SCALE */ - { 33809, 0x00008573 }, /* GL_RGB_SCALE_ARB */ - { 33826, 0x00008573 }, /* GL_RGB_SCALE_EXT */ - { 33843, 0x00000407 }, /* GL_RIGHT */ - { 33852, 0x00002000 }, /* GL_S */ - { 33857, 0x00008B5D }, /* GL_SAMPLER_1D */ - { 33871, 0x00008B61 }, /* GL_SAMPLER_1D_SHADOW */ - { 33892, 0x00008B5E }, /* GL_SAMPLER_2D */ - { 33906, 0x00008B62 }, /* GL_SAMPLER_2D_SHADOW */ - { 33927, 0x00008B5F }, /* GL_SAMPLER_3D */ - { 33941, 0x00008B5F }, /* GL_SAMPLER_3D_OES */ - { 33959, 0x00008B60 }, /* GL_SAMPLER_CUBE */ - { 33975, 0x000080A9 }, /* GL_SAMPLES */ - { 33986, 0x000086B4 }, /* GL_SAMPLES_3DFX */ - { 34002, 0x000080A9 }, /* GL_SAMPLES_ARB */ - { 34017, 0x00008914 }, /* GL_SAMPLES_PASSED */ - { 34035, 0x00008914 }, /* GL_SAMPLES_PASSED_ARB */ - { 34057, 0x0000809E }, /* GL_SAMPLE_ALPHA_TO_COVERAGE */ - { 34085, 0x0000809E }, /* GL_SAMPLE_ALPHA_TO_COVERAGE_ARB */ - { 34117, 0x0000809F }, /* GL_SAMPLE_ALPHA_TO_ONE */ - { 34140, 0x0000809F }, /* GL_SAMPLE_ALPHA_TO_ONE_ARB */ - { 34167, 0x000080A8 }, /* GL_SAMPLE_BUFFERS */ - { 34185, 0x000086B3 }, /* GL_SAMPLE_BUFFERS_3DFX */ - { 34208, 0x000080A8 }, /* GL_SAMPLE_BUFFERS_ARB */ - { 34230, 0x000080A0 }, /* GL_SAMPLE_COVERAGE */ - { 34249, 0x000080A0 }, /* GL_SAMPLE_COVERAGE_ARB */ - { 34272, 0x000080AB }, /* GL_SAMPLE_COVERAGE_INVERT */ - { 34298, 0x000080AB }, /* GL_SAMPLE_COVERAGE_INVERT_ARB */ - { 34328, 0x000080AA }, /* GL_SAMPLE_COVERAGE_VALUE */ - { 34353, 0x000080AA }, /* GL_SAMPLE_COVERAGE_VALUE_ARB */ - { 34382, 0x00080000 }, /* GL_SCISSOR_BIT */ - { 34397, 0x00000C10 }, /* GL_SCISSOR_BOX */ - { 34412, 0x00000C11 }, /* GL_SCISSOR_TEST */ - { 34428, 0x0000845E }, /* GL_SECONDARY_COLOR_ARRAY */ - { 34453, 0x0000889C }, /* GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING */ - { 34493, 0x0000889C }, /* GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB */ - { 34537, 0x0000845D }, /* GL_SECONDARY_COLOR_ARRAY_POINTER */ - { 34570, 0x0000845A }, /* GL_SECONDARY_COLOR_ARRAY_SIZE */ - { 34600, 0x0000845C }, /* GL_SECONDARY_COLOR_ARRAY_STRIDE */ - { 34632, 0x0000845B }, /* GL_SECONDARY_COLOR_ARRAY_TYPE */ - { 34662, 0x00001C02 }, /* GL_SELECT */ - { 34672, 0x00000DF3 }, /* GL_SELECTION_BUFFER_POINTER */ - { 34700, 0x00000DF4 }, /* GL_SELECTION_BUFFER_SIZE */ - { 34725, 0x00008012 }, /* GL_SEPARABLE_2D */ - { 34741, 0x00008C8D }, /* GL_SEPARATE_ATTRIBS_EXT */ - { 34765, 0x000081FA }, /* GL_SEPARATE_SPECULAR_COLOR */ - { 34792, 0x000081FA }, /* GL_SEPARATE_SPECULAR_COLOR_EXT */ - { 34823, 0x0000150F }, /* GL_SET */ - { 34830, 0x00008DF8 }, /* GL_SHADER_BINARY_FORMATS */ - { 34855, 0x00008DFA }, /* GL_SHADER_COMPILER */ - { 34874, 0x00008B48 }, /* GL_SHADER_OBJECT_ARB */ - { 34895, 0x00008B88 }, /* GL_SHADER_SOURCE_LENGTH */ - { 34919, 0x00008B4F }, /* GL_SHADER_TYPE */ - { 34934, 0x00000B54 }, /* GL_SHADE_MODEL */ - { 34949, 0x00008B8C }, /* GL_SHADING_LANGUAGE_VERSION */ - { 34977, 0x000080BF }, /* GL_SHADOW_AMBIENT_SGIX */ - { 35000, 0x000081FB }, /* GL_SHARED_TEXTURE_PALETTE_EXT */ - { 35030, 0x00001601 }, /* GL_SHININESS */ - { 35043, 0x00001402 }, /* GL_SHORT */ - { 35052, 0x00009119 }, /* GL_SIGNALED */ - { 35064, 0x00008F9C }, /* GL_SIGNED_NORMALIZED */ - { 35085, 0x000081F9 }, /* GL_SINGLE_COLOR */ - { 35101, 0x000081F9 }, /* GL_SINGLE_COLOR_EXT */ - { 35121, 0x000085CC }, /* GL_SLICE_ACCUM_SUN */ - { 35140, 0x00008C46 }, /* GL_SLUMINANCE */ - { 35154, 0x00008C47 }, /* GL_SLUMINANCE8 */ - { 35169, 0x00008C45 }, /* GL_SLUMINANCE8_ALPHA8 */ - { 35191, 0x00008C44 }, /* GL_SLUMINANCE_ALPHA */ - { 35211, 0x00001D01 }, /* GL_SMOOTH */ - { 35221, 0x00000B23 }, /* GL_SMOOTH_LINE_WIDTH_GRANULARITY */ - { 35254, 0x00000B22 }, /* GL_SMOOTH_LINE_WIDTH_RANGE */ - { 35281, 0x00000B13 }, /* GL_SMOOTH_POINT_SIZE_GRANULARITY */ - { 35314, 0x00000B12 }, /* GL_SMOOTH_POINT_SIZE_RANGE */ - { 35341, 0x00008588 }, /* GL_SOURCE0_ALPHA */ - { 35358, 0x00008588 }, /* GL_SOURCE0_ALPHA_ARB */ - { 35379, 0x00008588 }, /* GL_SOURCE0_ALPHA_EXT */ - { 35400, 0x00008580 }, /* GL_SOURCE0_RGB */ - { 35415, 0x00008580 }, /* GL_SOURCE0_RGB_ARB */ - { 35434, 0x00008580 }, /* GL_SOURCE0_RGB_EXT */ - { 35453, 0x00008589 }, /* GL_SOURCE1_ALPHA */ - { 35470, 0x00008589 }, /* GL_SOURCE1_ALPHA_ARB */ - { 35491, 0x00008589 }, /* GL_SOURCE1_ALPHA_EXT */ - { 35512, 0x00008581 }, /* GL_SOURCE1_RGB */ - { 35527, 0x00008581 }, /* GL_SOURCE1_RGB_ARB */ - { 35546, 0x00008581 }, /* GL_SOURCE1_RGB_EXT */ - { 35565, 0x0000858A }, /* GL_SOURCE2_ALPHA */ - { 35582, 0x0000858A }, /* GL_SOURCE2_ALPHA_ARB */ - { 35603, 0x0000858A }, /* GL_SOURCE2_ALPHA_EXT */ - { 35624, 0x00008582 }, /* GL_SOURCE2_RGB */ - { 35639, 0x00008582 }, /* GL_SOURCE2_RGB_ARB */ - { 35658, 0x00008582 }, /* GL_SOURCE2_RGB_EXT */ - { 35677, 0x0000858B }, /* GL_SOURCE3_ALPHA_NV */ - { 35697, 0x00008583 }, /* GL_SOURCE3_RGB_NV */ - { 35715, 0x00001202 }, /* GL_SPECULAR */ - { 35727, 0x00002402 }, /* GL_SPHERE_MAP */ - { 35741, 0x00001206 }, /* GL_SPOT_CUTOFF */ - { 35756, 0x00001204 }, /* GL_SPOT_DIRECTION */ - { 35774, 0x00001205 }, /* GL_SPOT_EXPONENT */ - { 35791, 0x00008588 }, /* GL_SRC0_ALPHA */ - { 35805, 0x00008580 }, /* GL_SRC0_RGB */ - { 35817, 0x00008589 }, /* GL_SRC1_ALPHA */ - { 35831, 0x00008581 }, /* GL_SRC1_RGB */ - { 35843, 0x0000858A }, /* GL_SRC2_ALPHA */ - { 35857, 0x00008582 }, /* GL_SRC2_RGB */ - { 35869, 0x00000302 }, /* GL_SRC_ALPHA */ - { 35882, 0x00000308 }, /* GL_SRC_ALPHA_SATURATE */ - { 35904, 0x00000300 }, /* GL_SRC_COLOR */ - { 35917, 0x00008C40 }, /* GL_SRGB */ - { 35925, 0x00008C41 }, /* GL_SRGB8 */ - { 35934, 0x00008C43 }, /* GL_SRGB8_ALPHA8 */ - { 35950, 0x00008C42 }, /* GL_SRGB_ALPHA */ - { 35964, 0x00000503 }, /* GL_STACK_OVERFLOW */ - { 35982, 0x00000504 }, /* GL_STACK_UNDERFLOW */ - { 36001, 0x000088E6 }, /* GL_STATIC_COPY */ - { 36016, 0x000088E6 }, /* GL_STATIC_COPY_ARB */ - { 36035, 0x000088E4 }, /* GL_STATIC_DRAW */ - { 36050, 0x000088E4 }, /* GL_STATIC_DRAW_ARB */ - { 36069, 0x000088E5 }, /* GL_STATIC_READ */ - { 36084, 0x000088E5 }, /* GL_STATIC_READ_ARB */ - { 36103, 0x00001802 }, /* GL_STENCIL */ - { 36114, 0x00008D20 }, /* GL_STENCIL_ATTACHMENT */ - { 36136, 0x00008D20 }, /* GL_STENCIL_ATTACHMENT_EXT */ - { 36162, 0x00008D20 }, /* GL_STENCIL_ATTACHMENT_OES */ - { 36188, 0x00008801 }, /* GL_STENCIL_BACK_FAIL */ - { 36209, 0x00008801 }, /* GL_STENCIL_BACK_FAIL_ATI */ - { 36234, 0x00008800 }, /* GL_STENCIL_BACK_FUNC */ - { 36255, 0x00008800 }, /* GL_STENCIL_BACK_FUNC_ATI */ - { 36280, 0x00008802 }, /* GL_STENCIL_BACK_PASS_DEPTH_FAIL */ - { 36312, 0x00008802 }, /* GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI */ - { 36348, 0x00008803 }, /* GL_STENCIL_BACK_PASS_DEPTH_PASS */ - { 36380, 0x00008803 }, /* GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI */ - { 36416, 0x00008CA3 }, /* GL_STENCIL_BACK_REF */ - { 36436, 0x00008CA4 }, /* GL_STENCIL_BACK_VALUE_MASK */ - { 36463, 0x00008CA5 }, /* GL_STENCIL_BACK_WRITEMASK */ - { 36489, 0x00000D57 }, /* GL_STENCIL_BITS */ - { 36505, 0x00000400 }, /* GL_STENCIL_BUFFER_BIT */ - { 36527, 0x00000B91 }, /* GL_STENCIL_CLEAR_VALUE */ - { 36550, 0x00000B94 }, /* GL_STENCIL_FAIL */ - { 36566, 0x00000B92 }, /* GL_STENCIL_FUNC */ - { 36582, 0x00001901 }, /* GL_STENCIL_INDEX */ - { 36599, 0x00008D46 }, /* GL_STENCIL_INDEX1 */ - { 36617, 0x00008D49 }, /* GL_STENCIL_INDEX16 */ - { 36636, 0x00008D49 }, /* GL_STENCIL_INDEX16_EXT */ - { 36659, 0x00008D46 }, /* GL_STENCIL_INDEX1_EXT */ - { 36681, 0x00008D46 }, /* GL_STENCIL_INDEX1_OES */ - { 36703, 0x00008D47 }, /* GL_STENCIL_INDEX4 */ - { 36721, 0x00008D47 }, /* GL_STENCIL_INDEX4_EXT */ - { 36743, 0x00008D47 }, /* GL_STENCIL_INDEX4_OES */ - { 36765, 0x00008D48 }, /* GL_STENCIL_INDEX8 */ - { 36783, 0x00008D48 }, /* GL_STENCIL_INDEX8_EXT */ - { 36805, 0x00008D48 }, /* GL_STENCIL_INDEX8_OES */ - { 36827, 0x00008D45 }, /* GL_STENCIL_INDEX_EXT */ - { 36848, 0x00000B95 }, /* GL_STENCIL_PASS_DEPTH_FAIL */ - { 36875, 0x00000B96 }, /* GL_STENCIL_PASS_DEPTH_PASS */ - { 36902, 0x00000B97 }, /* GL_STENCIL_REF */ - { 36917, 0x00000B90 }, /* GL_STENCIL_TEST */ - { 36933, 0x00008910 }, /* GL_STENCIL_TEST_TWO_SIDE_EXT */ - { 36962, 0x00000B93 }, /* GL_STENCIL_VALUE_MASK */ - { 36984, 0x00000B98 }, /* GL_STENCIL_WRITEMASK */ - { 37005, 0x00000C33 }, /* GL_STEREO */ - { 37015, 0x000085BE }, /* GL_STORAGE_CACHED_APPLE */ - { 37039, 0x000085BD }, /* GL_STORAGE_PRIVATE_APPLE */ - { 37064, 0x000085BF }, /* GL_STORAGE_SHARED_APPLE */ - { 37088, 0x000088E2 }, /* GL_STREAM_COPY */ - { 37103, 0x000088E2 }, /* GL_STREAM_COPY_ARB */ - { 37122, 0x000088E0 }, /* GL_STREAM_DRAW */ - { 37137, 0x000088E0 }, /* GL_STREAM_DRAW_ARB */ - { 37156, 0x000088E1 }, /* GL_STREAM_READ */ - { 37171, 0x000088E1 }, /* GL_STREAM_READ_ARB */ - { 37190, 0x00000D50 }, /* GL_SUBPIXEL_BITS */ - { 37207, 0x000084E7 }, /* GL_SUBTRACT */ - { 37219, 0x000084E7 }, /* GL_SUBTRACT_ARB */ - { 37235, 0x00009113 }, /* GL_SYNC_CONDITION */ - { 37253, 0x00009116 }, /* GL_SYNC_FENCE */ - { 37267, 0x00009115 }, /* GL_SYNC_FLAGS */ - { 37281, 0x00000001 }, /* GL_SYNC_FLUSH_COMMANDS_BIT */ - { 37308, 0x00009117 }, /* GL_SYNC_GPU_COMMANDS_COMPLETE */ - { 37338, 0x00009114 }, /* GL_SYNC_STATUS */ - { 37353, 0x00002001 }, /* GL_T */ - { 37358, 0x00002A2A }, /* GL_T2F_C3F_V3F */ - { 37373, 0x00002A2C }, /* GL_T2F_C4F_N3F_V3F */ - { 37392, 0x00002A29 }, /* GL_T2F_C4UB_V3F */ - { 37408, 0x00002A2B }, /* GL_T2F_N3F_V3F */ - { 37423, 0x00002A27 }, /* GL_T2F_V3F */ - { 37434, 0x00002A2D }, /* GL_T4F_C4F_N3F_V4F */ - { 37453, 0x00002A28 }, /* GL_T4F_V4F */ - { 37464, 0x00008031 }, /* GL_TABLE_TOO_LARGE_EXT */ - { 37487, 0x00001702 }, /* GL_TEXTURE */ - { 37498, 0x000084C0 }, /* GL_TEXTURE0 */ - { 37510, 0x000084C0 }, /* GL_TEXTURE0_ARB */ - { 37526, 0x000084C1 }, /* GL_TEXTURE1 */ - { 37538, 0x000084CA }, /* GL_TEXTURE10 */ - { 37551, 0x000084CA }, /* GL_TEXTURE10_ARB */ - { 37568, 0x000084CB }, /* GL_TEXTURE11 */ - { 37581, 0x000084CB }, /* GL_TEXTURE11_ARB */ - { 37598, 0x000084CC }, /* GL_TEXTURE12 */ - { 37611, 0x000084CC }, /* GL_TEXTURE12_ARB */ - { 37628, 0x000084CD }, /* GL_TEXTURE13 */ - { 37641, 0x000084CD }, /* GL_TEXTURE13_ARB */ - { 37658, 0x000084CE }, /* GL_TEXTURE14 */ - { 37671, 0x000084CE }, /* GL_TEXTURE14_ARB */ - { 37688, 0x000084CF }, /* GL_TEXTURE15 */ - { 37701, 0x000084CF }, /* GL_TEXTURE15_ARB */ - { 37718, 0x000084D0 }, /* GL_TEXTURE16 */ - { 37731, 0x000084D0 }, /* GL_TEXTURE16_ARB */ - { 37748, 0x000084D1 }, /* GL_TEXTURE17 */ - { 37761, 0x000084D1 }, /* GL_TEXTURE17_ARB */ - { 37778, 0x000084D2 }, /* GL_TEXTURE18 */ - { 37791, 0x000084D2 }, /* GL_TEXTURE18_ARB */ - { 37808, 0x000084D3 }, /* GL_TEXTURE19 */ - { 37821, 0x000084D3 }, /* GL_TEXTURE19_ARB */ - { 37838, 0x000084C1 }, /* GL_TEXTURE1_ARB */ - { 37854, 0x000084C2 }, /* GL_TEXTURE2 */ - { 37866, 0x000084D4 }, /* GL_TEXTURE20 */ - { 37879, 0x000084D4 }, /* GL_TEXTURE20_ARB */ - { 37896, 0x000084D5 }, /* GL_TEXTURE21 */ - { 37909, 0x000084D5 }, /* GL_TEXTURE21_ARB */ - { 37926, 0x000084D6 }, /* GL_TEXTURE22 */ - { 37939, 0x000084D6 }, /* GL_TEXTURE22_ARB */ - { 37956, 0x000084D7 }, /* GL_TEXTURE23 */ - { 37969, 0x000084D7 }, /* GL_TEXTURE23_ARB */ - { 37986, 0x000084D8 }, /* GL_TEXTURE24 */ - { 37999, 0x000084D8 }, /* GL_TEXTURE24_ARB */ - { 38016, 0x000084D9 }, /* GL_TEXTURE25 */ - { 38029, 0x000084D9 }, /* GL_TEXTURE25_ARB */ - { 38046, 0x000084DA }, /* GL_TEXTURE26 */ - { 38059, 0x000084DA }, /* GL_TEXTURE26_ARB */ - { 38076, 0x000084DB }, /* GL_TEXTURE27 */ - { 38089, 0x000084DB }, /* GL_TEXTURE27_ARB */ - { 38106, 0x000084DC }, /* GL_TEXTURE28 */ - { 38119, 0x000084DC }, /* GL_TEXTURE28_ARB */ - { 38136, 0x000084DD }, /* GL_TEXTURE29 */ - { 38149, 0x000084DD }, /* GL_TEXTURE29_ARB */ - { 38166, 0x000084C2 }, /* GL_TEXTURE2_ARB */ - { 38182, 0x000084C3 }, /* GL_TEXTURE3 */ - { 38194, 0x000084DE }, /* GL_TEXTURE30 */ - { 38207, 0x000084DE }, /* GL_TEXTURE30_ARB */ - { 38224, 0x000084DF }, /* GL_TEXTURE31 */ - { 38237, 0x000084DF }, /* GL_TEXTURE31_ARB */ - { 38254, 0x000084C3 }, /* GL_TEXTURE3_ARB */ - { 38270, 0x000084C4 }, /* GL_TEXTURE4 */ - { 38282, 0x000084C4 }, /* GL_TEXTURE4_ARB */ - { 38298, 0x000084C5 }, /* GL_TEXTURE5 */ - { 38310, 0x000084C5 }, /* GL_TEXTURE5_ARB */ - { 38326, 0x000084C6 }, /* GL_TEXTURE6 */ - { 38338, 0x000084C6 }, /* GL_TEXTURE6_ARB */ - { 38354, 0x000084C7 }, /* GL_TEXTURE7 */ - { 38366, 0x000084C7 }, /* GL_TEXTURE7_ARB */ - { 38382, 0x000084C8 }, /* GL_TEXTURE8 */ - { 38394, 0x000084C8 }, /* GL_TEXTURE8_ARB */ - { 38410, 0x000084C9 }, /* GL_TEXTURE9 */ - { 38422, 0x000084C9 }, /* GL_TEXTURE9_ARB */ - { 38438, 0x00000DE0 }, /* GL_TEXTURE_1D */ - { 38452, 0x00008C18 }, /* GL_TEXTURE_1D_ARRAY_EXT */ - { 38476, 0x00000DE1 }, /* GL_TEXTURE_2D */ - { 38490, 0x00008C1A }, /* GL_TEXTURE_2D_ARRAY_EXT */ - { 38514, 0x0000806F }, /* GL_TEXTURE_3D */ - { 38528, 0x0000806F }, /* GL_TEXTURE_3D_OES */ - { 38546, 0x0000805F }, /* GL_TEXTURE_ALPHA_SIZE */ - { 38568, 0x0000805F }, /* GL_TEXTURE_ALPHA_SIZE_EXT */ - { 38594, 0x0000813C }, /* GL_TEXTURE_BASE_LEVEL */ - { 38616, 0x00008068 }, /* GL_TEXTURE_BINDING_1D */ - { 38638, 0x00008C1C }, /* GL_TEXTURE_BINDING_1D_ARRAY_EXT */ - { 38670, 0x00008069 }, /* GL_TEXTURE_BINDING_2D */ - { 38692, 0x00008C1D }, /* GL_TEXTURE_BINDING_2D_ARRAY_EXT */ - { 38724, 0x0000806A }, /* GL_TEXTURE_BINDING_3D */ - { 38746, 0x0000806A }, /* GL_TEXTURE_BINDING_3D_OES */ - { 38772, 0x00008514 }, /* GL_TEXTURE_BINDING_CUBE_MAP */ - { 38800, 0x00008514 }, /* GL_TEXTURE_BINDING_CUBE_MAP_ARB */ - { 38832, 0x00008514 }, /* GL_TEXTURE_BINDING_CUBE_MAP_OES */ - { 38864, 0x000084F6 }, /* GL_TEXTURE_BINDING_RECTANGLE_ARB */ - { 38897, 0x000084F6 }, /* GL_TEXTURE_BINDING_RECTANGLE_NV */ - { 38929, 0x00040000 }, /* GL_TEXTURE_BIT */ - { 38944, 0x0000805E }, /* GL_TEXTURE_BLUE_SIZE */ - { 38965, 0x0000805E }, /* GL_TEXTURE_BLUE_SIZE_EXT */ - { 38990, 0x00001005 }, /* GL_TEXTURE_BORDER */ - { 39008, 0x00001004 }, /* GL_TEXTURE_BORDER_COLOR */ - { 39032, 0x00008171 }, /* GL_TEXTURE_CLIPMAP_CENTER_SGIX */ - { 39063, 0x00008176 }, /* GL_TEXTURE_CLIPMAP_DEPTH_SGIX */ - { 39093, 0x00008172 }, /* GL_TEXTURE_CLIPMAP_FRAME_SGIX */ - { 39123, 0x00008175 }, /* GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX */ - { 39158, 0x00008173 }, /* GL_TEXTURE_CLIPMAP_OFFSET_SGIX */ - { 39189, 0x00008174 }, /* GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX */ - { 39227, 0x000080BC }, /* GL_TEXTURE_COLOR_TABLE_SGI */ - { 39254, 0x000081EF }, /* GL_TEXTURE_COLOR_WRITEMASK_SGIS */ - { 39286, 0x000080BF }, /* GL_TEXTURE_COMPARE_FAIL_VALUE_ARB */ - { 39320, 0x0000884D }, /* GL_TEXTURE_COMPARE_FUNC */ - { 39344, 0x0000884D }, /* GL_TEXTURE_COMPARE_FUNC_ARB */ - { 39372, 0x0000884C }, /* GL_TEXTURE_COMPARE_MODE */ - { 39396, 0x0000884C }, /* GL_TEXTURE_COMPARE_MODE_ARB */ - { 39424, 0x0000819B }, /* GL_TEXTURE_COMPARE_OPERATOR_SGIX */ - { 39457, 0x0000819A }, /* GL_TEXTURE_COMPARE_SGIX */ - { 39481, 0x00001003 }, /* GL_TEXTURE_COMPONENTS */ - { 39503, 0x000086A1 }, /* GL_TEXTURE_COMPRESSED */ - { 39525, 0x000086A1 }, /* GL_TEXTURE_COMPRESSED_ARB */ - { 39551, 0x000086A3 }, /* GL_TEXTURE_COMPRESSED_FORMATS_ARB */ - { 39585, 0x000086A0 }, /* GL_TEXTURE_COMPRESSED_IMAGE_SIZE */ - { 39618, 0x000086A0 }, /* GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB */ - { 39655, 0x000084EF }, /* GL_TEXTURE_COMPRESSION_HINT */ - { 39683, 0x000084EF }, /* GL_TEXTURE_COMPRESSION_HINT_ARB */ - { 39715, 0x00008078 }, /* GL_TEXTURE_COORD_ARRAY */ - { 39738, 0x0000889A }, /* GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING */ - { 39776, 0x0000889A }, /* GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB */ - { 39818, 0x00008092 }, /* GL_TEXTURE_COORD_ARRAY_POINTER */ - { 39849, 0x00008088 }, /* GL_TEXTURE_COORD_ARRAY_SIZE */ - { 39877, 0x0000808A }, /* GL_TEXTURE_COORD_ARRAY_STRIDE */ - { 39907, 0x00008089 }, /* GL_TEXTURE_COORD_ARRAY_TYPE */ - { 39935, 0x00008B9D }, /* GL_TEXTURE_CROP_RECT_OES */ - { 39960, 0x00008513 }, /* GL_TEXTURE_CUBE_MAP */ - { 39980, 0x00008513 }, /* GL_TEXTURE_CUBE_MAP_ARB */ - { 40004, 0x00008516 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X */ - { 40035, 0x00008516 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB */ - { 40070, 0x00008516 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X_OES */ - { 40105, 0x00008518 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y */ - { 40136, 0x00008518 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB */ - { 40171, 0x00008518 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_OES */ - { 40206, 0x0000851A }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z */ - { 40237, 0x0000851A }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB */ - { 40272, 0x0000851A }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_OES */ - { 40307, 0x00008513 }, /* GL_TEXTURE_CUBE_MAP_OES */ - { 40331, 0x00008515 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X */ - { 40362, 0x00008515 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB */ - { 40397, 0x00008515 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X_OES */ - { 40432, 0x00008517 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y */ - { 40463, 0x00008517 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB */ - { 40498, 0x00008517 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y_OES */ - { 40533, 0x00008519 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z */ - { 40564, 0x00008519 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB */ - { 40599, 0x00008519 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z_OES */ - { 40634, 0x000088F4 }, /* GL_TEXTURE_CUBE_MAP_SEAMLESS */ - { 40663, 0x00008071 }, /* GL_TEXTURE_DEPTH */ - { 40680, 0x0000884A }, /* GL_TEXTURE_DEPTH_SIZE */ - { 40702, 0x0000884A }, /* GL_TEXTURE_DEPTH_SIZE_ARB */ - { 40728, 0x00002300 }, /* GL_TEXTURE_ENV */ - { 40743, 0x00002201 }, /* GL_TEXTURE_ENV_COLOR */ - { 40764, 0x00002200 }, /* GL_TEXTURE_ENV_MODE */ - { 40784, 0x00008500 }, /* GL_TEXTURE_FILTER_CONTROL */ - { 40810, 0x00008500 }, /* GL_TEXTURE_FILTER_CONTROL_EXT */ - { 40840, 0x00002500 }, /* GL_TEXTURE_GEN_MODE */ - { 40860, 0x00002500 }, /* GL_TEXTURE_GEN_MODE_OES */ - { 40884, 0x00000C63 }, /* GL_TEXTURE_GEN_Q */ - { 40901, 0x00000C62 }, /* GL_TEXTURE_GEN_R */ - { 40918, 0x00000C60 }, /* GL_TEXTURE_GEN_S */ - { 40935, 0x00008D60 }, /* GL_TEXTURE_GEN_STR_OES */ - { 40958, 0x00000C61 }, /* GL_TEXTURE_GEN_T */ - { 40975, 0x0000819D }, /* GL_TEXTURE_GEQUAL_R_SGIX */ - { 41000, 0x0000805D }, /* GL_TEXTURE_GREEN_SIZE */ - { 41022, 0x0000805D }, /* GL_TEXTURE_GREEN_SIZE_EXT */ - { 41048, 0x00001001 }, /* GL_TEXTURE_HEIGHT */ - { 41066, 0x000080ED }, /* GL_TEXTURE_INDEX_SIZE_EXT */ - { 41092, 0x00008061 }, /* GL_TEXTURE_INTENSITY_SIZE */ - { 41118, 0x00008061 }, /* GL_TEXTURE_INTENSITY_SIZE_EXT */ - { 41148, 0x00001003 }, /* GL_TEXTURE_INTERNAL_FORMAT */ - { 41175, 0x0000819C }, /* GL_TEXTURE_LEQUAL_R_SGIX */ - { 41200, 0x00008501 }, /* GL_TEXTURE_LOD_BIAS */ - { 41220, 0x00008501 }, /* GL_TEXTURE_LOD_BIAS_EXT */ - { 41244, 0x00008190 }, /* GL_TEXTURE_LOD_BIAS_R_SGIX */ - { 41271, 0x0000818E }, /* GL_TEXTURE_LOD_BIAS_S_SGIX */ - { 41298, 0x0000818F }, /* GL_TEXTURE_LOD_BIAS_T_SGIX */ - { 41325, 0x00008060 }, /* GL_TEXTURE_LUMINANCE_SIZE */ - { 41351, 0x00008060 }, /* GL_TEXTURE_LUMINANCE_SIZE_EXT */ - { 41381, 0x00002800 }, /* GL_TEXTURE_MAG_FILTER */ - { 41403, 0x00000BA8 }, /* GL_TEXTURE_MATRIX */ - { 41421, 0x0000898F }, /* GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES */ - { 41461, 0x000084FE }, /* GL_TEXTURE_MAX_ANISOTROPY_EXT */ - { 41491, 0x0000836B }, /* GL_TEXTURE_MAX_CLAMP_R_SGIX */ - { 41519, 0x00008369 }, /* GL_TEXTURE_MAX_CLAMP_S_SGIX */ - { 41547, 0x0000836A }, /* GL_TEXTURE_MAX_CLAMP_T_SGIX */ - { 41575, 0x0000813D }, /* GL_TEXTURE_MAX_LEVEL */ - { 41596, 0x0000813B }, /* GL_TEXTURE_MAX_LOD */ - { 41615, 0x00002801 }, /* GL_TEXTURE_MIN_FILTER */ - { 41637, 0x0000813A }, /* GL_TEXTURE_MIN_LOD */ - { 41656, 0x00008066 }, /* GL_TEXTURE_PRIORITY */ - { 41676, 0x000085B7 }, /* GL_TEXTURE_RANGE_LENGTH_APPLE */ - { 41706, 0x000085B8 }, /* GL_TEXTURE_RANGE_POINTER_APPLE */ - { 41737, 0x000084F5 }, /* GL_TEXTURE_RECTANGLE_ARB */ - { 41762, 0x000084F5 }, /* GL_TEXTURE_RECTANGLE_NV */ - { 41786, 0x0000805C }, /* GL_TEXTURE_RED_SIZE */ - { 41806, 0x0000805C }, /* GL_TEXTURE_RED_SIZE_EXT */ - { 41830, 0x00008067 }, /* GL_TEXTURE_RESIDENT */ - { 41850, 0x00000BA5 }, /* GL_TEXTURE_STACK_DEPTH */ - { 41873, 0x000088F1 }, /* GL_TEXTURE_STENCIL_SIZE */ - { 41897, 0x000088F1 }, /* GL_TEXTURE_STENCIL_SIZE_EXT */ - { 41925, 0x000085BC }, /* GL_TEXTURE_STORAGE_HINT_APPLE */ - { 41955, 0x00008065 }, /* GL_TEXTURE_TOO_LARGE_EXT */ - { 41980, 0x0000888F }, /* GL_TEXTURE_UNSIGNED_REMAP_MODE_NV */ - { 42014, 0x00001000 }, /* GL_TEXTURE_WIDTH */ - { 42031, 0x00008072 }, /* GL_TEXTURE_WRAP_R */ - { 42049, 0x00008072 }, /* GL_TEXTURE_WRAP_R_OES */ - { 42071, 0x00002802 }, /* GL_TEXTURE_WRAP_S */ - { 42089, 0x00002803 }, /* GL_TEXTURE_WRAP_T */ - { 42107, 0x0000911B }, /* GL_TIMEOUT_EXPIRED */ - { 42126, 0x000088BF }, /* GL_TIME_ELAPSED_EXT */ - { 42146, 0x00008648 }, /* GL_TRACK_MATRIX_NV */ - { 42165, 0x00008649 }, /* GL_TRACK_MATRIX_TRANSFORM_NV */ - { 42194, 0x00001000 }, /* GL_TRANSFORM_BIT */ - { 42211, 0x00008E22 }, /* GL_TRANSFORM_FEEDBACK */ - { 42233, 0x00008E25 }, /* GL_TRANSFORM_FEEDBACK_BINDING */ - { 42263, 0x00008E24 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE */ - { 42299, 0x00008C8F }, /* GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT */ - { 42340, 0x00008C8E }, /* GL_TRANSFORM_FEEDBACK_BUFFER_EXT */ - { 42373, 0x00008C7F }, /* GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT */ - { 42411, 0x00008E23 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED */ - { 42447, 0x00008C85 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT */ - { 42485, 0x00008C84 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT */ - { 42524, 0x00008C88 }, /* GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT */ - { 42569, 0x00008C83 }, /* GL_TRANSFORM_FEEDBACK_VARYINGS_EXT */ - { 42604, 0x00008C76 }, /* GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT */ - { 42649, 0x000084E6 }, /* GL_TRANSPOSE_COLOR_MATRIX */ - { 42675, 0x000084E6 }, /* GL_TRANSPOSE_COLOR_MATRIX_ARB */ - { 42705, 0x000088B7 }, /* GL_TRANSPOSE_CURRENT_MATRIX_ARB */ - { 42737, 0x000084E3 }, /* GL_TRANSPOSE_MODELVIEW_MATRIX */ - { 42767, 0x000084E3 }, /* GL_TRANSPOSE_MODELVIEW_MATRIX_ARB */ - { 42801, 0x0000862C }, /* GL_TRANSPOSE_NV */ - { 42817, 0x000084E4 }, /* GL_TRANSPOSE_PROJECTION_MATRIX */ - { 42848, 0x000084E4 }, /* GL_TRANSPOSE_PROJECTION_MATRIX_ARB */ - { 42883, 0x000084E5 }, /* GL_TRANSPOSE_TEXTURE_MATRIX */ - { 42911, 0x000084E5 }, /* GL_TRANSPOSE_TEXTURE_MATRIX_ARB */ - { 42943, 0x00000004 }, /* GL_TRIANGLES */ - { 42956, 0x0000000C }, /* GL_TRIANGLES_ADJACENCY_ARB */ - { 42983, 0x00000006 }, /* GL_TRIANGLE_FAN */ - { 42999, 0x00008615 }, /* GL_TRIANGLE_MESH_SUN */ - { 43020, 0x00000005 }, /* GL_TRIANGLE_STRIP */ - { 43038, 0x0000000D }, /* GL_TRIANGLE_STRIP_ADJACENCY_ARB */ - { 43070, 0x00000001 }, /* GL_TRUE */ - { 43078, 0x00008A1C }, /* GL_UNDEFINED_APPLE */ - { 43097, 0x00000CF5 }, /* GL_UNPACK_ALIGNMENT */ - { 43117, 0x0000806E }, /* GL_UNPACK_IMAGE_HEIGHT */ - { 43140, 0x00000CF1 }, /* GL_UNPACK_LSB_FIRST */ - { 43160, 0x00000CF2 }, /* GL_UNPACK_ROW_LENGTH */ - { 43181, 0x0000806D }, /* GL_UNPACK_SKIP_IMAGES */ - { 43203, 0x00000CF4 }, /* GL_UNPACK_SKIP_PIXELS */ - { 43225, 0x00000CF3 }, /* GL_UNPACK_SKIP_ROWS */ - { 43245, 0x00000CF0 }, /* GL_UNPACK_SWAP_BYTES */ - { 43266, 0x00009118 }, /* GL_UNSIGNALED */ - { 43280, 0x00001401 }, /* GL_UNSIGNED_BYTE */ - { 43297, 0x00008362 }, /* GL_UNSIGNED_BYTE_2_3_3_REV */ - { 43324, 0x00008032 }, /* GL_UNSIGNED_BYTE_3_3_2 */ - { 43347, 0x00001405 }, /* GL_UNSIGNED_INT */ - { 43363, 0x00008036 }, /* GL_UNSIGNED_INT_10_10_10_2 */ - { 43390, 0x00008DF6 }, /* GL_UNSIGNED_INT_10_10_10_2_OES */ - { 43421, 0x000084FA }, /* GL_UNSIGNED_INT_24_8 */ - { 43442, 0x000084FA }, /* GL_UNSIGNED_INT_24_8_EXT */ - { 43467, 0x000084FA }, /* GL_UNSIGNED_INT_24_8_NV */ - { 43491, 0x000084FA }, /* GL_UNSIGNED_INT_24_8_OES */ - { 43516, 0x00008368 }, /* GL_UNSIGNED_INT_2_10_10_10_REV */ - { 43547, 0x00008368 }, /* GL_UNSIGNED_INT_2_10_10_10_REV_EXT */ - { 43582, 0x00008035 }, /* GL_UNSIGNED_INT_8_8_8_8 */ - { 43606, 0x00008367 }, /* GL_UNSIGNED_INT_8_8_8_8_REV */ - { 43634, 0x00008C17 }, /* GL_UNSIGNED_NORMALIZED */ - { 43657, 0x00001403 }, /* GL_UNSIGNED_SHORT */ - { 43675, 0x00008366 }, /* GL_UNSIGNED_SHORT_1_5_5_5_REV */ - { 43705, 0x00008366 }, /* GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT */ - { 43739, 0x00008033 }, /* GL_UNSIGNED_SHORT_4_4_4_4 */ - { 43765, 0x00008365 }, /* GL_UNSIGNED_SHORT_4_4_4_4_REV */ - { 43795, 0x00008365 }, /* GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT */ - { 43829, 0x00008034 }, /* GL_UNSIGNED_SHORT_5_5_5_1 */ - { 43855, 0x00008363 }, /* GL_UNSIGNED_SHORT_5_6_5 */ - { 43879, 0x00008364 }, /* GL_UNSIGNED_SHORT_5_6_5_REV */ - { 43907, 0x000085BA }, /* GL_UNSIGNED_SHORT_8_8_APPLE */ - { 43935, 0x000085BA }, /* GL_UNSIGNED_SHORT_8_8_MESA */ - { 43962, 0x000085BB }, /* GL_UNSIGNED_SHORT_8_8_REV_APPLE */ - { 43994, 0x000085BB }, /* GL_UNSIGNED_SHORT_8_8_REV_MESA */ - { 44025, 0x00008CA2 }, /* GL_UPPER_LEFT */ - { 44039, 0x00002A20 }, /* GL_V2F */ - { 44046, 0x00002A21 }, /* GL_V3F */ - { 44053, 0x00008B83 }, /* GL_VALIDATE_STATUS */ - { 44072, 0x00001F00 }, /* GL_VENDOR */ - { 44082, 0x00001F02 }, /* GL_VERSION */ - { 44093, 0x00008074 }, /* GL_VERTEX_ARRAY */ - { 44109, 0x000085B5 }, /* GL_VERTEX_ARRAY_BINDING */ - { 44133, 0x000085B5 }, /* GL_VERTEX_ARRAY_BINDING_APPLE */ - { 44163, 0x00008896 }, /* GL_VERTEX_ARRAY_BUFFER_BINDING */ - { 44194, 0x00008896 }, /* GL_VERTEX_ARRAY_BUFFER_BINDING_ARB */ - { 44229, 0x0000808E }, /* GL_VERTEX_ARRAY_POINTER */ - { 44253, 0x0000807A }, /* GL_VERTEX_ARRAY_SIZE */ - { 44274, 0x0000807C }, /* GL_VERTEX_ARRAY_STRIDE */ - { 44297, 0x0000807B }, /* GL_VERTEX_ARRAY_TYPE */ - { 44318, 0x00008650 }, /* GL_VERTEX_ATTRIB_ARRAY0_NV */ - { 44345, 0x0000865A }, /* GL_VERTEX_ATTRIB_ARRAY10_NV */ - { 44373, 0x0000865B }, /* GL_VERTEX_ATTRIB_ARRAY11_NV */ - { 44401, 0x0000865C }, /* GL_VERTEX_ATTRIB_ARRAY12_NV */ - { 44429, 0x0000865D }, /* GL_VERTEX_ATTRIB_ARRAY13_NV */ - { 44457, 0x0000865E }, /* GL_VERTEX_ATTRIB_ARRAY14_NV */ - { 44485, 0x0000865F }, /* GL_VERTEX_ATTRIB_ARRAY15_NV */ - { 44513, 0x00008651 }, /* GL_VERTEX_ATTRIB_ARRAY1_NV */ - { 44540, 0x00008652 }, /* GL_VERTEX_ATTRIB_ARRAY2_NV */ - { 44567, 0x00008653 }, /* GL_VERTEX_ATTRIB_ARRAY3_NV */ - { 44594, 0x00008654 }, /* GL_VERTEX_ATTRIB_ARRAY4_NV */ - { 44621, 0x00008655 }, /* GL_VERTEX_ATTRIB_ARRAY5_NV */ - { 44648, 0x00008656 }, /* GL_VERTEX_ATTRIB_ARRAY6_NV */ - { 44675, 0x00008657 }, /* GL_VERTEX_ATTRIB_ARRAY7_NV */ - { 44702, 0x00008658 }, /* GL_VERTEX_ATTRIB_ARRAY8_NV */ - { 44729, 0x00008659 }, /* GL_VERTEX_ATTRIB_ARRAY9_NV */ - { 44756, 0x0000889F }, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING */ - { 44794, 0x0000889F }, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB */ - { 44836, 0x00008622 }, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED */ - { 44867, 0x00008622 }, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB */ - { 44902, 0x0000886A }, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED */ - { 44936, 0x0000886A }, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB */ - { 44974, 0x00008645 }, /* GL_VERTEX_ATTRIB_ARRAY_POINTER */ - { 45005, 0x00008645 }, /* GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB */ - { 45040, 0x00008623 }, /* GL_VERTEX_ATTRIB_ARRAY_SIZE */ - { 45068, 0x00008623 }, /* GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB */ - { 45100, 0x00008624 }, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE */ - { 45130, 0x00008624 }, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB */ - { 45164, 0x00008625 }, /* GL_VERTEX_ATTRIB_ARRAY_TYPE */ - { 45192, 0x00008625 }, /* GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB */ - { 45224, 0x000086A7 }, /* GL_VERTEX_BLEND_ARB */ - { 45244, 0x00008620 }, /* GL_VERTEX_PROGRAM_ARB */ - { 45266, 0x0000864A }, /* GL_VERTEX_PROGRAM_BINDING_NV */ - { 45295, 0x00008620 }, /* GL_VERTEX_PROGRAM_NV */ - { 45316, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE */ - { 45345, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE_ARB */ - { 45378, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE_NV */ - { 45410, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE */ - { 45437, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE_ARB */ - { 45468, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE_NV */ - { 45498, 0x00008B31 }, /* GL_VERTEX_SHADER */ - { 45515, 0x00008B31 }, /* GL_VERTEX_SHADER_ARB */ - { 45536, 0x00008621 }, /* GL_VERTEX_STATE_PROGRAM_NV */ - { 45563, 0x00000BA2 }, /* GL_VIEWPORT */ - { 45575, 0x00000800 }, /* GL_VIEWPORT_BIT */ - { 45591, 0x00008A1A }, /* GL_VOLATILE_APPLE */ - { 45609, 0x0000911D }, /* GL_WAIT_FAILED */ - { 45624, 0x000086AD }, /* GL_WEIGHT_ARRAY_ARB */ - { 45644, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING */ - { 45675, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB */ - { 45710, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING_OES */ - { 45745, 0x000086AD }, /* GL_WEIGHT_ARRAY_OES */ - { 45765, 0x000086AC }, /* GL_WEIGHT_ARRAY_POINTER_ARB */ - { 45793, 0x000086AC }, /* GL_WEIGHT_ARRAY_POINTER_OES */ - { 45821, 0x000086AB }, /* GL_WEIGHT_ARRAY_SIZE_ARB */ - { 45846, 0x000086AB }, /* GL_WEIGHT_ARRAY_SIZE_OES */ - { 45871, 0x000086AA }, /* GL_WEIGHT_ARRAY_STRIDE_ARB */ - { 45898, 0x000086AA }, /* GL_WEIGHT_ARRAY_STRIDE_OES */ - { 45925, 0x000086A9 }, /* GL_WEIGHT_ARRAY_TYPE_ARB */ - { 45950, 0x000086A9 }, /* GL_WEIGHT_ARRAY_TYPE_OES */ - { 45975, 0x000086A6 }, /* GL_WEIGHT_SUM_UNITY_ARB */ - { 45999, 0x000081D4 }, /* GL_WRAP_BORDER_SUN */ - { 46018, 0x000088B9 }, /* GL_WRITE_ONLY */ - { 46032, 0x000088B9 }, /* GL_WRITE_ONLY_ARB */ - { 46050, 0x000088B9 }, /* GL_WRITE_ONLY_OES */ - { 46068, 0x00001506 }, /* GL_XOR */ - { 46075, 0x000085B9 }, /* GL_YCBCR_422_APPLE */ - { 46094, 0x00008757 }, /* GL_YCBCR_MESA */ - { 46108, 0x00000000 }, /* GL_ZERO */ - { 46116, 0x00000D16 }, /* GL_ZOOM_X */ - { 46126, 0x00000D17 }, /* GL_ZOOM_Y */ + { 2406, 0x0000891B }, /* GL_CLAMP_FRAGMENT_COLOR_ARB */ + { 2434, 0x0000891C }, /* GL_CLAMP_READ_COLOR_ARB */ + { 2458, 0x0000812D }, /* GL_CLAMP_TO_BORDER */ + { 2477, 0x0000812D }, /* GL_CLAMP_TO_BORDER_ARB */ + { 2500, 0x0000812D }, /* GL_CLAMP_TO_BORDER_SGIS */ + { 2524, 0x0000812F }, /* GL_CLAMP_TO_EDGE */ + { 2541, 0x0000812F }, /* GL_CLAMP_TO_EDGE_SGIS */ + { 2563, 0x0000891A }, /* GL_CLAMP_VERTEX_COLOR_ARB */ + { 2589, 0x00001500 }, /* GL_CLEAR */ + { 2598, 0x000084E1 }, /* GL_CLIENT_ACTIVE_TEXTURE */ + { 2623, 0x000084E1 }, /* GL_CLIENT_ACTIVE_TEXTURE_ARB */ + { 2652, 0xFFFFFFFF }, /* GL_CLIENT_ALL_ATTRIB_BITS */ + { 2678, 0x00000BB1 }, /* GL_CLIENT_ATTRIB_STACK_DEPTH */ + { 2707, 0x00000001 }, /* GL_CLIENT_PIXEL_STORE_BIT */ + { 2733, 0x00000002 }, /* GL_CLIENT_VERTEX_ARRAY_BIT */ + { 2760, 0x00003000 }, /* GL_CLIP_PLANE0 */ + { 2775, 0x00003001 }, /* GL_CLIP_PLANE1 */ + { 2790, 0x00003002 }, /* GL_CLIP_PLANE2 */ + { 2805, 0x00003003 }, /* GL_CLIP_PLANE3 */ + { 2820, 0x00003004 }, /* GL_CLIP_PLANE4 */ + { 2835, 0x00003005 }, /* GL_CLIP_PLANE5 */ + { 2850, 0x000080F0 }, /* GL_CLIP_VOLUME_CLIPPING_HINT_EXT */ + { 2883, 0x00000A00 }, /* GL_COEFF */ + { 2892, 0x00001800 }, /* GL_COLOR */ + { 2901, 0x00008076 }, /* GL_COLOR_ARRAY */ + { 2916, 0x00008898 }, /* GL_COLOR_ARRAY_BUFFER_BINDING */ + { 2946, 0x00008898 }, /* GL_COLOR_ARRAY_BUFFER_BINDING_ARB */ + { 2980, 0x00008090 }, /* GL_COLOR_ARRAY_POINTER */ + { 3003, 0x00008081 }, /* GL_COLOR_ARRAY_SIZE */ + { 3023, 0x00008083 }, /* GL_COLOR_ARRAY_STRIDE */ + { 3045, 0x00008082 }, /* GL_COLOR_ARRAY_TYPE */ + { 3065, 0x00008CE0 }, /* GL_COLOR_ATTACHMENT0 */ + { 3086, 0x00008CE0 }, /* GL_COLOR_ATTACHMENT0_EXT */ + { 3111, 0x00008CE0 }, /* GL_COLOR_ATTACHMENT0_OES */ + { 3136, 0x00008CE1 }, /* GL_COLOR_ATTACHMENT1 */ + { 3157, 0x00008CEA }, /* GL_COLOR_ATTACHMENT10 */ + { 3179, 0x00008CEA }, /* GL_COLOR_ATTACHMENT10_EXT */ + { 3205, 0x00008CEB }, /* GL_COLOR_ATTACHMENT11 */ + { 3227, 0x00008CEB }, /* GL_COLOR_ATTACHMENT11_EXT */ + { 3253, 0x00008CEC }, /* GL_COLOR_ATTACHMENT12 */ + { 3275, 0x00008CEC }, /* GL_COLOR_ATTACHMENT12_EXT */ + { 3301, 0x00008CED }, /* GL_COLOR_ATTACHMENT13 */ + { 3323, 0x00008CED }, /* GL_COLOR_ATTACHMENT13_EXT */ + { 3349, 0x00008CEE }, /* GL_COLOR_ATTACHMENT14 */ + { 3371, 0x00008CEE }, /* GL_COLOR_ATTACHMENT14_EXT */ + { 3397, 0x00008CEF }, /* GL_COLOR_ATTACHMENT15 */ + { 3419, 0x00008CEF }, /* GL_COLOR_ATTACHMENT15_EXT */ + { 3445, 0x00008CE1 }, /* GL_COLOR_ATTACHMENT1_EXT */ + { 3470, 0x00008CE2 }, /* GL_COLOR_ATTACHMENT2 */ + { 3491, 0x00008CE2 }, /* GL_COLOR_ATTACHMENT2_EXT */ + { 3516, 0x00008CE3 }, /* GL_COLOR_ATTACHMENT3 */ + { 3537, 0x00008CE3 }, /* GL_COLOR_ATTACHMENT3_EXT */ + { 3562, 0x00008CE4 }, /* GL_COLOR_ATTACHMENT4 */ + { 3583, 0x00008CE4 }, /* GL_COLOR_ATTACHMENT4_EXT */ + { 3608, 0x00008CE5 }, /* GL_COLOR_ATTACHMENT5 */ + { 3629, 0x00008CE5 }, /* GL_COLOR_ATTACHMENT5_EXT */ + { 3654, 0x00008CE6 }, /* GL_COLOR_ATTACHMENT6 */ + { 3675, 0x00008CE6 }, /* GL_COLOR_ATTACHMENT6_EXT */ + { 3700, 0x00008CE7 }, /* GL_COLOR_ATTACHMENT7 */ + { 3721, 0x00008CE7 }, /* GL_COLOR_ATTACHMENT7_EXT */ + { 3746, 0x00008CE8 }, /* GL_COLOR_ATTACHMENT8 */ + { 3767, 0x00008CE8 }, /* GL_COLOR_ATTACHMENT8_EXT */ + { 3792, 0x00008CE9 }, /* GL_COLOR_ATTACHMENT9 */ + { 3813, 0x00008CE9 }, /* GL_COLOR_ATTACHMENT9_EXT */ + { 3838, 0x00004000 }, /* GL_COLOR_BUFFER_BIT */ + { 3858, 0x00000C22 }, /* GL_COLOR_CLEAR_VALUE */ + { 3879, 0x00001900 }, /* GL_COLOR_INDEX */ + { 3894, 0x00001603 }, /* GL_COLOR_INDEXES */ + { 3911, 0x00000BF2 }, /* GL_COLOR_LOGIC_OP */ + { 3929, 0x00000B57 }, /* GL_COLOR_MATERIAL */ + { 3947, 0x00000B55 }, /* GL_COLOR_MATERIAL_FACE */ + { 3970, 0x00000B56 }, /* GL_COLOR_MATERIAL_PARAMETER */ + { 3998, 0x000080B1 }, /* GL_COLOR_MATRIX */ + { 4014, 0x000080B1 }, /* GL_COLOR_MATRIX_SGI */ + { 4034, 0x000080B2 }, /* GL_COLOR_MATRIX_STACK_DEPTH */ + { 4062, 0x000080B2 }, /* GL_COLOR_MATRIX_STACK_DEPTH_SGI */ + { 4094, 0x00008458 }, /* GL_COLOR_SUM */ + { 4107, 0x00008458 }, /* GL_COLOR_SUM_ARB */ + { 4124, 0x000080D0 }, /* GL_COLOR_TABLE */ + { 4139, 0x000080DD }, /* GL_COLOR_TABLE_ALPHA_SIZE */ + { 4165, 0x000080DD }, /* GL_COLOR_TABLE_ALPHA_SIZE_EXT */ + { 4195, 0x000080DD }, /* GL_COLOR_TABLE_ALPHA_SIZE_SGI */ + { 4225, 0x000080D7 }, /* GL_COLOR_TABLE_BIAS */ + { 4245, 0x000080D7 }, /* GL_COLOR_TABLE_BIAS_SGI */ + { 4269, 0x000080DC }, /* GL_COLOR_TABLE_BLUE_SIZE */ + { 4294, 0x000080DC }, /* GL_COLOR_TABLE_BLUE_SIZE_EXT */ + { 4323, 0x000080DC }, /* GL_COLOR_TABLE_BLUE_SIZE_SGI */ + { 4352, 0x000080D8 }, /* GL_COLOR_TABLE_FORMAT */ + { 4374, 0x000080D8 }, /* GL_COLOR_TABLE_FORMAT_EXT */ + { 4400, 0x000080D8 }, /* GL_COLOR_TABLE_FORMAT_SGI */ + { 4426, 0x000080DB }, /* GL_COLOR_TABLE_GREEN_SIZE */ + { 4452, 0x000080DB }, /* GL_COLOR_TABLE_GREEN_SIZE_EXT */ + { 4482, 0x000080DB }, /* GL_COLOR_TABLE_GREEN_SIZE_SGI */ + { 4512, 0x000080DF }, /* GL_COLOR_TABLE_INTENSITY_SIZE */ + { 4542, 0x000080DF }, /* GL_COLOR_TABLE_INTENSITY_SIZE_EXT */ + { 4576, 0x000080DF }, /* GL_COLOR_TABLE_INTENSITY_SIZE_SGI */ + { 4610, 0x000080DE }, /* GL_COLOR_TABLE_LUMINANCE_SIZE */ + { 4640, 0x000080DE }, /* GL_COLOR_TABLE_LUMINANCE_SIZE_EXT */ + { 4674, 0x000080DE }, /* GL_COLOR_TABLE_LUMINANCE_SIZE_SGI */ + { 4708, 0x000080DA }, /* GL_COLOR_TABLE_RED_SIZE */ + { 4732, 0x000080DA }, /* GL_COLOR_TABLE_RED_SIZE_EXT */ + { 4760, 0x000080DA }, /* GL_COLOR_TABLE_RED_SIZE_SGI */ + { 4788, 0x000080D6 }, /* GL_COLOR_TABLE_SCALE */ + { 4809, 0x000080D6 }, /* GL_COLOR_TABLE_SCALE_SGI */ + { 4834, 0x000080D9 }, /* GL_COLOR_TABLE_WIDTH */ + { 4855, 0x000080D9 }, /* GL_COLOR_TABLE_WIDTH_EXT */ + { 4880, 0x000080D9 }, /* GL_COLOR_TABLE_WIDTH_SGI */ + { 4905, 0x00000C23 }, /* GL_COLOR_WRITEMASK */ + { 4924, 0x00008570 }, /* GL_COMBINE */ + { 4935, 0x00008503 }, /* GL_COMBINE4 */ + { 4947, 0x00008572 }, /* GL_COMBINE_ALPHA */ + { 4964, 0x00008572 }, /* GL_COMBINE_ALPHA_ARB */ + { 4985, 0x00008572 }, /* GL_COMBINE_ALPHA_EXT */ + { 5006, 0x00008570 }, /* GL_COMBINE_ARB */ + { 5021, 0x00008570 }, /* GL_COMBINE_EXT */ + { 5036, 0x00008571 }, /* GL_COMBINE_RGB */ + { 5051, 0x00008571 }, /* GL_COMBINE_RGB_ARB */ + { 5070, 0x00008571 }, /* GL_COMBINE_RGB_EXT */ + { 5089, 0x0000884E }, /* GL_COMPARE_REF_DEPTH_TO_TEXTURE_EXT */ + { 5125, 0x0000884E }, /* GL_COMPARE_R_TO_TEXTURE */ + { 5149, 0x0000884E }, /* GL_COMPARE_R_TO_TEXTURE_ARB */ + { 5177, 0x00001300 }, /* GL_COMPILE */ + { 5188, 0x00001301 }, /* GL_COMPILE_AND_EXECUTE */ + { 5211, 0x00008B81 }, /* GL_COMPILE_STATUS */ + { 5229, 0x000084E9 }, /* GL_COMPRESSED_ALPHA */ + { 5249, 0x000084E9 }, /* GL_COMPRESSED_ALPHA_ARB */ + { 5273, 0x000084EC }, /* GL_COMPRESSED_INTENSITY */ + { 5297, 0x000084EC }, /* GL_COMPRESSED_INTENSITY_ARB */ + { 5325, 0x000084EA }, /* GL_COMPRESSED_LUMINANCE */ + { 5349, 0x000084EB }, /* GL_COMPRESSED_LUMINANCE_ALPHA */ + { 5379, 0x000084EB }, /* GL_COMPRESSED_LUMINANCE_ALPHA_ARB */ + { 5413, 0x000084EA }, /* GL_COMPRESSED_LUMINANCE_ARB */ + { 5441, 0x000084ED }, /* GL_COMPRESSED_RGB */ + { 5459, 0x000084EE }, /* GL_COMPRESSED_RGBA */ + { 5478, 0x000084EE }, /* GL_COMPRESSED_RGBA_ARB */ + { 5501, 0x000086B1 }, /* GL_COMPRESSED_RGBA_FXT1_3DFX */ + { 5530, 0x000083F1 }, /* GL_COMPRESSED_RGBA_S3TC_DXT1_EXT */ + { 5563, 0x000083F2 }, /* GL_COMPRESSED_RGBA_S3TC_DXT3_EXT */ + { 5596, 0x000083F3 }, /* GL_COMPRESSED_RGBA_S3TC_DXT5_EXT */ + { 5629, 0x000084ED }, /* GL_COMPRESSED_RGB_ARB */ + { 5651, 0x000086B0 }, /* GL_COMPRESSED_RGB_FXT1_3DFX */ + { 5679, 0x000083F0 }, /* GL_COMPRESSED_RGB_S3TC_DXT1_EXT */ + { 5711, 0x00008C4A }, /* GL_COMPRESSED_SLUMINANCE */ + { 5736, 0x00008C4B }, /* GL_COMPRESSED_SLUMINANCE_ALPHA */ + { 5767, 0x00008C48 }, /* GL_COMPRESSED_SRGB */ + { 5786, 0x00008C49 }, /* GL_COMPRESSED_SRGB_ALPHA */ + { 5811, 0x000086A3 }, /* GL_COMPRESSED_TEXTURE_FORMATS */ + { 5841, 0x0000911C }, /* GL_CONDITION_SATISFIED */ + { 5864, 0x00008576 }, /* GL_CONSTANT */ + { 5876, 0x00008003 }, /* GL_CONSTANT_ALPHA */ + { 5894, 0x00008003 }, /* GL_CONSTANT_ALPHA_EXT */ + { 5916, 0x00008576 }, /* GL_CONSTANT_ARB */ + { 5932, 0x00001207 }, /* GL_CONSTANT_ATTENUATION */ + { 5956, 0x00008151 }, /* GL_CONSTANT_BORDER_HP */ + { 5978, 0x00008001 }, /* GL_CONSTANT_COLOR */ + { 5996, 0x00008001 }, /* GL_CONSTANT_COLOR_EXT */ + { 6018, 0x00008576 }, /* GL_CONSTANT_EXT */ + { 6034, 0x00008010 }, /* GL_CONVOLUTION_1D */ + { 6052, 0x00008011 }, /* GL_CONVOLUTION_2D */ + { 6070, 0x00008154 }, /* GL_CONVOLUTION_BORDER_COLOR */ + { 6098, 0x00008154 }, /* GL_CONVOLUTION_BORDER_COLOR_HP */ + { 6129, 0x00008013 }, /* GL_CONVOLUTION_BORDER_MODE */ + { 6156, 0x00008013 }, /* GL_CONVOLUTION_BORDER_MODE_EXT */ + { 6187, 0x00008015 }, /* GL_CONVOLUTION_FILTER_BIAS */ + { 6214, 0x00008015 }, /* GL_CONVOLUTION_FILTER_BIAS_EXT */ + { 6245, 0x00008014 }, /* GL_CONVOLUTION_FILTER_SCALE */ + { 6273, 0x00008014 }, /* GL_CONVOLUTION_FILTER_SCALE_EXT */ + { 6305, 0x00008017 }, /* GL_CONVOLUTION_FORMAT */ + { 6327, 0x00008017 }, /* GL_CONVOLUTION_FORMAT_EXT */ + { 6353, 0x00008019 }, /* GL_CONVOLUTION_HEIGHT */ + { 6375, 0x00008019 }, /* GL_CONVOLUTION_HEIGHT_EXT */ + { 6401, 0x00008018 }, /* GL_CONVOLUTION_WIDTH */ + { 6422, 0x00008018 }, /* GL_CONVOLUTION_WIDTH_EXT */ + { 6447, 0x00008862 }, /* GL_COORD_REPLACE */ + { 6464, 0x00008862 }, /* GL_COORD_REPLACE_ARB */ + { 6485, 0x00008862 }, /* GL_COORD_REPLACE_NV */ + { 6505, 0x00008862 }, /* GL_COORD_REPLACE_OES */ + { 6526, 0x00001503 }, /* GL_COPY */ + { 6534, 0x0000150C }, /* GL_COPY_INVERTED */ + { 6551, 0x00000706 }, /* GL_COPY_PIXEL_TOKEN */ + { 6571, 0x00008F36 }, /* GL_COPY_READ_BUFFER */ + { 6591, 0x00008F37 }, /* GL_COPY_WRITE_BUFFER */ + { 6612, 0x00000B44 }, /* GL_CULL_FACE */ + { 6625, 0x00000B45 }, /* GL_CULL_FACE_MODE */ + { 6643, 0x000081AA }, /* GL_CULL_VERTEX_EXT */ + { 6662, 0x000081AC }, /* GL_CULL_VERTEX_EYE_POSITION_EXT */ + { 6694, 0x000081AB }, /* GL_CULL_VERTEX_OBJECT_POSITION_EXT */ + { 6729, 0x00008626 }, /* GL_CURRENT_ATTRIB_NV */ + { 6750, 0x00000001 }, /* GL_CURRENT_BIT */ + { 6765, 0x00000B00 }, /* GL_CURRENT_COLOR */ + { 6782, 0x00008453 }, /* GL_CURRENT_FOG_COORD */ + { 6803, 0x00008453 }, /* GL_CURRENT_FOG_COORDINATE */ + { 6829, 0x00000B01 }, /* GL_CURRENT_INDEX */ + { 6846, 0x00008641 }, /* GL_CURRENT_MATRIX_ARB */ + { 6868, 0x00008845 }, /* GL_CURRENT_MATRIX_INDEX_ARB */ + { 6896, 0x00008641 }, /* GL_CURRENT_MATRIX_NV */ + { 6917, 0x00008640 }, /* GL_CURRENT_MATRIX_STACK_DEPTH_ARB */ + { 6951, 0x00008640 }, /* GL_CURRENT_MATRIX_STACK_DEPTH_NV */ + { 6984, 0x00000B02 }, /* GL_CURRENT_NORMAL */ + { 7002, 0x00008843 }, /* GL_CURRENT_PALETTE_MATRIX_ARB */ + { 7032, 0x00008843 }, /* GL_CURRENT_PALETTE_MATRIX_OES */ + { 7062, 0x00008B8D }, /* GL_CURRENT_PROGRAM */ + { 7081, 0x00008865 }, /* GL_CURRENT_QUERY */ + { 7098, 0x00008865 }, /* GL_CURRENT_QUERY_ARB */ + { 7119, 0x00000B04 }, /* GL_CURRENT_RASTER_COLOR */ + { 7143, 0x00000B09 }, /* GL_CURRENT_RASTER_DISTANCE */ + { 7170, 0x00000B05 }, /* GL_CURRENT_RASTER_INDEX */ + { 7194, 0x00000B07 }, /* GL_CURRENT_RASTER_POSITION */ + { 7221, 0x00000B08 }, /* GL_CURRENT_RASTER_POSITION_VALID */ + { 7254, 0x0000845F }, /* GL_CURRENT_RASTER_SECONDARY_COLOR */ + { 7288, 0x00000B06 }, /* GL_CURRENT_RASTER_TEXTURE_COORDS */ + { 7321, 0x00008459 }, /* GL_CURRENT_SECONDARY_COLOR */ + { 7348, 0x00000B03 }, /* GL_CURRENT_TEXTURE_COORDS */ + { 7374, 0x00008626 }, /* GL_CURRENT_VERTEX_ATTRIB */ + { 7399, 0x00008626 }, /* GL_CURRENT_VERTEX_ATTRIB_ARB */ + { 7428, 0x000086A8 }, /* GL_CURRENT_WEIGHT_ARB */ + { 7450, 0x00000900 }, /* GL_CW */ + { 7456, 0x0000875B }, /* GL_DEBUG_ASSERT_MESA */ + { 7477, 0x00008759 }, /* GL_DEBUG_OBJECT_MESA */ + { 7498, 0x0000875A }, /* GL_DEBUG_PRINT_MESA */ + { 7518, 0x00002101 }, /* GL_DECAL */ + { 7527, 0x00001E03 }, /* GL_DECR */ + { 7535, 0x00008508 }, /* GL_DECR_WRAP */ + { 7548, 0x00008508 }, /* GL_DECR_WRAP_EXT */ + { 7565, 0x00008B80 }, /* GL_DELETE_STATUS */ + { 7582, 0x00001801 }, /* GL_DEPTH */ + { 7591, 0x000088F0 }, /* GL_DEPTH24_STENCIL8 */ + { 7611, 0x000088F0 }, /* GL_DEPTH24_STENCIL8_EXT */ + { 7635, 0x000088F0 }, /* GL_DEPTH24_STENCIL8_OES */ + { 7659, 0x00008D00 }, /* GL_DEPTH_ATTACHMENT */ + { 7679, 0x00008D00 }, /* GL_DEPTH_ATTACHMENT_EXT */ + { 7703, 0x00008D00 }, /* GL_DEPTH_ATTACHMENT_OES */ + { 7727, 0x00000D1F }, /* GL_DEPTH_BIAS */ + { 7741, 0x00000D56 }, /* GL_DEPTH_BITS */ + { 7755, 0x00008891 }, /* GL_DEPTH_BOUNDS_EXT */ + { 7775, 0x00008890 }, /* GL_DEPTH_BOUNDS_TEST_EXT */ + { 7800, 0x00000100 }, /* GL_DEPTH_BUFFER_BIT */ + { 7820, 0x0000864F }, /* GL_DEPTH_CLAMP */ + { 7835, 0x0000864F }, /* GL_DEPTH_CLAMP_NV */ + { 7853, 0x00000B73 }, /* GL_DEPTH_CLEAR_VALUE */ + { 7874, 0x00001902 }, /* GL_DEPTH_COMPONENT */ + { 7893, 0x000081A5 }, /* GL_DEPTH_COMPONENT16 */ + { 7914, 0x000081A5 }, /* GL_DEPTH_COMPONENT16_ARB */ + { 7939, 0x000081A5 }, /* GL_DEPTH_COMPONENT16_OES */ + { 7964, 0x000081A5 }, /* GL_DEPTH_COMPONENT16_SGIX */ + { 7990, 0x000081A6 }, /* GL_DEPTH_COMPONENT24 */ + { 8011, 0x000081A6 }, /* GL_DEPTH_COMPONENT24_ARB */ + { 8036, 0x000081A6 }, /* GL_DEPTH_COMPONENT24_OES */ + { 8061, 0x000081A6 }, /* GL_DEPTH_COMPONENT24_SGIX */ + { 8087, 0x000081A7 }, /* GL_DEPTH_COMPONENT32 */ + { 8108, 0x000081A7 }, /* GL_DEPTH_COMPONENT32_ARB */ + { 8133, 0x000081A7 }, /* GL_DEPTH_COMPONENT32_OES */ + { 8158, 0x000081A7 }, /* GL_DEPTH_COMPONENT32_SGIX */ + { 8184, 0x00000B74 }, /* GL_DEPTH_FUNC */ + { 8198, 0x00000B70 }, /* GL_DEPTH_RANGE */ + { 8213, 0x00000D1E }, /* GL_DEPTH_SCALE */ + { 8228, 0x000084F9 }, /* GL_DEPTH_STENCIL */ + { 8245, 0x0000821A }, /* GL_DEPTH_STENCIL_ATTACHMENT */ + { 8273, 0x000084F9 }, /* GL_DEPTH_STENCIL_EXT */ + { 8294, 0x000084F9 }, /* GL_DEPTH_STENCIL_NV */ + { 8314, 0x000084F9 }, /* GL_DEPTH_STENCIL_OES */ + { 8335, 0x0000886F }, /* GL_DEPTH_STENCIL_TO_BGRA_NV */ + { 8363, 0x0000886E }, /* GL_DEPTH_STENCIL_TO_RGBA_NV */ + { 8391, 0x00000B71 }, /* GL_DEPTH_TEST */ + { 8405, 0x0000884B }, /* GL_DEPTH_TEXTURE_MODE */ + { 8427, 0x0000884B }, /* GL_DEPTH_TEXTURE_MODE_ARB */ + { 8453, 0x00000B72 }, /* GL_DEPTH_WRITEMASK */ + { 8472, 0x00001201 }, /* GL_DIFFUSE */ + { 8483, 0x00000BD0 }, /* GL_DITHER */ + { 8493, 0x00000A02 }, /* GL_DOMAIN */ + { 8503, 0x00001100 }, /* GL_DONT_CARE */ + { 8516, 0x000086AE }, /* GL_DOT3_RGB */ + { 8528, 0x000086AF }, /* GL_DOT3_RGBA */ + { 8541, 0x000086AF }, /* GL_DOT3_RGBA_ARB */ + { 8558, 0x00008741 }, /* GL_DOT3_RGBA_EXT */ + { 8575, 0x000086AE }, /* GL_DOT3_RGB_ARB */ + { 8591, 0x00008740 }, /* GL_DOT3_RGB_EXT */ + { 8607, 0x0000140A }, /* GL_DOUBLE */ + { 8617, 0x00000C32 }, /* GL_DOUBLEBUFFER */ + { 8633, 0x00000C01 }, /* GL_DRAW_BUFFER */ + { 8648, 0x00008825 }, /* GL_DRAW_BUFFER0 */ + { 8664, 0x00008825 }, /* GL_DRAW_BUFFER0_ARB */ + { 8684, 0x00008825 }, /* GL_DRAW_BUFFER0_ATI */ + { 8704, 0x00008826 }, /* GL_DRAW_BUFFER1 */ + { 8720, 0x0000882F }, /* GL_DRAW_BUFFER10 */ + { 8737, 0x0000882F }, /* GL_DRAW_BUFFER10_ARB */ + { 8758, 0x0000882F }, /* GL_DRAW_BUFFER10_ATI */ + { 8779, 0x00008830 }, /* GL_DRAW_BUFFER11 */ + { 8796, 0x00008830 }, /* GL_DRAW_BUFFER11_ARB */ + { 8817, 0x00008830 }, /* GL_DRAW_BUFFER11_ATI */ + { 8838, 0x00008831 }, /* GL_DRAW_BUFFER12 */ + { 8855, 0x00008831 }, /* GL_DRAW_BUFFER12_ARB */ + { 8876, 0x00008831 }, /* GL_DRAW_BUFFER12_ATI */ + { 8897, 0x00008832 }, /* GL_DRAW_BUFFER13 */ + { 8914, 0x00008832 }, /* GL_DRAW_BUFFER13_ARB */ + { 8935, 0x00008832 }, /* GL_DRAW_BUFFER13_ATI */ + { 8956, 0x00008833 }, /* GL_DRAW_BUFFER14 */ + { 8973, 0x00008833 }, /* GL_DRAW_BUFFER14_ARB */ + { 8994, 0x00008833 }, /* GL_DRAW_BUFFER14_ATI */ + { 9015, 0x00008834 }, /* GL_DRAW_BUFFER15 */ + { 9032, 0x00008834 }, /* GL_DRAW_BUFFER15_ARB */ + { 9053, 0x00008834 }, /* GL_DRAW_BUFFER15_ATI */ + { 9074, 0x00008826 }, /* GL_DRAW_BUFFER1_ARB */ + { 9094, 0x00008826 }, /* GL_DRAW_BUFFER1_ATI */ + { 9114, 0x00008827 }, /* GL_DRAW_BUFFER2 */ + { 9130, 0x00008827 }, /* GL_DRAW_BUFFER2_ARB */ + { 9150, 0x00008827 }, /* GL_DRAW_BUFFER2_ATI */ + { 9170, 0x00008828 }, /* GL_DRAW_BUFFER3 */ + { 9186, 0x00008828 }, /* GL_DRAW_BUFFER3_ARB */ + { 9206, 0x00008828 }, /* GL_DRAW_BUFFER3_ATI */ + { 9226, 0x00008829 }, /* GL_DRAW_BUFFER4 */ + { 9242, 0x00008829 }, /* GL_DRAW_BUFFER4_ARB */ + { 9262, 0x00008829 }, /* GL_DRAW_BUFFER4_ATI */ + { 9282, 0x0000882A }, /* GL_DRAW_BUFFER5 */ + { 9298, 0x0000882A }, /* GL_DRAW_BUFFER5_ARB */ + { 9318, 0x0000882A }, /* GL_DRAW_BUFFER5_ATI */ + { 9338, 0x0000882B }, /* GL_DRAW_BUFFER6 */ + { 9354, 0x0000882B }, /* GL_DRAW_BUFFER6_ARB */ + { 9374, 0x0000882B }, /* GL_DRAW_BUFFER6_ATI */ + { 9394, 0x0000882C }, /* GL_DRAW_BUFFER7 */ + { 9410, 0x0000882C }, /* GL_DRAW_BUFFER7_ARB */ + { 9430, 0x0000882C }, /* GL_DRAW_BUFFER7_ATI */ + { 9450, 0x0000882D }, /* GL_DRAW_BUFFER8 */ + { 9466, 0x0000882D }, /* GL_DRAW_BUFFER8_ARB */ + { 9486, 0x0000882D }, /* GL_DRAW_BUFFER8_ATI */ + { 9506, 0x0000882E }, /* GL_DRAW_BUFFER9 */ + { 9522, 0x0000882E }, /* GL_DRAW_BUFFER9_ARB */ + { 9542, 0x0000882E }, /* GL_DRAW_BUFFER9_ATI */ + { 9562, 0x00008CA9 }, /* GL_DRAW_FRAMEBUFFER */ + { 9582, 0x00008CA6 }, /* GL_DRAW_FRAMEBUFFER_BINDING */ + { 9610, 0x00008CA6 }, /* GL_DRAW_FRAMEBUFFER_BINDING_EXT */ + { 9642, 0x00008CA9 }, /* GL_DRAW_FRAMEBUFFER_EXT */ + { 9666, 0x00000705 }, /* GL_DRAW_PIXEL_TOKEN */ + { 9686, 0x00000304 }, /* GL_DST_ALPHA */ + { 9699, 0x00000306 }, /* GL_DST_COLOR */ + { 9712, 0x0000877A }, /* GL_DU8DV8_ATI */ + { 9726, 0x00008779 }, /* GL_DUDV_ATI */ + { 9738, 0x000088EA }, /* GL_DYNAMIC_COPY */ + { 9754, 0x000088EA }, /* GL_DYNAMIC_COPY_ARB */ + { 9774, 0x000088E8 }, /* GL_DYNAMIC_DRAW */ + { 9790, 0x000088E8 }, /* GL_DYNAMIC_DRAW_ARB */ + { 9810, 0x000088E9 }, /* GL_DYNAMIC_READ */ + { 9826, 0x000088E9 }, /* GL_DYNAMIC_READ_ARB */ + { 9846, 0x00000B43 }, /* GL_EDGE_FLAG */ + { 9859, 0x00008079 }, /* GL_EDGE_FLAG_ARRAY */ + { 9878, 0x0000889B }, /* GL_EDGE_FLAG_ARRAY_BUFFER_BINDING */ + { 9912, 0x0000889B }, /* GL_EDGE_FLAG_ARRAY_BUFFER_BINDING_ARB */ + { 9950, 0x00008093 }, /* GL_EDGE_FLAG_ARRAY_POINTER */ + { 9977, 0x0000808C }, /* GL_EDGE_FLAG_ARRAY_STRIDE */ + { 10003, 0x00008893 }, /* GL_ELEMENT_ARRAY_BUFFER */ + { 10027, 0x00008895 }, /* GL_ELEMENT_ARRAY_BUFFER_BINDING */ + { 10059, 0x00008895 }, /* GL_ELEMENT_ARRAY_BUFFER_BINDING_ARB */ + { 10095, 0x00001600 }, /* GL_EMISSION */ + { 10107, 0x00002000 }, /* GL_ENABLE_BIT */ + { 10121, 0x00000202 }, /* GL_EQUAL */ + { 10130, 0x00001509 }, /* GL_EQUIV */ + { 10139, 0x00010000 }, /* GL_EVAL_BIT */ + { 10151, 0x00000800 }, /* GL_EXP */ + { 10158, 0x00000801 }, /* GL_EXP2 */ + { 10166, 0x00001F03 }, /* GL_EXTENSIONS */ + { 10180, 0x00002400 }, /* GL_EYE_LINEAR */ + { 10194, 0x00002502 }, /* GL_EYE_PLANE */ + { 10207, 0x0000855C }, /* GL_EYE_PLANE_ABSOLUTE_NV */ + { 10232, 0x0000855B }, /* GL_EYE_RADIAL_NV */ + { 10249, 0x00000000 }, /* GL_FALSE */ + { 10258, 0x00001101 }, /* GL_FASTEST */ + { 10269, 0x00001C01 }, /* GL_FEEDBACK */ + { 10281, 0x00000DF0 }, /* GL_FEEDBACK_BUFFER_POINTER */ + { 10308, 0x00000DF1 }, /* GL_FEEDBACK_BUFFER_SIZE */ + { 10332, 0x00000DF2 }, /* GL_FEEDBACK_BUFFER_TYPE */ + { 10356, 0x00001B02 }, /* GL_FILL */ + { 10364, 0x00008E4D }, /* GL_FIRST_VERTEX_CONVENTION */ + { 10391, 0x00008E4D }, /* GL_FIRST_VERTEX_CONVENTION_EXT */ + { 10422, 0x0000140C }, /* GL_FIXED */ + { 10431, 0x0000140C }, /* GL_FIXED_OES */ + { 10444, 0x0000891D }, /* GL_FIXED_ONLY_ARB */ + { 10462, 0x00001D00 }, /* GL_FLAT */ + { 10470, 0x00001406 }, /* GL_FLOAT */ + { 10479, 0x00008B5A }, /* GL_FLOAT_MAT2 */ + { 10493, 0x00008B5A }, /* GL_FLOAT_MAT2_ARB */ + { 10511, 0x00008B65 }, /* GL_FLOAT_MAT2x3 */ + { 10527, 0x00008B66 }, /* GL_FLOAT_MAT2x4 */ + { 10543, 0x00008B5B }, /* GL_FLOAT_MAT3 */ + { 10557, 0x00008B5B }, /* GL_FLOAT_MAT3_ARB */ + { 10575, 0x00008B67 }, /* GL_FLOAT_MAT3x2 */ + { 10591, 0x00008B68 }, /* GL_FLOAT_MAT3x4 */ + { 10607, 0x00008B5C }, /* GL_FLOAT_MAT4 */ + { 10621, 0x00008B5C }, /* GL_FLOAT_MAT4_ARB */ + { 10639, 0x00008B69 }, /* GL_FLOAT_MAT4x2 */ + { 10655, 0x00008B6A }, /* GL_FLOAT_MAT4x3 */ + { 10671, 0x00008B50 }, /* GL_FLOAT_VEC2 */ + { 10685, 0x00008B50 }, /* GL_FLOAT_VEC2_ARB */ + { 10703, 0x00008B51 }, /* GL_FLOAT_VEC3 */ + { 10717, 0x00008B51 }, /* GL_FLOAT_VEC3_ARB */ + { 10735, 0x00008B52 }, /* GL_FLOAT_VEC4 */ + { 10749, 0x00008B52 }, /* GL_FLOAT_VEC4_ARB */ + { 10767, 0x00000B60 }, /* GL_FOG */ + { 10774, 0x00000080 }, /* GL_FOG_BIT */ + { 10785, 0x00000B66 }, /* GL_FOG_COLOR */ + { 10798, 0x00008451 }, /* GL_FOG_COORD */ + { 10811, 0x00008451 }, /* GL_FOG_COORDINATE */ + { 10829, 0x00008457 }, /* GL_FOG_COORDINATE_ARRAY */ + { 10853, 0x0000889D }, /* GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING */ + { 10892, 0x0000889D }, /* GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING_ARB */ + { 10935, 0x00008456 }, /* GL_FOG_COORDINATE_ARRAY_POINTER */ + { 10967, 0x00008455 }, /* GL_FOG_COORDINATE_ARRAY_STRIDE */ + { 10998, 0x00008454 }, /* GL_FOG_COORDINATE_ARRAY_TYPE */ + { 11027, 0x00008450 }, /* GL_FOG_COORDINATE_SOURCE */ + { 11052, 0x00008457 }, /* GL_FOG_COORD_ARRAY */ + { 11071, 0x0000889D }, /* GL_FOG_COORD_ARRAY_BUFFER_BINDING */ + { 11105, 0x00008456 }, /* GL_FOG_COORD_ARRAY_POINTER */ + { 11132, 0x00008455 }, /* GL_FOG_COORD_ARRAY_STRIDE */ + { 11158, 0x00008454 }, /* GL_FOG_COORD_ARRAY_TYPE */ + { 11182, 0x00008450 }, /* GL_FOG_COORD_SRC */ + { 11199, 0x00000B62 }, /* GL_FOG_DENSITY */ + { 11214, 0x0000855A }, /* GL_FOG_DISTANCE_MODE_NV */ + { 11238, 0x00000B64 }, /* GL_FOG_END */ + { 11249, 0x00000C54 }, /* GL_FOG_HINT */ + { 11261, 0x00000B61 }, /* GL_FOG_INDEX */ + { 11274, 0x00000B65 }, /* GL_FOG_MODE */ + { 11286, 0x00008198 }, /* GL_FOG_OFFSET_SGIX */ + { 11305, 0x00008199 }, /* GL_FOG_OFFSET_VALUE_SGIX */ + { 11330, 0x00000B63 }, /* GL_FOG_START */ + { 11343, 0x00008452 }, /* GL_FRAGMENT_DEPTH */ + { 11361, 0x00008804 }, /* GL_FRAGMENT_PROGRAM_ARB */ + { 11385, 0x00008B30 }, /* GL_FRAGMENT_SHADER */ + { 11404, 0x00008B30 }, /* GL_FRAGMENT_SHADER_ARB */ + { 11427, 0x00008B8B }, /* GL_FRAGMENT_SHADER_DERIVATIVE_HINT */ + { 11462, 0x00008B8B }, /* GL_FRAGMENT_SHADER_DERIVATIVE_HINT_OES */ + { 11501, 0x00008D40 }, /* GL_FRAMEBUFFER */ + { 11516, 0x00008215 }, /* GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE */ + { 11553, 0x00008214 }, /* GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE */ + { 11589, 0x00008210 }, /* GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING */ + { 11630, 0x00008211 }, /* GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE */ + { 11671, 0x00008216 }, /* GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE */ + { 11708, 0x00008213 }, /* GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE */ + { 11745, 0x00008DA7 }, /* GL_FRAMEBUFFER_ATTACHMENT_LAYERED_ARB */ + { 11783, 0x00008CD1 }, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME */ + { 11821, 0x00008CD1 }, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_EXT */ + { 11863, 0x00008CD1 }, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME_OES */ + { 11905, 0x00008CD0 }, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE */ + { 11943, 0x00008CD0 }, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_EXT */ + { 11985, 0x00008CD0 }, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE_OES */ + { 12027, 0x00008212 }, /* GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE */ + { 12062, 0x00008217 }, /* GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE */ + { 12101, 0x00008CD4 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_EXT */ + { 12150, 0x00008CD4 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_3D_ZOFFSET_OES */ + { 12199, 0x00008CD3 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE */ + { 12247, 0x00008CD3 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_EXT */ + { 12299, 0x00008CD3 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE_OES */ + { 12351, 0x00008CD4 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER */ + { 12391, 0x00008CD4 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER_EXT */ + { 12435, 0x00008CD2 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL */ + { 12475, 0x00008CD2 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_EXT */ + { 12519, 0x00008CD2 }, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL_OES */ + { 12563, 0x00008CA6 }, /* GL_FRAMEBUFFER_BINDING */ + { 12586, 0x00008CA6 }, /* GL_FRAMEBUFFER_BINDING_EXT */ + { 12613, 0x00008CA6 }, /* GL_FRAMEBUFFER_BINDING_OES */ + { 12640, 0x00008CD5 }, /* GL_FRAMEBUFFER_COMPLETE */ + { 12664, 0x00008CD5 }, /* GL_FRAMEBUFFER_COMPLETE_EXT */ + { 12692, 0x00008CD5 }, /* GL_FRAMEBUFFER_COMPLETE_OES */ + { 12720, 0x00008218 }, /* GL_FRAMEBUFFER_DEFAULT */ + { 12743, 0x00008D40 }, /* GL_FRAMEBUFFER_EXT */ + { 12762, 0x00008CD6 }, /* GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT */ + { 12799, 0x00008CD6 }, /* GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_EXT */ + { 12840, 0x00008CD6 }, /* GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT_OES */ + { 12881, 0x00008CD9 }, /* GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS */ + { 12918, 0x00008CD9 }, /* GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT */ + { 12959, 0x00008CD9 }, /* GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_OES */ + { 13000, 0x00008CDB }, /* GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER */ + { 13038, 0x00008CDB }, /* GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_EXT */ + { 13080, 0x00008CDB }, /* GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER_OES */ + { 13122, 0x00008CD8 }, /* GL_FRAMEBUFFER_INCOMPLETE_DUPLICATE_ATTACHMENT_EXT */ + { 13173, 0x00008CDA }, /* GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT */ + { 13211, 0x00008CDA }, /* GL_FRAMEBUFFER_INCOMPLETE_FORMATS_OES */ + { 13249, 0x00008DA9 }, /* GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB */ + { 13291, 0x00008DA8 }, /* GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB */ + { 13335, 0x00008CD7 }, /* GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT */ + { 13380, 0x00008CD7 }, /* GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_EXT */ + { 13429, 0x00008CD7 }, /* GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT_OES */ + { 13478, 0x00008D56 }, /* GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE */ + { 13516, 0x00008D56 }, /* GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE_EXT */ + { 13558, 0x00008CDC }, /* GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER */ + { 13596, 0x00008CDC }, /* GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_EXT */ + { 13638, 0x00008CDC }, /* GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER_OES */ + { 13680, 0x00008D40 }, /* GL_FRAMEBUFFER_OES */ + { 13699, 0x00008CDE }, /* GL_FRAMEBUFFER_STATUS_ERROR_EXT */ + { 13731, 0x00008219 }, /* GL_FRAMEBUFFER_UNDEFINED */ + { 13756, 0x00008CDD }, /* GL_FRAMEBUFFER_UNSUPPORTED */ + { 13783, 0x00008CDD }, /* GL_FRAMEBUFFER_UNSUPPORTED_EXT */ + { 13814, 0x00008CDD }, /* GL_FRAMEBUFFER_UNSUPPORTED_OES */ + { 13845, 0x00000404 }, /* GL_FRONT */ + { 13854, 0x00000408 }, /* GL_FRONT_AND_BACK */ + { 13872, 0x00000B46 }, /* GL_FRONT_FACE */ + { 13886, 0x00000400 }, /* GL_FRONT_LEFT */ + { 13900, 0x00000401 }, /* GL_FRONT_RIGHT */ + { 13915, 0x00008006 }, /* GL_FUNC_ADD */ + { 13927, 0x00008006 }, /* GL_FUNC_ADD_EXT */ + { 13943, 0x00008006 }, /* GL_FUNC_ADD_OES */ + { 13959, 0x0000800B }, /* GL_FUNC_REVERSE_SUBTRACT */ + { 13984, 0x0000800B }, /* GL_FUNC_REVERSE_SUBTRACT_EXT */ + { 14013, 0x0000800B }, /* GL_FUNC_REVERSE_SUBTRACT_OES */ + { 14042, 0x0000800A }, /* GL_FUNC_SUBTRACT */ + { 14059, 0x0000800A }, /* GL_FUNC_SUBTRACT_EXT */ + { 14080, 0x0000800A }, /* GL_FUNC_SUBTRACT_OES */ + { 14101, 0x00008191 }, /* GL_GENERATE_MIPMAP */ + { 14120, 0x00008192 }, /* GL_GENERATE_MIPMAP_HINT */ + { 14144, 0x00008192 }, /* GL_GENERATE_MIPMAP_HINT_SGIS */ + { 14173, 0x00008191 }, /* GL_GENERATE_MIPMAP_SGIS */ + { 14197, 0x00008DDB }, /* GL_GEOMETRY_INPUT_TYPE_ARB */ + { 14224, 0x00008DDC }, /* GL_GEOMETRY_OUTPUT_TYPE_ARB */ + { 14252, 0x00008DD9 }, /* GL_GEOMETRY_SHADER_ARB */ + { 14275, 0x00008DDA }, /* GL_GEOMETRY_VERTICES_OUT_ARB */ + { 14304, 0x00000206 }, /* GL_GEQUAL */ + { 14314, 0x00000204 }, /* GL_GREATER */ + { 14325, 0x00001904 }, /* GL_GREEN */ + { 14334, 0x00000D19 }, /* GL_GREEN_BIAS */ + { 14348, 0x00000D53 }, /* GL_GREEN_BITS */ + { 14362, 0x00000D18 }, /* GL_GREEN_SCALE */ + { 14377, 0x0000140B }, /* GL_HALF_FLOAT */ + { 14391, 0x00008D61 }, /* GL_HALF_FLOAT_OES */ + { 14409, 0x00008DF2 }, /* GL_HIGH_FLOAT */ + { 14423, 0x00008DF5 }, /* GL_HIGH_INT */ + { 14435, 0x00008000 }, /* GL_HINT_BIT */ + { 14447, 0x00008024 }, /* GL_HISTOGRAM */ + { 14460, 0x0000802B }, /* GL_HISTOGRAM_ALPHA_SIZE */ + { 14484, 0x0000802B }, /* GL_HISTOGRAM_ALPHA_SIZE_EXT */ + { 14512, 0x0000802A }, /* GL_HISTOGRAM_BLUE_SIZE */ + { 14535, 0x0000802A }, /* GL_HISTOGRAM_BLUE_SIZE_EXT */ + { 14562, 0x00008024 }, /* GL_HISTOGRAM_EXT */ + { 14579, 0x00008027 }, /* GL_HISTOGRAM_FORMAT */ + { 14599, 0x00008027 }, /* GL_HISTOGRAM_FORMAT_EXT */ + { 14623, 0x00008029 }, /* GL_HISTOGRAM_GREEN_SIZE */ + { 14647, 0x00008029 }, /* GL_HISTOGRAM_GREEN_SIZE_EXT */ + { 14675, 0x0000802C }, /* GL_HISTOGRAM_LUMINANCE_SIZE */ + { 14703, 0x0000802C }, /* GL_HISTOGRAM_LUMINANCE_SIZE_EXT */ + { 14735, 0x00008028 }, /* GL_HISTOGRAM_RED_SIZE */ + { 14757, 0x00008028 }, /* GL_HISTOGRAM_RED_SIZE_EXT */ + { 14783, 0x0000802D }, /* GL_HISTOGRAM_SINK */ + { 14801, 0x0000802D }, /* GL_HISTOGRAM_SINK_EXT */ + { 14823, 0x00008026 }, /* GL_HISTOGRAM_WIDTH */ + { 14842, 0x00008026 }, /* GL_HISTOGRAM_WIDTH_EXT */ + { 14865, 0x0000862A }, /* GL_IDENTITY_NV */ + { 14880, 0x00008150 }, /* GL_IGNORE_BORDER_HP */ + { 14900, 0x00008B9B }, /* GL_IMPLEMENTATION_COLOR_READ_FORMAT */ + { 14936, 0x00008B9B }, /* GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES */ + { 14976, 0x00008B9A }, /* GL_IMPLEMENTATION_COLOR_READ_TYPE */ + { 15010, 0x00008B9A }, /* GL_IMPLEMENTATION_COLOR_READ_TYPE_OES */ + { 15048, 0x00001E02 }, /* GL_INCR */ + { 15056, 0x00008507 }, /* GL_INCR_WRAP */ + { 15069, 0x00008507 }, /* GL_INCR_WRAP_EXT */ + { 15086, 0x00008222 }, /* GL_INDEX */ + { 15095, 0x00008077 }, /* GL_INDEX_ARRAY */ + { 15110, 0x00008899 }, /* GL_INDEX_ARRAY_BUFFER_BINDING */ + { 15140, 0x00008899 }, /* GL_INDEX_ARRAY_BUFFER_BINDING_ARB */ + { 15174, 0x00008091 }, /* GL_INDEX_ARRAY_POINTER */ + { 15197, 0x00008086 }, /* GL_INDEX_ARRAY_STRIDE */ + { 15219, 0x00008085 }, /* GL_INDEX_ARRAY_TYPE */ + { 15239, 0x00000D51 }, /* GL_INDEX_BITS */ + { 15253, 0x00000C20 }, /* GL_INDEX_CLEAR_VALUE */ + { 15274, 0x00000BF1 }, /* GL_INDEX_LOGIC_OP */ + { 15292, 0x00000C30 }, /* GL_INDEX_MODE */ + { 15306, 0x00000D13 }, /* GL_INDEX_OFFSET */ + { 15322, 0x00000D12 }, /* GL_INDEX_SHIFT */ + { 15337, 0x00000C21 }, /* GL_INDEX_WRITEMASK */ + { 15356, 0x00008B84 }, /* GL_INFO_LOG_LENGTH */ + { 15375, 0x00001404 }, /* GL_INT */ + { 15382, 0x00008049 }, /* GL_INTENSITY */ + { 15395, 0x0000804C }, /* GL_INTENSITY12 */ + { 15410, 0x0000804C }, /* GL_INTENSITY12_EXT */ + { 15429, 0x0000804D }, /* GL_INTENSITY16 */ + { 15444, 0x0000804D }, /* GL_INTENSITY16_EXT */ + { 15463, 0x0000804A }, /* GL_INTENSITY4 */ + { 15477, 0x0000804A }, /* GL_INTENSITY4_EXT */ + { 15495, 0x0000804B }, /* GL_INTENSITY8 */ + { 15509, 0x0000804B }, /* GL_INTENSITY8_EXT */ + { 15527, 0x00008049 }, /* GL_INTENSITY_EXT */ + { 15544, 0x00008C8C }, /* GL_INTERLEAVED_ATTRIBS_EXT */ + { 15571, 0x00008575 }, /* GL_INTERPOLATE */ + { 15586, 0x00008575 }, /* GL_INTERPOLATE_ARB */ + { 15605, 0x00008575 }, /* GL_INTERPOLATE_EXT */ + { 15624, 0x00008DF7 }, /* GL_INT_10_10_10_2_OES */ + { 15646, 0x00008B53 }, /* GL_INT_VEC2 */ + { 15658, 0x00008B53 }, /* GL_INT_VEC2_ARB */ + { 15674, 0x00008B54 }, /* GL_INT_VEC3 */ + { 15686, 0x00008B54 }, /* GL_INT_VEC3_ARB */ + { 15702, 0x00008B55 }, /* GL_INT_VEC4 */ + { 15714, 0x00008B55 }, /* GL_INT_VEC4_ARB */ + { 15730, 0x00000500 }, /* GL_INVALID_ENUM */ + { 15746, 0x00000506 }, /* GL_INVALID_FRAMEBUFFER_OPERATION */ + { 15779, 0x00000506 }, /* GL_INVALID_FRAMEBUFFER_OPERATION_EXT */ + { 15816, 0x00000506 }, /* GL_INVALID_FRAMEBUFFER_OPERATION_OES */ + { 15853, 0x00000502 }, /* GL_INVALID_OPERATION */ + { 15874, 0x00000501 }, /* GL_INVALID_VALUE */ + { 15891, 0x0000862B }, /* GL_INVERSE_NV */ + { 15905, 0x0000862D }, /* GL_INVERSE_TRANSPOSE_NV */ + { 15929, 0x0000150A }, /* GL_INVERT */ + { 15939, 0x00001E00 }, /* GL_KEEP */ + { 15947, 0x00008E4E }, /* GL_LAST_VERTEX_CONVENTION */ + { 15973, 0x00008E4E }, /* GL_LAST_VERTEX_CONVENTION_EXT */ + { 16003, 0x00000406 }, /* GL_LEFT */ + { 16011, 0x00000203 }, /* GL_LEQUAL */ + { 16021, 0x00000201 }, /* GL_LESS */ + { 16029, 0x00004000 }, /* GL_LIGHT0 */ + { 16039, 0x00004001 }, /* GL_LIGHT1 */ + { 16049, 0x00004002 }, /* GL_LIGHT2 */ + { 16059, 0x00004003 }, /* GL_LIGHT3 */ + { 16069, 0x00004004 }, /* GL_LIGHT4 */ + { 16079, 0x00004005 }, /* GL_LIGHT5 */ + { 16089, 0x00004006 }, /* GL_LIGHT6 */ + { 16099, 0x00004007 }, /* GL_LIGHT7 */ + { 16109, 0x00000B50 }, /* GL_LIGHTING */ + { 16121, 0x00000040 }, /* GL_LIGHTING_BIT */ + { 16137, 0x00000B53 }, /* GL_LIGHT_MODEL_AMBIENT */ + { 16160, 0x000081F8 }, /* GL_LIGHT_MODEL_COLOR_CONTROL */ + { 16189, 0x000081F8 }, /* GL_LIGHT_MODEL_COLOR_CONTROL_EXT */ + { 16222, 0x00000B51 }, /* GL_LIGHT_MODEL_LOCAL_VIEWER */ + { 16250, 0x00000B52 }, /* GL_LIGHT_MODEL_TWO_SIDE */ + { 16274, 0x00001B01 }, /* GL_LINE */ + { 16282, 0x00002601 }, /* GL_LINEAR */ + { 16292, 0x00001208 }, /* GL_LINEAR_ATTENUATION */ + { 16314, 0x00008170 }, /* GL_LINEAR_CLIPMAP_LINEAR_SGIX */ + { 16344, 0x0000844F }, /* GL_LINEAR_CLIPMAP_NEAREST_SGIX */ + { 16375, 0x00002703 }, /* GL_LINEAR_MIPMAP_LINEAR */ + { 16399, 0x00002701 }, /* GL_LINEAR_MIPMAP_NEAREST */ + { 16424, 0x00000001 }, /* GL_LINES */ + { 16433, 0x0000000A }, /* GL_LINES_ADJACENCY_ARB */ + { 16456, 0x00000004 }, /* GL_LINE_BIT */ + { 16468, 0x00000002 }, /* GL_LINE_LOOP */ + { 16481, 0x00000707 }, /* GL_LINE_RESET_TOKEN */ + { 16501, 0x00000B20 }, /* GL_LINE_SMOOTH */ + { 16516, 0x00000C52 }, /* GL_LINE_SMOOTH_HINT */ + { 16536, 0x00000B24 }, /* GL_LINE_STIPPLE */ + { 16552, 0x00000B25 }, /* GL_LINE_STIPPLE_PATTERN */ + { 16576, 0x00000B26 }, /* GL_LINE_STIPPLE_REPEAT */ + { 16599, 0x00000003 }, /* GL_LINE_STRIP */ + { 16613, 0x0000000B }, /* GL_LINE_STRIP_ADJACENCY_ARB */ + { 16641, 0x00000702 }, /* GL_LINE_TOKEN */ + { 16655, 0x00000B21 }, /* GL_LINE_WIDTH */ + { 16669, 0x00000B23 }, /* GL_LINE_WIDTH_GRANULARITY */ + { 16695, 0x00000B22 }, /* GL_LINE_WIDTH_RANGE */ + { 16715, 0x00008B82 }, /* GL_LINK_STATUS */ + { 16730, 0x00000B32 }, /* GL_LIST_BASE */ + { 16743, 0x00020000 }, /* GL_LIST_BIT */ + { 16755, 0x00000B33 }, /* GL_LIST_INDEX */ + { 16769, 0x00000B30 }, /* GL_LIST_MODE */ + { 16782, 0x00000101 }, /* GL_LOAD */ + { 16790, 0x00000BF1 }, /* GL_LOGIC_OP */ + { 16802, 0x00000BF0 }, /* GL_LOGIC_OP_MODE */ + { 16819, 0x00008CA1 }, /* GL_LOWER_LEFT */ + { 16833, 0x00008DF0 }, /* GL_LOW_FLOAT */ + { 16846, 0x00008DF3 }, /* GL_LOW_INT */ + { 16857, 0x00001909 }, /* GL_LUMINANCE */ + { 16870, 0x00008041 }, /* GL_LUMINANCE12 */ + { 16885, 0x00008047 }, /* GL_LUMINANCE12_ALPHA12 */ + { 16908, 0x00008047 }, /* GL_LUMINANCE12_ALPHA12_EXT */ + { 16935, 0x00008046 }, /* GL_LUMINANCE12_ALPHA4 */ + { 16957, 0x00008046 }, /* GL_LUMINANCE12_ALPHA4_EXT */ + { 16983, 0x00008041 }, /* GL_LUMINANCE12_EXT */ + { 17002, 0x00008042 }, /* GL_LUMINANCE16 */ + { 17017, 0x00008048 }, /* GL_LUMINANCE16_ALPHA16 */ + { 17040, 0x00008048 }, /* GL_LUMINANCE16_ALPHA16_EXT */ + { 17067, 0x00008042 }, /* GL_LUMINANCE16_EXT */ + { 17086, 0x0000803F }, /* GL_LUMINANCE4 */ + { 17100, 0x00008043 }, /* GL_LUMINANCE4_ALPHA4 */ + { 17121, 0x00008043 }, /* GL_LUMINANCE4_ALPHA4_EXT */ + { 17146, 0x0000803F }, /* GL_LUMINANCE4_EXT */ + { 17164, 0x00008044 }, /* GL_LUMINANCE6_ALPHA2 */ + { 17185, 0x00008044 }, /* GL_LUMINANCE6_ALPHA2_EXT */ + { 17210, 0x00008040 }, /* GL_LUMINANCE8 */ + { 17224, 0x00008045 }, /* GL_LUMINANCE8_ALPHA8 */ + { 17245, 0x00008045 }, /* GL_LUMINANCE8_ALPHA8_EXT */ + { 17270, 0x00008040 }, /* GL_LUMINANCE8_EXT */ + { 17288, 0x0000190A }, /* GL_LUMINANCE_ALPHA */ + { 17307, 0x00000D90 }, /* GL_MAP1_COLOR_4 */ + { 17323, 0x00000DD0 }, /* GL_MAP1_GRID_DOMAIN */ + { 17343, 0x00000DD1 }, /* GL_MAP1_GRID_SEGMENTS */ + { 17365, 0x00000D91 }, /* GL_MAP1_INDEX */ + { 17379, 0x00000D92 }, /* GL_MAP1_NORMAL */ + { 17394, 0x00000D93 }, /* GL_MAP1_TEXTURE_COORD_1 */ + { 17418, 0x00000D94 }, /* GL_MAP1_TEXTURE_COORD_2 */ + { 17442, 0x00000D95 }, /* GL_MAP1_TEXTURE_COORD_3 */ + { 17466, 0x00000D96 }, /* GL_MAP1_TEXTURE_COORD_4 */ + { 17490, 0x00000D97 }, /* GL_MAP1_VERTEX_3 */ + { 17507, 0x00000D98 }, /* GL_MAP1_VERTEX_4 */ + { 17524, 0x00008660 }, /* GL_MAP1_VERTEX_ATTRIB0_4_NV */ + { 17552, 0x0000866A }, /* GL_MAP1_VERTEX_ATTRIB10_4_NV */ + { 17581, 0x0000866B }, /* GL_MAP1_VERTEX_ATTRIB11_4_NV */ + { 17610, 0x0000866C }, /* GL_MAP1_VERTEX_ATTRIB12_4_NV */ + { 17639, 0x0000866D }, /* GL_MAP1_VERTEX_ATTRIB13_4_NV */ + { 17668, 0x0000866E }, /* GL_MAP1_VERTEX_ATTRIB14_4_NV */ + { 17697, 0x0000866F }, /* GL_MAP1_VERTEX_ATTRIB15_4_NV */ + { 17726, 0x00008661 }, /* GL_MAP1_VERTEX_ATTRIB1_4_NV */ + { 17754, 0x00008662 }, /* GL_MAP1_VERTEX_ATTRIB2_4_NV */ + { 17782, 0x00008663 }, /* GL_MAP1_VERTEX_ATTRIB3_4_NV */ + { 17810, 0x00008664 }, /* GL_MAP1_VERTEX_ATTRIB4_4_NV */ + { 17838, 0x00008665 }, /* GL_MAP1_VERTEX_ATTRIB5_4_NV */ + { 17866, 0x00008666 }, /* GL_MAP1_VERTEX_ATTRIB6_4_NV */ + { 17894, 0x00008667 }, /* GL_MAP1_VERTEX_ATTRIB7_4_NV */ + { 17922, 0x00008668 }, /* GL_MAP1_VERTEX_ATTRIB8_4_NV */ + { 17950, 0x00008669 }, /* GL_MAP1_VERTEX_ATTRIB9_4_NV */ + { 17978, 0x00000DB0 }, /* GL_MAP2_COLOR_4 */ + { 17994, 0x00000DD2 }, /* GL_MAP2_GRID_DOMAIN */ + { 18014, 0x00000DD3 }, /* GL_MAP2_GRID_SEGMENTS */ + { 18036, 0x00000DB1 }, /* GL_MAP2_INDEX */ + { 18050, 0x00000DB2 }, /* GL_MAP2_NORMAL */ + { 18065, 0x00000DB3 }, /* GL_MAP2_TEXTURE_COORD_1 */ + { 18089, 0x00000DB4 }, /* GL_MAP2_TEXTURE_COORD_2 */ + { 18113, 0x00000DB5 }, /* GL_MAP2_TEXTURE_COORD_3 */ + { 18137, 0x00000DB6 }, /* GL_MAP2_TEXTURE_COORD_4 */ + { 18161, 0x00000DB7 }, /* GL_MAP2_VERTEX_3 */ + { 18178, 0x00000DB8 }, /* GL_MAP2_VERTEX_4 */ + { 18195, 0x00008670 }, /* GL_MAP2_VERTEX_ATTRIB0_4_NV */ + { 18223, 0x0000867A }, /* GL_MAP2_VERTEX_ATTRIB10_4_NV */ + { 18252, 0x0000867B }, /* GL_MAP2_VERTEX_ATTRIB11_4_NV */ + { 18281, 0x0000867C }, /* GL_MAP2_VERTEX_ATTRIB12_4_NV */ + { 18310, 0x0000867D }, /* GL_MAP2_VERTEX_ATTRIB13_4_NV */ + { 18339, 0x0000867E }, /* GL_MAP2_VERTEX_ATTRIB14_4_NV */ + { 18368, 0x0000867F }, /* GL_MAP2_VERTEX_ATTRIB15_4_NV */ + { 18397, 0x00008671 }, /* GL_MAP2_VERTEX_ATTRIB1_4_NV */ + { 18425, 0x00008672 }, /* GL_MAP2_VERTEX_ATTRIB2_4_NV */ + { 18453, 0x00008673 }, /* GL_MAP2_VERTEX_ATTRIB3_4_NV */ + { 18481, 0x00008674 }, /* GL_MAP2_VERTEX_ATTRIB4_4_NV */ + { 18509, 0x00008675 }, /* GL_MAP2_VERTEX_ATTRIB5_4_NV */ + { 18537, 0x00008676 }, /* GL_MAP2_VERTEX_ATTRIB6_4_NV */ + { 18565, 0x00008677 }, /* GL_MAP2_VERTEX_ATTRIB7_4_NV */ + { 18593, 0x00008678 }, /* GL_MAP2_VERTEX_ATTRIB8_4_NV */ + { 18621, 0x00008679 }, /* GL_MAP2_VERTEX_ATTRIB9_4_NV */ + { 18649, 0x00000D10 }, /* GL_MAP_COLOR */ + { 18662, 0x00000010 }, /* GL_MAP_FLUSH_EXPLICIT_BIT */ + { 18688, 0x00000008 }, /* GL_MAP_INVALIDATE_BUFFER_BIT */ + { 18717, 0x00000004 }, /* GL_MAP_INVALIDATE_RANGE_BIT */ + { 18745, 0x00000001 }, /* GL_MAP_READ_BIT */ + { 18761, 0x00000D11 }, /* GL_MAP_STENCIL */ + { 18776, 0x00000020 }, /* GL_MAP_UNSYNCHRONIZED_BIT */ + { 18802, 0x00000002 }, /* GL_MAP_WRITE_BIT */ + { 18819, 0x000088C0 }, /* GL_MATRIX0_ARB */ + { 18834, 0x00008630 }, /* GL_MATRIX0_NV */ + { 18848, 0x000088CA }, /* GL_MATRIX10_ARB */ + { 18864, 0x000088CB }, /* GL_MATRIX11_ARB */ + { 18880, 0x000088CC }, /* GL_MATRIX12_ARB */ + { 18896, 0x000088CD }, /* GL_MATRIX13_ARB */ + { 18912, 0x000088CE }, /* GL_MATRIX14_ARB */ + { 18928, 0x000088CF }, /* GL_MATRIX15_ARB */ + { 18944, 0x000088D0 }, /* GL_MATRIX16_ARB */ + { 18960, 0x000088D1 }, /* GL_MATRIX17_ARB */ + { 18976, 0x000088D2 }, /* GL_MATRIX18_ARB */ + { 18992, 0x000088D3 }, /* GL_MATRIX19_ARB */ + { 19008, 0x000088C1 }, /* GL_MATRIX1_ARB */ + { 19023, 0x00008631 }, /* GL_MATRIX1_NV */ + { 19037, 0x000088D4 }, /* GL_MATRIX20_ARB */ + { 19053, 0x000088D5 }, /* GL_MATRIX21_ARB */ + { 19069, 0x000088D6 }, /* GL_MATRIX22_ARB */ + { 19085, 0x000088D7 }, /* GL_MATRIX23_ARB */ + { 19101, 0x000088D8 }, /* GL_MATRIX24_ARB */ + { 19117, 0x000088D9 }, /* GL_MATRIX25_ARB */ + { 19133, 0x000088DA }, /* GL_MATRIX26_ARB */ + { 19149, 0x000088DB }, /* GL_MATRIX27_ARB */ + { 19165, 0x000088DC }, /* GL_MATRIX28_ARB */ + { 19181, 0x000088DD }, /* GL_MATRIX29_ARB */ + { 19197, 0x000088C2 }, /* GL_MATRIX2_ARB */ + { 19212, 0x00008632 }, /* GL_MATRIX2_NV */ + { 19226, 0x000088DE }, /* GL_MATRIX30_ARB */ + { 19242, 0x000088DF }, /* GL_MATRIX31_ARB */ + { 19258, 0x000088C3 }, /* GL_MATRIX3_ARB */ + { 19273, 0x00008633 }, /* GL_MATRIX3_NV */ + { 19287, 0x000088C4 }, /* GL_MATRIX4_ARB */ + { 19302, 0x00008634 }, /* GL_MATRIX4_NV */ + { 19316, 0x000088C5 }, /* GL_MATRIX5_ARB */ + { 19331, 0x00008635 }, /* GL_MATRIX5_NV */ + { 19345, 0x000088C6 }, /* GL_MATRIX6_ARB */ + { 19360, 0x00008636 }, /* GL_MATRIX6_NV */ + { 19374, 0x000088C7 }, /* GL_MATRIX7_ARB */ + { 19389, 0x00008637 }, /* GL_MATRIX7_NV */ + { 19403, 0x000088C8 }, /* GL_MATRIX8_ARB */ + { 19418, 0x000088C9 }, /* GL_MATRIX9_ARB */ + { 19433, 0x00008844 }, /* GL_MATRIX_INDEX_ARRAY_ARB */ + { 19459, 0x00008B9E }, /* GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES */ + { 19500, 0x00008844 }, /* GL_MATRIX_INDEX_ARRAY_OES */ + { 19526, 0x00008849 }, /* GL_MATRIX_INDEX_ARRAY_POINTER_ARB */ + { 19560, 0x00008849 }, /* GL_MATRIX_INDEX_ARRAY_POINTER_OES */ + { 19594, 0x00008846 }, /* GL_MATRIX_INDEX_ARRAY_SIZE_ARB */ + { 19625, 0x00008846 }, /* GL_MATRIX_INDEX_ARRAY_SIZE_OES */ + { 19656, 0x00008848 }, /* GL_MATRIX_INDEX_ARRAY_STRIDE_ARB */ + { 19689, 0x00008848 }, /* GL_MATRIX_INDEX_ARRAY_STRIDE_OES */ + { 19722, 0x00008847 }, /* GL_MATRIX_INDEX_ARRAY_TYPE_ARB */ + { 19753, 0x00008847 }, /* GL_MATRIX_INDEX_ARRAY_TYPE_OES */ + { 19784, 0x00000BA0 }, /* GL_MATRIX_MODE */ + { 19799, 0x00008840 }, /* GL_MATRIX_PALETTE_ARB */ + { 19821, 0x00008840 }, /* GL_MATRIX_PALETTE_OES */ + { 19843, 0x00008008 }, /* GL_MAX */ + { 19850, 0x00008073 }, /* GL_MAX_3D_TEXTURE_SIZE */ + { 19873, 0x00008073 }, /* GL_MAX_3D_TEXTURE_SIZE_OES */ + { 19900, 0x000088FF }, /* GL_MAX_ARRAY_TEXTURE_LAYERS_EXT */ + { 19932, 0x00000D35 }, /* GL_MAX_ATTRIB_STACK_DEPTH */ + { 19958, 0x00000D3B }, /* GL_MAX_CLIENT_ATTRIB_STACK_DEPTH */ + { 19991, 0x00008177 }, /* GL_MAX_CLIPMAP_DEPTH_SGIX */ + { 20017, 0x00008178 }, /* GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX */ + { 20051, 0x00000D32 }, /* GL_MAX_CLIP_PLANES */ + { 20070, 0x00008CDF }, /* GL_MAX_COLOR_ATTACHMENTS */ + { 20095, 0x00008CDF }, /* GL_MAX_COLOR_ATTACHMENTS_EXT */ + { 20124, 0x000080B3 }, /* GL_MAX_COLOR_MATRIX_STACK_DEPTH */ + { 20156, 0x000080B3 }, /* GL_MAX_COLOR_MATRIX_STACK_DEPTH_SGI */ + { 20192, 0x00008B4D }, /* GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS */ + { 20228, 0x00008B4D }, /* GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS_ARB */ + { 20268, 0x0000801B }, /* GL_MAX_CONVOLUTION_HEIGHT */ + { 20294, 0x0000801B }, /* GL_MAX_CONVOLUTION_HEIGHT_EXT */ + { 20324, 0x0000801A }, /* GL_MAX_CONVOLUTION_WIDTH */ + { 20349, 0x0000801A }, /* GL_MAX_CONVOLUTION_WIDTH_EXT */ + { 20378, 0x0000851C }, /* GL_MAX_CUBE_MAP_TEXTURE_SIZE */ + { 20407, 0x0000851C }, /* GL_MAX_CUBE_MAP_TEXTURE_SIZE_ARB */ + { 20440, 0x0000851C }, /* GL_MAX_CUBE_MAP_TEXTURE_SIZE_OES */ + { 20473, 0x00008824 }, /* GL_MAX_DRAW_BUFFERS */ + { 20493, 0x00008824 }, /* GL_MAX_DRAW_BUFFERS_ARB */ + { 20517, 0x00008824 }, /* GL_MAX_DRAW_BUFFERS_ATI */ + { 20541, 0x000080E9 }, /* GL_MAX_ELEMENTS_INDICES */ + { 20565, 0x000080E8 }, /* GL_MAX_ELEMENTS_VERTICES */ + { 20590, 0x00000D30 }, /* GL_MAX_EVAL_ORDER */ + { 20608, 0x00008008 }, /* GL_MAX_EXT */ + { 20619, 0x00008B49 }, /* GL_MAX_FRAGMENT_UNIFORM_COMPONENTS */ + { 20654, 0x00008B49 }, /* GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB */ + { 20693, 0x00008DFD }, /* GL_MAX_FRAGMENT_UNIFORM_VECTORS */ + { 20725, 0x00008DE0 }, /* GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB */ + { 20761, 0x00008C29 }, /* GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB */ + { 20801, 0x00008DE1 }, /* GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB */ + { 20845, 0x00008DDF }, /* GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB */ + { 20884, 0x00008DDD }, /* GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB */ + { 20923, 0x00000D31 }, /* GL_MAX_LIGHTS */ + { 20937, 0x00000B31 }, /* GL_MAX_LIST_NESTING */ + { 20957, 0x00008841 }, /* GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB */ + { 20995, 0x00000D36 }, /* GL_MAX_MODELVIEW_STACK_DEPTH */ + { 21024, 0x00000D37 }, /* GL_MAX_NAME_STACK_DEPTH */ + { 21048, 0x00008842 }, /* GL_MAX_PALETTE_MATRICES_ARB */ + { 21076, 0x00008842 }, /* GL_MAX_PALETTE_MATRICES_OES */ + { 21104, 0x00000D34 }, /* GL_MAX_PIXEL_MAP_TABLE */ + { 21127, 0x000088B1 }, /* GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB */ + { 21164, 0x0000880B }, /* GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB */ + { 21200, 0x000088AD }, /* GL_MAX_PROGRAM_ATTRIBS_ARB */ + { 21227, 0x000088F5 }, /* GL_MAX_PROGRAM_CALL_DEPTH_NV */ + { 21256, 0x000088B5 }, /* GL_MAX_PROGRAM_ENV_PARAMETERS_ARB */ + { 21290, 0x000088F4 }, /* GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV */ + { 21326, 0x000088F6 }, /* GL_MAX_PROGRAM_IF_DEPTH_NV */ + { 21353, 0x000088A1 }, /* GL_MAX_PROGRAM_INSTRUCTIONS_ARB */ + { 21385, 0x000088B4 }, /* GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB */ + { 21421, 0x000088F8 }, /* GL_MAX_PROGRAM_LOOP_COUNT_NV */ + { 21450, 0x000088F7 }, /* GL_MAX_PROGRAM_LOOP_DEPTH_NV */ + { 21479, 0x0000862F }, /* GL_MAX_PROGRAM_MATRICES_ARB */ + { 21507, 0x0000862E }, /* GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB */ + { 21545, 0x000088B3 }, /* GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ + { 21589, 0x0000880E }, /* GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ + { 21632, 0x000088AF }, /* GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB */ + { 21666, 0x000088A3 }, /* GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ + { 21705, 0x000088AB }, /* GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB */ + { 21742, 0x000088A7 }, /* GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB */ + { 21780, 0x00008810 }, /* GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ + { 21823, 0x0000880F }, /* GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ + { 21866, 0x000088A9 }, /* GL_MAX_PROGRAM_PARAMETERS_ARB */ + { 21896, 0x000088A5 }, /* GL_MAX_PROGRAM_TEMPORARIES_ARB */ + { 21927, 0x0000880D }, /* GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB */ + { 21963, 0x0000880C }, /* GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB */ + { 21999, 0x00000D38 }, /* GL_MAX_PROJECTION_STACK_DEPTH */ + { 22029, 0x000084F8 }, /* GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB */ + { 22063, 0x000084F8 }, /* GL_MAX_RECTANGLE_TEXTURE_SIZE_NV */ + { 22096, 0x000084E8 }, /* GL_MAX_RENDERBUFFER_SIZE */ + { 22121, 0x000084E8 }, /* GL_MAX_RENDERBUFFER_SIZE_EXT */ + { 22150, 0x000084E8 }, /* GL_MAX_RENDERBUFFER_SIZE_OES */ + { 22179, 0x00008D57 }, /* GL_MAX_SAMPLES */ + { 22194, 0x00008D57 }, /* GL_MAX_SAMPLES_EXT */ + { 22213, 0x00009111 }, /* GL_MAX_SERVER_WAIT_TIMEOUT */ + { 22240, 0x00008504 }, /* GL_MAX_SHININESS_NV */ + { 22260, 0x00008505 }, /* GL_MAX_SPOT_EXPONENT_NV */ + { 22284, 0x00008871 }, /* GL_MAX_TEXTURE_COORDS */ + { 22306, 0x00008871 }, /* GL_MAX_TEXTURE_COORDS_ARB */ + { 22332, 0x00008872 }, /* GL_MAX_TEXTURE_IMAGE_UNITS */ + { 22359, 0x00008872 }, /* GL_MAX_TEXTURE_IMAGE_UNITS_ARB */ + { 22390, 0x000084FD }, /* GL_MAX_TEXTURE_LOD_BIAS */ + { 22414, 0x000084FD }, /* GL_MAX_TEXTURE_LOD_BIAS_EXT */ + { 22442, 0x000084FF }, /* GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT */ + { 22476, 0x00000D33 }, /* GL_MAX_TEXTURE_SIZE */ + { 22496, 0x00000D39 }, /* GL_MAX_TEXTURE_STACK_DEPTH */ + { 22523, 0x000084E2 }, /* GL_MAX_TEXTURE_UNITS */ + { 22544, 0x000084E2 }, /* GL_MAX_TEXTURE_UNITS_ARB */ + { 22569, 0x0000862F }, /* GL_MAX_TRACK_MATRICES_NV */ + { 22594, 0x0000862E }, /* GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV */ + { 22629, 0x00008C8A }, /* GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT */ + { 22682, 0x00008C8B }, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT */ + { 22729, 0x00008C80 }, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT */ + { 22779, 0x00008B4B }, /* GL_MAX_VARYING_COMPONENTS */ + { 22805, 0x00008B4B }, /* GL_MAX_VARYING_FLOATS */ + { 22827, 0x00008B4B }, /* GL_MAX_VARYING_FLOATS_ARB */ + { 22853, 0x00008DFC }, /* GL_MAX_VARYING_VECTORS */ + { 22876, 0x00008869 }, /* GL_MAX_VERTEX_ATTRIBS */ + { 22898, 0x00008869 }, /* GL_MAX_VERTEX_ATTRIBS_ARB */ + { 22924, 0x00008B4C }, /* GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS */ + { 22958, 0x00008B4C }, /* GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB */ + { 22996, 0x00008B4A }, /* GL_MAX_VERTEX_UNIFORM_COMPONENTS */ + { 23029, 0x00008B4A }, /* GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB */ + { 23066, 0x00008DFB }, /* GL_MAX_VERTEX_UNIFORM_VECTORS */ + { 23096, 0x000086A4 }, /* GL_MAX_VERTEX_UNITS_ARB */ + { 23120, 0x000086A4 }, /* GL_MAX_VERTEX_UNITS_OES */ + { 23144, 0x00008DDE }, /* GL_MAX_VERTEX_VARYING_COMPONENTS_ARB */ + { 23181, 0x00000D3A }, /* GL_MAX_VIEWPORT_DIMS */ + { 23202, 0x00008DF1 }, /* GL_MEDIUM_FLOAT */ + { 23218, 0x00008DF4 }, /* GL_MEDIUM_INT */ + { 23232, 0x00008007 }, /* GL_MIN */ + { 23239, 0x0000802E }, /* GL_MINMAX */ + { 23249, 0x0000802E }, /* GL_MINMAX_EXT */ + { 23263, 0x0000802F }, /* GL_MINMAX_FORMAT */ + { 23280, 0x0000802F }, /* GL_MINMAX_FORMAT_EXT */ + { 23301, 0x00008030 }, /* GL_MINMAX_SINK */ + { 23316, 0x00008030 }, /* GL_MINMAX_SINK_EXT */ + { 23335, 0x00008007 }, /* GL_MIN_EXT */ + { 23346, 0x00008370 }, /* GL_MIRRORED_REPEAT */ + { 23365, 0x00008370 }, /* GL_MIRRORED_REPEAT_ARB */ + { 23388, 0x00008370 }, /* GL_MIRRORED_REPEAT_IBM */ + { 23411, 0x00008742 }, /* GL_MIRROR_CLAMP_ATI */ + { 23431, 0x00008742 }, /* GL_MIRROR_CLAMP_EXT */ + { 23451, 0x00008912 }, /* GL_MIRROR_CLAMP_TO_BORDER_EXT */ + { 23481, 0x00008743 }, /* GL_MIRROR_CLAMP_TO_EDGE_ATI */ + { 23509, 0x00008743 }, /* GL_MIRROR_CLAMP_TO_EDGE_EXT */ + { 23537, 0x00001700 }, /* GL_MODELVIEW */ + { 23550, 0x00001700 }, /* GL_MODELVIEW0_ARB */ + { 23568, 0x0000872A }, /* GL_MODELVIEW10_ARB */ + { 23587, 0x0000872B }, /* GL_MODELVIEW11_ARB */ + { 23606, 0x0000872C }, /* GL_MODELVIEW12_ARB */ + { 23625, 0x0000872D }, /* GL_MODELVIEW13_ARB */ + { 23644, 0x0000872E }, /* GL_MODELVIEW14_ARB */ + { 23663, 0x0000872F }, /* GL_MODELVIEW15_ARB */ + { 23682, 0x00008730 }, /* GL_MODELVIEW16_ARB */ + { 23701, 0x00008731 }, /* GL_MODELVIEW17_ARB */ + { 23720, 0x00008732 }, /* GL_MODELVIEW18_ARB */ + { 23739, 0x00008733 }, /* GL_MODELVIEW19_ARB */ + { 23758, 0x0000850A }, /* GL_MODELVIEW1_ARB */ + { 23776, 0x00008734 }, /* GL_MODELVIEW20_ARB */ + { 23795, 0x00008735 }, /* GL_MODELVIEW21_ARB */ + { 23814, 0x00008736 }, /* GL_MODELVIEW22_ARB */ + { 23833, 0x00008737 }, /* GL_MODELVIEW23_ARB */ + { 23852, 0x00008738 }, /* GL_MODELVIEW24_ARB */ + { 23871, 0x00008739 }, /* GL_MODELVIEW25_ARB */ + { 23890, 0x0000873A }, /* GL_MODELVIEW26_ARB */ + { 23909, 0x0000873B }, /* GL_MODELVIEW27_ARB */ + { 23928, 0x0000873C }, /* GL_MODELVIEW28_ARB */ + { 23947, 0x0000873D }, /* GL_MODELVIEW29_ARB */ + { 23966, 0x00008722 }, /* GL_MODELVIEW2_ARB */ + { 23984, 0x0000873E }, /* GL_MODELVIEW30_ARB */ + { 24003, 0x0000873F }, /* GL_MODELVIEW31_ARB */ + { 24022, 0x00008723 }, /* GL_MODELVIEW3_ARB */ + { 24040, 0x00008724 }, /* GL_MODELVIEW4_ARB */ + { 24058, 0x00008725 }, /* GL_MODELVIEW5_ARB */ + { 24076, 0x00008726 }, /* GL_MODELVIEW6_ARB */ + { 24094, 0x00008727 }, /* GL_MODELVIEW7_ARB */ + { 24112, 0x00008728 }, /* GL_MODELVIEW8_ARB */ + { 24130, 0x00008729 }, /* GL_MODELVIEW9_ARB */ + { 24148, 0x00000BA6 }, /* GL_MODELVIEW_MATRIX */ + { 24168, 0x0000898D }, /* GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES */ + { 24210, 0x00008629 }, /* GL_MODELVIEW_PROJECTION_NV */ + { 24237, 0x00000BA3 }, /* GL_MODELVIEW_STACK_DEPTH */ + { 24262, 0x00002100 }, /* GL_MODULATE */ + { 24274, 0x00008744 }, /* GL_MODULATE_ADD_ATI */ + { 24294, 0x00008745 }, /* GL_MODULATE_SIGNED_ADD_ATI */ + { 24321, 0x00008746 }, /* GL_MODULATE_SUBTRACT_ATI */ + { 24346, 0x00000103 }, /* GL_MULT */ + { 24354, 0x0000809D }, /* GL_MULTISAMPLE */ + { 24369, 0x000086B2 }, /* GL_MULTISAMPLE_3DFX */ + { 24389, 0x0000809D }, /* GL_MULTISAMPLE_ARB */ + { 24408, 0x20000000 }, /* GL_MULTISAMPLE_BIT */ + { 24427, 0x20000000 }, /* GL_MULTISAMPLE_BIT_3DFX */ + { 24451, 0x20000000 }, /* GL_MULTISAMPLE_BIT_ARB */ + { 24474, 0x00008534 }, /* GL_MULTISAMPLE_FILTER_HINT_NV */ + { 24504, 0x00002A25 }, /* GL_N3F_V3F */ + { 24515, 0x00000D70 }, /* GL_NAME_STACK_DEPTH */ + { 24535, 0x0000150E }, /* GL_NAND */ + { 24543, 0x00002600 }, /* GL_NEAREST */ + { 24554, 0x0000844E }, /* GL_NEAREST_CLIPMAP_LINEAR_SGIX */ + { 24585, 0x0000844D }, /* GL_NEAREST_CLIPMAP_NEAREST_SGIX */ + { 24617, 0x00002702 }, /* GL_NEAREST_MIPMAP_LINEAR */ + { 24642, 0x00002700 }, /* GL_NEAREST_MIPMAP_NEAREST */ + { 24668, 0x00000200 }, /* GL_NEVER */ + { 24677, 0x00001102 }, /* GL_NICEST */ + { 24687, 0x00000000 }, /* GL_NONE */ + { 24695, 0x00000000 }, /* GL_NONE_OES */ + { 24707, 0x00001505 }, /* GL_NOOP */ + { 24715, 0x00001508 }, /* GL_NOR */ + { 24722, 0x00000BA1 }, /* GL_NORMALIZE */ + { 24735, 0x00008075 }, /* GL_NORMAL_ARRAY */ + { 24751, 0x00008897 }, /* GL_NORMAL_ARRAY_BUFFER_BINDING */ + { 24782, 0x00008897 }, /* GL_NORMAL_ARRAY_BUFFER_BINDING_ARB */ + { 24817, 0x0000808F }, /* GL_NORMAL_ARRAY_POINTER */ + { 24841, 0x0000807F }, /* GL_NORMAL_ARRAY_STRIDE */ + { 24864, 0x0000807E }, /* GL_NORMAL_ARRAY_TYPE */ + { 24885, 0x00008511 }, /* GL_NORMAL_MAP */ + { 24899, 0x00008511 }, /* GL_NORMAL_MAP_ARB */ + { 24917, 0x00008511 }, /* GL_NORMAL_MAP_NV */ + { 24934, 0x00008511 }, /* GL_NORMAL_MAP_OES */ + { 24952, 0x00000205 }, /* GL_NOTEQUAL */ + { 24964, 0x00000000 }, /* GL_NO_ERROR */ + { 24976, 0x000086A2 }, /* GL_NUM_COMPRESSED_TEXTURE_FORMATS */ + { 25010, 0x000086A2 }, /* GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB */ + { 25048, 0x000087FE }, /* GL_NUM_PROGRAM_BINARY_FORMATS_OES */ + { 25082, 0x00008DF9 }, /* GL_NUM_SHADER_BINARY_FORMATS */ + { 25111, 0x00008B89 }, /* GL_OBJECT_ACTIVE_ATTRIBUTES_ARB */ + { 25143, 0x00008B8A }, /* GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB */ + { 25185, 0x00008B86 }, /* GL_OBJECT_ACTIVE_UNIFORMS_ARB */ + { 25215, 0x00008B87 }, /* GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB */ + { 25255, 0x00008B85 }, /* GL_OBJECT_ATTACHED_OBJECTS_ARB */ + { 25286, 0x00008B81 }, /* GL_OBJECT_COMPILE_STATUS_ARB */ + { 25315, 0x00008B80 }, /* GL_OBJECT_DELETE_STATUS_ARB */ + { 25343, 0x00008B84 }, /* GL_OBJECT_INFO_LOG_LENGTH_ARB */ + { 25373, 0x00002401 }, /* GL_OBJECT_LINEAR */ + { 25390, 0x00008B82 }, /* GL_OBJECT_LINK_STATUS_ARB */ + { 25416, 0x00002501 }, /* GL_OBJECT_PLANE */ + { 25432, 0x00008B88 }, /* GL_OBJECT_SHADER_SOURCE_LENGTH_ARB */ + { 25467, 0x00008B4F }, /* GL_OBJECT_SUBTYPE_ARB */ + { 25489, 0x00009112 }, /* GL_OBJECT_TYPE */ + { 25504, 0x00008B4E }, /* GL_OBJECT_TYPE_ARB */ + { 25523, 0x00008B83 }, /* GL_OBJECT_VALIDATE_STATUS_ARB */ + { 25553, 0x00008165 }, /* GL_OCCLUSION_TEST_HP */ + { 25574, 0x00008166 }, /* GL_OCCLUSION_TEST_RESULT_HP */ + { 25602, 0x00000001 }, /* GL_ONE */ + { 25609, 0x00008004 }, /* GL_ONE_MINUS_CONSTANT_ALPHA */ + { 25637, 0x00008004 }, /* GL_ONE_MINUS_CONSTANT_ALPHA_EXT */ + { 25669, 0x00008002 }, /* GL_ONE_MINUS_CONSTANT_COLOR */ + { 25697, 0x00008002 }, /* GL_ONE_MINUS_CONSTANT_COLOR_EXT */ + { 25729, 0x00000305 }, /* GL_ONE_MINUS_DST_ALPHA */ + { 25752, 0x00000307 }, /* GL_ONE_MINUS_DST_COLOR */ + { 25775, 0x00000303 }, /* GL_ONE_MINUS_SRC_ALPHA */ + { 25798, 0x00000301 }, /* GL_ONE_MINUS_SRC_COLOR */ + { 25821, 0x00008598 }, /* GL_OPERAND0_ALPHA */ + { 25839, 0x00008598 }, /* GL_OPERAND0_ALPHA_ARB */ + { 25861, 0x00008598 }, /* GL_OPERAND0_ALPHA_EXT */ + { 25883, 0x00008590 }, /* GL_OPERAND0_RGB */ + { 25899, 0x00008590 }, /* GL_OPERAND0_RGB_ARB */ + { 25919, 0x00008590 }, /* GL_OPERAND0_RGB_EXT */ + { 25939, 0x00008599 }, /* GL_OPERAND1_ALPHA */ + { 25957, 0x00008599 }, /* GL_OPERAND1_ALPHA_ARB */ + { 25979, 0x00008599 }, /* GL_OPERAND1_ALPHA_EXT */ + { 26001, 0x00008591 }, /* GL_OPERAND1_RGB */ + { 26017, 0x00008591 }, /* GL_OPERAND1_RGB_ARB */ + { 26037, 0x00008591 }, /* GL_OPERAND1_RGB_EXT */ + { 26057, 0x0000859A }, /* GL_OPERAND2_ALPHA */ + { 26075, 0x0000859A }, /* GL_OPERAND2_ALPHA_ARB */ + { 26097, 0x0000859A }, /* GL_OPERAND2_ALPHA_EXT */ + { 26119, 0x00008592 }, /* GL_OPERAND2_RGB */ + { 26135, 0x00008592 }, /* GL_OPERAND2_RGB_ARB */ + { 26155, 0x00008592 }, /* GL_OPERAND2_RGB_EXT */ + { 26175, 0x0000859B }, /* GL_OPERAND3_ALPHA_NV */ + { 26196, 0x00008593 }, /* GL_OPERAND3_RGB_NV */ + { 26215, 0x00001507 }, /* GL_OR */ + { 26221, 0x00000A01 }, /* GL_ORDER */ + { 26230, 0x0000150D }, /* GL_OR_INVERTED */ + { 26245, 0x0000150B }, /* GL_OR_REVERSE */ + { 26259, 0x00000505 }, /* GL_OUT_OF_MEMORY */ + { 26276, 0x00000D05 }, /* GL_PACK_ALIGNMENT */ + { 26294, 0x0000806C }, /* GL_PACK_IMAGE_HEIGHT */ + { 26315, 0x00008758 }, /* GL_PACK_INVERT_MESA */ + { 26335, 0x00000D01 }, /* GL_PACK_LSB_FIRST */ + { 26353, 0x00000D02 }, /* GL_PACK_ROW_LENGTH */ + { 26372, 0x0000806B }, /* GL_PACK_SKIP_IMAGES */ + { 26392, 0x00000D04 }, /* GL_PACK_SKIP_PIXELS */ + { 26412, 0x00000D03 }, /* GL_PACK_SKIP_ROWS */ + { 26430, 0x00000D00 }, /* GL_PACK_SWAP_BYTES */ + { 26449, 0x00008B92 }, /* GL_PALETTE4_R5_G6_B5_OES */ + { 26474, 0x00008B94 }, /* GL_PALETTE4_RGB5_A1_OES */ + { 26498, 0x00008B90 }, /* GL_PALETTE4_RGB8_OES */ + { 26519, 0x00008B93 }, /* GL_PALETTE4_RGBA4_OES */ + { 26541, 0x00008B91 }, /* GL_PALETTE4_RGBA8_OES */ + { 26563, 0x00008B97 }, /* GL_PALETTE8_R5_G6_B5_OES */ + { 26588, 0x00008B99 }, /* GL_PALETTE8_RGB5_A1_OES */ + { 26612, 0x00008B95 }, /* GL_PALETTE8_RGB8_OES */ + { 26633, 0x00008B98 }, /* GL_PALETTE8_RGBA4_OES */ + { 26655, 0x00008B96 }, /* GL_PALETTE8_RGBA8_OES */ + { 26677, 0x00000700 }, /* GL_PASS_THROUGH_TOKEN */ + { 26699, 0x00000C50 }, /* GL_PERSPECTIVE_CORRECTION_HINT */ + { 26730, 0x00000C79 }, /* GL_PIXEL_MAP_A_TO_A */ + { 26750, 0x00000CB9 }, /* GL_PIXEL_MAP_A_TO_A_SIZE */ + { 26775, 0x00000C78 }, /* GL_PIXEL_MAP_B_TO_B */ + { 26795, 0x00000CB8 }, /* GL_PIXEL_MAP_B_TO_B_SIZE */ + { 26820, 0x00000C77 }, /* GL_PIXEL_MAP_G_TO_G */ + { 26840, 0x00000CB7 }, /* GL_PIXEL_MAP_G_TO_G_SIZE */ + { 26865, 0x00000C75 }, /* GL_PIXEL_MAP_I_TO_A */ + { 26885, 0x00000CB5 }, /* GL_PIXEL_MAP_I_TO_A_SIZE */ + { 26910, 0x00000C74 }, /* GL_PIXEL_MAP_I_TO_B */ + { 26930, 0x00000CB4 }, /* GL_PIXEL_MAP_I_TO_B_SIZE */ + { 26955, 0x00000C73 }, /* GL_PIXEL_MAP_I_TO_G */ + { 26975, 0x00000CB3 }, /* GL_PIXEL_MAP_I_TO_G_SIZE */ + { 27000, 0x00000C70 }, /* GL_PIXEL_MAP_I_TO_I */ + { 27020, 0x00000CB0 }, /* GL_PIXEL_MAP_I_TO_I_SIZE */ + { 27045, 0x00000C72 }, /* GL_PIXEL_MAP_I_TO_R */ + { 27065, 0x00000CB2 }, /* GL_PIXEL_MAP_I_TO_R_SIZE */ + { 27090, 0x00000C76 }, /* GL_PIXEL_MAP_R_TO_R */ + { 27110, 0x00000CB6 }, /* GL_PIXEL_MAP_R_TO_R_SIZE */ + { 27135, 0x00000C71 }, /* GL_PIXEL_MAP_S_TO_S */ + { 27155, 0x00000CB1 }, /* GL_PIXEL_MAP_S_TO_S_SIZE */ + { 27180, 0x00000020 }, /* GL_PIXEL_MODE_BIT */ + { 27198, 0x000088EB }, /* GL_PIXEL_PACK_BUFFER */ + { 27219, 0x000088ED }, /* GL_PIXEL_PACK_BUFFER_BINDING */ + { 27248, 0x000088ED }, /* GL_PIXEL_PACK_BUFFER_BINDING_EXT */ + { 27281, 0x000088EB }, /* GL_PIXEL_PACK_BUFFER_EXT */ + { 27306, 0x000088EC }, /* GL_PIXEL_UNPACK_BUFFER */ + { 27329, 0x000088EF }, /* GL_PIXEL_UNPACK_BUFFER_BINDING */ + { 27360, 0x000088EF }, /* GL_PIXEL_UNPACK_BUFFER_BINDING_EXT */ + { 27395, 0x000088EC }, /* GL_PIXEL_UNPACK_BUFFER_EXT */ + { 27422, 0x00001B00 }, /* GL_POINT */ + { 27431, 0x00000000 }, /* GL_POINTS */ + { 27441, 0x00000002 }, /* GL_POINT_BIT */ + { 27454, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION */ + { 27484, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION_ARB */ + { 27518, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION_EXT */ + { 27552, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION_SGIS */ + { 27587, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE */ + { 27616, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE_ARB */ + { 27649, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE_EXT */ + { 27682, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE_SGIS */ + { 27716, 0x00000B11 }, /* GL_POINT_SIZE */ + { 27730, 0x00008B9F }, /* GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES */ + { 27769, 0x00008B9C }, /* GL_POINT_SIZE_ARRAY_OES */ + { 27793, 0x0000898C }, /* GL_POINT_SIZE_ARRAY_POINTER_OES */ + { 27825, 0x0000898B }, /* GL_POINT_SIZE_ARRAY_STRIDE_OES */ + { 27856, 0x0000898A }, /* GL_POINT_SIZE_ARRAY_TYPE_OES */ + { 27885, 0x00000B13 }, /* GL_POINT_SIZE_GRANULARITY */ + { 27911, 0x00008127 }, /* GL_POINT_SIZE_MAX */ + { 27929, 0x00008127 }, /* GL_POINT_SIZE_MAX_ARB */ + { 27951, 0x00008127 }, /* GL_POINT_SIZE_MAX_EXT */ + { 27973, 0x00008127 }, /* GL_POINT_SIZE_MAX_SGIS */ + { 27996, 0x00008126 }, /* GL_POINT_SIZE_MIN */ + { 28014, 0x00008126 }, /* GL_POINT_SIZE_MIN_ARB */ + { 28036, 0x00008126 }, /* GL_POINT_SIZE_MIN_EXT */ + { 28058, 0x00008126 }, /* GL_POINT_SIZE_MIN_SGIS */ + { 28081, 0x00000B12 }, /* GL_POINT_SIZE_RANGE */ + { 28101, 0x00000B10 }, /* GL_POINT_SMOOTH */ + { 28117, 0x00000C51 }, /* GL_POINT_SMOOTH_HINT */ + { 28138, 0x00008861 }, /* GL_POINT_SPRITE */ + { 28154, 0x00008861 }, /* GL_POINT_SPRITE_ARB */ + { 28174, 0x00008CA0 }, /* GL_POINT_SPRITE_COORD_ORIGIN */ + { 28203, 0x00008861 }, /* GL_POINT_SPRITE_NV */ + { 28222, 0x00008861 }, /* GL_POINT_SPRITE_OES */ + { 28242, 0x00008863 }, /* GL_POINT_SPRITE_R_MODE_NV */ + { 28268, 0x00000701 }, /* GL_POINT_TOKEN */ + { 28283, 0x00000009 }, /* GL_POLYGON */ + { 28294, 0x00000008 }, /* GL_POLYGON_BIT */ + { 28309, 0x00000B40 }, /* GL_POLYGON_MODE */ + { 28325, 0x00008039 }, /* GL_POLYGON_OFFSET_BIAS */ + { 28348, 0x00008038 }, /* GL_POLYGON_OFFSET_FACTOR */ + { 28373, 0x00008037 }, /* GL_POLYGON_OFFSET_FILL */ + { 28396, 0x00002A02 }, /* GL_POLYGON_OFFSET_LINE */ + { 28419, 0x00002A01 }, /* GL_POLYGON_OFFSET_POINT */ + { 28443, 0x00002A00 }, /* GL_POLYGON_OFFSET_UNITS */ + { 28467, 0x00000B41 }, /* GL_POLYGON_SMOOTH */ + { 28485, 0x00000C53 }, /* GL_POLYGON_SMOOTH_HINT */ + { 28508, 0x00000B42 }, /* GL_POLYGON_STIPPLE */ + { 28527, 0x00000010 }, /* GL_POLYGON_STIPPLE_BIT */ + { 28550, 0x00000703 }, /* GL_POLYGON_TOKEN */ + { 28567, 0x00001203 }, /* GL_POSITION */ + { 28579, 0x000080BB }, /* GL_POST_COLOR_MATRIX_ALPHA_BIAS */ + { 28611, 0x000080BB }, /* GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI */ + { 28647, 0x000080B7 }, /* GL_POST_COLOR_MATRIX_ALPHA_SCALE */ + { 28680, 0x000080B7 }, /* GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI */ + { 28717, 0x000080BA }, /* GL_POST_COLOR_MATRIX_BLUE_BIAS */ + { 28748, 0x000080BA }, /* GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI */ + { 28783, 0x000080B6 }, /* GL_POST_COLOR_MATRIX_BLUE_SCALE */ + { 28815, 0x000080B6 }, /* GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI */ + { 28851, 0x000080D2 }, /* GL_POST_COLOR_MATRIX_COLOR_TABLE */ + { 28884, 0x000080B9 }, /* GL_POST_COLOR_MATRIX_GREEN_BIAS */ + { 28916, 0x000080B9 }, /* GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI */ + { 28952, 0x000080B5 }, /* GL_POST_COLOR_MATRIX_GREEN_SCALE */ + { 28985, 0x000080B5 }, /* GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI */ + { 29022, 0x000080B8 }, /* GL_POST_COLOR_MATRIX_RED_BIAS */ + { 29052, 0x000080B8 }, /* GL_POST_COLOR_MATRIX_RED_BIAS_SGI */ + { 29086, 0x000080B4 }, /* GL_POST_COLOR_MATRIX_RED_SCALE */ + { 29117, 0x000080B4 }, /* GL_POST_COLOR_MATRIX_RED_SCALE_SGI */ + { 29152, 0x00008023 }, /* GL_POST_CONVOLUTION_ALPHA_BIAS */ + { 29183, 0x00008023 }, /* GL_POST_CONVOLUTION_ALPHA_BIAS_EXT */ + { 29218, 0x0000801F }, /* GL_POST_CONVOLUTION_ALPHA_SCALE */ + { 29250, 0x0000801F }, /* GL_POST_CONVOLUTION_ALPHA_SCALE_EXT */ + { 29286, 0x00008022 }, /* GL_POST_CONVOLUTION_BLUE_BIAS */ + { 29316, 0x00008022 }, /* GL_POST_CONVOLUTION_BLUE_BIAS_EXT */ + { 29350, 0x0000801E }, /* GL_POST_CONVOLUTION_BLUE_SCALE */ + { 29381, 0x0000801E }, /* GL_POST_CONVOLUTION_BLUE_SCALE_EXT */ + { 29416, 0x000080D1 }, /* GL_POST_CONVOLUTION_COLOR_TABLE */ + { 29448, 0x00008021 }, /* GL_POST_CONVOLUTION_GREEN_BIAS */ + { 29479, 0x00008021 }, /* GL_POST_CONVOLUTION_GREEN_BIAS_EXT */ + { 29514, 0x0000801D }, /* GL_POST_CONVOLUTION_GREEN_SCALE */ + { 29546, 0x0000801D }, /* GL_POST_CONVOLUTION_GREEN_SCALE_EXT */ + { 29582, 0x00008020 }, /* GL_POST_CONVOLUTION_RED_BIAS */ + { 29611, 0x00008020 }, /* GL_POST_CONVOLUTION_RED_BIAS_EXT */ + { 29644, 0x0000801C }, /* GL_POST_CONVOLUTION_RED_SCALE */ + { 29674, 0x0000801C }, /* GL_POST_CONVOLUTION_RED_SCALE_EXT */ + { 29708, 0x0000817B }, /* GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX */ + { 29747, 0x00008179 }, /* GL_POST_TEXTURE_FILTER_BIAS_SGIX */ + { 29780, 0x0000817C }, /* GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX */ + { 29820, 0x0000817A }, /* GL_POST_TEXTURE_FILTER_SCALE_SGIX */ + { 29854, 0x00008578 }, /* GL_PREVIOUS */ + { 29866, 0x00008578 }, /* GL_PREVIOUS_ARB */ + { 29882, 0x00008578 }, /* GL_PREVIOUS_EXT */ + { 29898, 0x00008577 }, /* GL_PRIMARY_COLOR */ + { 29915, 0x00008577 }, /* GL_PRIMARY_COLOR_ARB */ + { 29936, 0x00008577 }, /* GL_PRIMARY_COLOR_EXT */ + { 29957, 0x00008C87 }, /* GL_PRIMITIVES_GENERATED_EXT */ + { 29985, 0x000088B0 }, /* GL_PROGRAM_ADDRESS_REGISTERS_ARB */ + { 30018, 0x00008805 }, /* GL_PROGRAM_ALU_INSTRUCTIONS_ARB */ + { 30050, 0x000088AC }, /* GL_PROGRAM_ATTRIBS_ARB */ + { 30073, 0x000087FF }, /* GL_PROGRAM_BINARY_FORMATS_OES */ + { 30103, 0x00008741 }, /* GL_PROGRAM_BINARY_LENGTH_OES */ + { 30132, 0x00008677 }, /* GL_PROGRAM_BINDING_ARB */ + { 30155, 0x0000864B }, /* GL_PROGRAM_ERROR_POSITION_ARB */ + { 30185, 0x0000864B }, /* GL_PROGRAM_ERROR_POSITION_NV */ + { 30214, 0x00008874 }, /* GL_PROGRAM_ERROR_STRING_ARB */ + { 30242, 0x00008876 }, /* GL_PROGRAM_FORMAT_ARB */ + { 30264, 0x00008875 }, /* GL_PROGRAM_FORMAT_ASCII_ARB */ + { 30292, 0x000088A0 }, /* GL_PROGRAM_INSTRUCTIONS_ARB */ + { 30320, 0x00008627 }, /* GL_PROGRAM_LENGTH_ARB */ + { 30342, 0x00008627 }, /* GL_PROGRAM_LENGTH_NV */ + { 30363, 0x000088B2 }, /* GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ + { 30403, 0x00008808 }, /* GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ + { 30442, 0x000088AE }, /* GL_PROGRAM_NATIVE_ATTRIBS_ARB */ + { 30472, 0x000088A2 }, /* GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ + { 30507, 0x000088AA }, /* GL_PROGRAM_NATIVE_PARAMETERS_ARB */ + { 30540, 0x000088A6 }, /* GL_PROGRAM_NATIVE_TEMPORARIES_ARB */ + { 30574, 0x0000880A }, /* GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ + { 30613, 0x00008809 }, /* GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ + { 30652, 0x00008B40 }, /* GL_PROGRAM_OBJECT_ARB */ + { 30674, 0x000088A8 }, /* GL_PROGRAM_PARAMETERS_ARB */ + { 30700, 0x00008644 }, /* GL_PROGRAM_PARAMETER_NV */ + { 30724, 0x00008642 }, /* GL_PROGRAM_POINT_SIZE_ARB */ + { 30750, 0x00008647 }, /* GL_PROGRAM_RESIDENT_NV */ + { 30773, 0x00008628 }, /* GL_PROGRAM_STRING_ARB */ + { 30795, 0x00008628 }, /* GL_PROGRAM_STRING_NV */ + { 30816, 0x00008646 }, /* GL_PROGRAM_TARGET_NV */ + { 30837, 0x000088A4 }, /* GL_PROGRAM_TEMPORARIES_ARB */ + { 30864, 0x00008807 }, /* GL_PROGRAM_TEX_INDIRECTIONS_ARB */ + { 30896, 0x00008806 }, /* GL_PROGRAM_TEX_INSTRUCTIONS_ARB */ + { 30928, 0x000088B6 }, /* GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB */ + { 30963, 0x00001701 }, /* GL_PROJECTION */ + { 30977, 0x00000BA7 }, /* GL_PROJECTION_MATRIX */ + { 30998, 0x0000898E }, /* GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES */ + { 31041, 0x00000BA4 }, /* GL_PROJECTION_STACK_DEPTH */ + { 31067, 0x00008E4F }, /* GL_PROVOKING_VERTEX */ + { 31087, 0x00008E4F }, /* GL_PROVOKING_VERTEX_EXT */ + { 31111, 0x000080D3 }, /* GL_PROXY_COLOR_TABLE */ + { 31132, 0x00008025 }, /* GL_PROXY_HISTOGRAM */ + { 31151, 0x00008025 }, /* GL_PROXY_HISTOGRAM_EXT */ + { 31174, 0x000080D5 }, /* GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE */ + { 31213, 0x000080D4 }, /* GL_PROXY_POST_CONVOLUTION_COLOR_TABLE */ + { 31251, 0x00008063 }, /* GL_PROXY_TEXTURE_1D */ + { 31271, 0x00008C19 }, /* GL_PROXY_TEXTURE_1D_ARRAY_EXT */ + { 31301, 0x00008063 }, /* GL_PROXY_TEXTURE_1D_EXT */ + { 31325, 0x00008064 }, /* GL_PROXY_TEXTURE_2D */ + { 31345, 0x00008C1B }, /* GL_PROXY_TEXTURE_2D_ARRAY_EXT */ + { 31375, 0x00008064 }, /* GL_PROXY_TEXTURE_2D_EXT */ + { 31399, 0x00008070 }, /* GL_PROXY_TEXTURE_3D */ + { 31419, 0x000080BD }, /* GL_PROXY_TEXTURE_COLOR_TABLE_SGI */ + { 31452, 0x0000851B }, /* GL_PROXY_TEXTURE_CUBE_MAP */ + { 31478, 0x0000851B }, /* GL_PROXY_TEXTURE_CUBE_MAP_ARB */ + { 31508, 0x000084F7 }, /* GL_PROXY_TEXTURE_RECTANGLE_ARB */ + { 31539, 0x000084F7 }, /* GL_PROXY_TEXTURE_RECTANGLE_NV */ + { 31569, 0x00008A1D }, /* GL_PURGEABLE_APPLE */ + { 31588, 0x00002003 }, /* GL_Q */ + { 31593, 0x00001209 }, /* GL_QUADRATIC_ATTENUATION */ + { 31618, 0x00000007 }, /* GL_QUADS */ + { 31627, 0x00008E4C }, /* GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION */ + { 31671, 0x00008E4C }, /* GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT */ + { 31719, 0x00008614 }, /* GL_QUAD_MESH_SUN */ + { 31736, 0x00000008 }, /* GL_QUAD_STRIP */ + { 31750, 0x00008E16 }, /* GL_QUERY_BY_REGION_NO_WAIT_NV */ + { 31780, 0x00008E15 }, /* GL_QUERY_BY_REGION_WAIT_NV */ + { 31807, 0x00008864 }, /* GL_QUERY_COUNTER_BITS */ + { 31829, 0x00008864 }, /* GL_QUERY_COUNTER_BITS_ARB */ + { 31855, 0x00008E14 }, /* GL_QUERY_NO_WAIT_NV */ + { 31875, 0x00008866 }, /* GL_QUERY_RESULT */ + { 31891, 0x00008866 }, /* GL_QUERY_RESULT_ARB */ + { 31911, 0x00008867 }, /* GL_QUERY_RESULT_AVAILABLE */ + { 31937, 0x00008867 }, /* GL_QUERY_RESULT_AVAILABLE_ARB */ + { 31967, 0x00008E13 }, /* GL_QUERY_WAIT_NV */ + { 31984, 0x00002002 }, /* GL_R */ + { 31989, 0x00002A10 }, /* GL_R3_G3_B2 */ + { 32001, 0x00008C89 }, /* GL_RASTERIZER_DISCARD_EXT */ + { 32027, 0x00019262 }, /* GL_RASTER_POSITION_UNCLIPPED_IBM */ + { 32060, 0x00000C02 }, /* GL_READ_BUFFER */ + { 32075, 0x00008CA8 }, /* GL_READ_FRAMEBUFFER */ + { 32095, 0x00008CAA }, /* GL_READ_FRAMEBUFFER_BINDING */ + { 32123, 0x00008CAA }, /* GL_READ_FRAMEBUFFER_BINDING_EXT */ + { 32155, 0x00008CA8 }, /* GL_READ_FRAMEBUFFER_EXT */ + { 32179, 0x000088B8 }, /* GL_READ_ONLY */ + { 32192, 0x000088B8 }, /* GL_READ_ONLY_ARB */ + { 32209, 0x000088BA }, /* GL_READ_WRITE */ + { 32223, 0x000088BA }, /* GL_READ_WRITE_ARB */ + { 32241, 0x00001903 }, /* GL_RED */ + { 32248, 0x00008016 }, /* GL_REDUCE */ + { 32258, 0x00008016 }, /* GL_REDUCE_EXT */ + { 32272, 0x00000D15 }, /* GL_RED_BIAS */ + { 32284, 0x00000D52 }, /* GL_RED_BITS */ + { 32296, 0x00000D14 }, /* GL_RED_SCALE */ + { 32309, 0x00008512 }, /* GL_REFLECTION_MAP */ + { 32327, 0x00008512 }, /* GL_REFLECTION_MAP_ARB */ + { 32349, 0x00008512 }, /* GL_REFLECTION_MAP_NV */ + { 32370, 0x00008512 }, /* GL_REFLECTION_MAP_OES */ + { 32392, 0x00008A19 }, /* GL_RELEASED_APPLE */ + { 32410, 0x00001C00 }, /* GL_RENDER */ + { 32420, 0x00008D41 }, /* GL_RENDERBUFFER */ + { 32436, 0x00008D53 }, /* GL_RENDERBUFFER_ALPHA_SIZE */ + { 32463, 0x00008D53 }, /* GL_RENDERBUFFER_ALPHA_SIZE_OES */ + { 32494, 0x00008CA7 }, /* GL_RENDERBUFFER_BINDING */ + { 32518, 0x00008CA7 }, /* GL_RENDERBUFFER_BINDING_EXT */ + { 32546, 0x00008CA7 }, /* GL_RENDERBUFFER_BINDING_OES */ + { 32574, 0x00008D52 }, /* GL_RENDERBUFFER_BLUE_SIZE */ + { 32600, 0x00008D52 }, /* GL_RENDERBUFFER_BLUE_SIZE_OES */ + { 32630, 0x00008D54 }, /* GL_RENDERBUFFER_DEPTH_SIZE */ + { 32657, 0x00008D54 }, /* GL_RENDERBUFFER_DEPTH_SIZE_OES */ + { 32688, 0x00008D41 }, /* GL_RENDERBUFFER_EXT */ + { 32708, 0x00008D51 }, /* GL_RENDERBUFFER_GREEN_SIZE */ + { 32735, 0x00008D51 }, /* GL_RENDERBUFFER_GREEN_SIZE_OES */ + { 32766, 0x00008D43 }, /* GL_RENDERBUFFER_HEIGHT */ + { 32789, 0x00008D43 }, /* GL_RENDERBUFFER_HEIGHT_EXT */ + { 32816, 0x00008D43 }, /* GL_RENDERBUFFER_HEIGHT_OES */ + { 32843, 0x00008D44 }, /* GL_RENDERBUFFER_INTERNAL_FORMAT */ + { 32875, 0x00008D44 }, /* GL_RENDERBUFFER_INTERNAL_FORMAT_EXT */ + { 32911, 0x00008D44 }, /* GL_RENDERBUFFER_INTERNAL_FORMAT_OES */ + { 32947, 0x00008D41 }, /* GL_RENDERBUFFER_OES */ + { 32967, 0x00008D50 }, /* GL_RENDERBUFFER_RED_SIZE */ + { 32992, 0x00008D50 }, /* GL_RENDERBUFFER_RED_SIZE_OES */ + { 33021, 0x00008CAB }, /* GL_RENDERBUFFER_SAMPLES */ + { 33045, 0x00008CAB }, /* GL_RENDERBUFFER_SAMPLES_EXT */ + { 33073, 0x00008D55 }, /* GL_RENDERBUFFER_STENCIL_SIZE */ + { 33102, 0x00008D55 }, /* GL_RENDERBUFFER_STENCIL_SIZE_OES */ + { 33135, 0x00008D42 }, /* GL_RENDERBUFFER_WIDTH */ + { 33157, 0x00008D42 }, /* GL_RENDERBUFFER_WIDTH_EXT */ + { 33183, 0x00008D42 }, /* GL_RENDERBUFFER_WIDTH_OES */ + { 33209, 0x00001F01 }, /* GL_RENDERER */ + { 33221, 0x00000C40 }, /* GL_RENDER_MODE */ + { 33236, 0x00002901 }, /* GL_REPEAT */ + { 33246, 0x00001E01 }, /* GL_REPLACE */ + { 33257, 0x00008062 }, /* GL_REPLACE_EXT */ + { 33272, 0x00008153 }, /* GL_REPLICATE_BORDER_HP */ + { 33295, 0x0000803A }, /* GL_RESCALE_NORMAL */ + { 33313, 0x0000803A }, /* GL_RESCALE_NORMAL_EXT */ + { 33335, 0x00008A1B }, /* GL_RETAINED_APPLE */ + { 33353, 0x00000102 }, /* GL_RETURN */ + { 33363, 0x00001907 }, /* GL_RGB */ + { 33370, 0x00008052 }, /* GL_RGB10 */ + { 33379, 0x00008059 }, /* GL_RGB10_A2 */ + { 33391, 0x00008059 }, /* GL_RGB10_A2_EXT */ + { 33407, 0x00008052 }, /* GL_RGB10_EXT */ + { 33420, 0x00008053 }, /* GL_RGB12 */ + { 33429, 0x00008053 }, /* GL_RGB12_EXT */ + { 33442, 0x00008054 }, /* GL_RGB16 */ + { 33451, 0x00008054 }, /* GL_RGB16_EXT */ + { 33464, 0x0000804E }, /* GL_RGB2_EXT */ + { 33476, 0x0000804F }, /* GL_RGB4 */ + { 33484, 0x0000804F }, /* GL_RGB4_EXT */ + { 33496, 0x000083A1 }, /* GL_RGB4_S3TC */ + { 33509, 0x00008050 }, /* GL_RGB5 */ + { 33517, 0x00008D62 }, /* GL_RGB565 */ + { 33527, 0x00008D62 }, /* GL_RGB565_OES */ + { 33541, 0x00008057 }, /* GL_RGB5_A1 */ + { 33552, 0x00008057 }, /* GL_RGB5_A1_EXT */ + { 33567, 0x00008057 }, /* GL_RGB5_A1_OES */ + { 33582, 0x00008050 }, /* GL_RGB5_EXT */ + { 33594, 0x00008051 }, /* GL_RGB8 */ + { 33602, 0x00008051 }, /* GL_RGB8_EXT */ + { 33614, 0x00008051 }, /* GL_RGB8_OES */ + { 33626, 0x00001908 }, /* GL_RGBA */ + { 33634, 0x0000805A }, /* GL_RGBA12 */ + { 33644, 0x0000805A }, /* GL_RGBA12_EXT */ + { 33658, 0x0000805B }, /* GL_RGBA16 */ + { 33668, 0x0000805B }, /* GL_RGBA16_EXT */ + { 33682, 0x00008055 }, /* GL_RGBA2 */ + { 33691, 0x00008055 }, /* GL_RGBA2_EXT */ + { 33704, 0x00008056 }, /* GL_RGBA4 */ + { 33713, 0x000083A5 }, /* GL_RGBA4_DXT5_S3TC */ + { 33732, 0x00008056 }, /* GL_RGBA4_EXT */ + { 33745, 0x00008056 }, /* GL_RGBA4_OES */ + { 33758, 0x000083A3 }, /* GL_RGBA4_S3TC */ + { 33772, 0x00008058 }, /* GL_RGBA8 */ + { 33781, 0x00008058 }, /* GL_RGBA8_EXT */ + { 33794, 0x00008058 }, /* GL_RGBA8_OES */ + { 33807, 0x00008F97 }, /* GL_RGBA8_SNORM */ + { 33822, 0x000083A4 }, /* GL_RGBA_DXT5_S3TC */ + { 33840, 0x00008820 }, /* GL_RGBA_FLOAT_MODE_ARB */ + { 33863, 0x00000C31 }, /* GL_RGBA_MODE */ + { 33876, 0x000083A2 }, /* GL_RGBA_S3TC */ + { 33889, 0x00008F93 }, /* GL_RGBA_SNORM */ + { 33903, 0x000083A0 }, /* GL_RGB_S3TC */ + { 33915, 0x00008573 }, /* GL_RGB_SCALE */ + { 33928, 0x00008573 }, /* GL_RGB_SCALE_ARB */ + { 33945, 0x00008573 }, /* GL_RGB_SCALE_EXT */ + { 33962, 0x00000407 }, /* GL_RIGHT */ + { 33971, 0x00002000 }, /* GL_S */ + { 33976, 0x00008B5D }, /* GL_SAMPLER_1D */ + { 33990, 0x00008B61 }, /* GL_SAMPLER_1D_SHADOW */ + { 34011, 0x00008B5E }, /* GL_SAMPLER_2D */ + { 34025, 0x00008B62 }, /* GL_SAMPLER_2D_SHADOW */ + { 34046, 0x00008B5F }, /* GL_SAMPLER_3D */ + { 34060, 0x00008B5F }, /* GL_SAMPLER_3D_OES */ + { 34078, 0x00008B60 }, /* GL_SAMPLER_CUBE */ + { 34094, 0x000080A9 }, /* GL_SAMPLES */ + { 34105, 0x000086B4 }, /* GL_SAMPLES_3DFX */ + { 34121, 0x000080A9 }, /* GL_SAMPLES_ARB */ + { 34136, 0x00008914 }, /* GL_SAMPLES_PASSED */ + { 34154, 0x00008914 }, /* GL_SAMPLES_PASSED_ARB */ + { 34176, 0x0000809E }, /* GL_SAMPLE_ALPHA_TO_COVERAGE */ + { 34204, 0x0000809E }, /* GL_SAMPLE_ALPHA_TO_COVERAGE_ARB */ + { 34236, 0x0000809F }, /* GL_SAMPLE_ALPHA_TO_ONE */ + { 34259, 0x0000809F }, /* GL_SAMPLE_ALPHA_TO_ONE_ARB */ + { 34286, 0x000080A8 }, /* GL_SAMPLE_BUFFERS */ + { 34304, 0x000086B3 }, /* GL_SAMPLE_BUFFERS_3DFX */ + { 34327, 0x000080A8 }, /* GL_SAMPLE_BUFFERS_ARB */ + { 34349, 0x000080A0 }, /* GL_SAMPLE_COVERAGE */ + { 34368, 0x000080A0 }, /* GL_SAMPLE_COVERAGE_ARB */ + { 34391, 0x000080AB }, /* GL_SAMPLE_COVERAGE_INVERT */ + { 34417, 0x000080AB }, /* GL_SAMPLE_COVERAGE_INVERT_ARB */ + { 34447, 0x000080AA }, /* GL_SAMPLE_COVERAGE_VALUE */ + { 34472, 0x000080AA }, /* GL_SAMPLE_COVERAGE_VALUE_ARB */ + { 34501, 0x00080000 }, /* GL_SCISSOR_BIT */ + { 34516, 0x00000C10 }, /* GL_SCISSOR_BOX */ + { 34531, 0x00000C11 }, /* GL_SCISSOR_TEST */ + { 34547, 0x0000845E }, /* GL_SECONDARY_COLOR_ARRAY */ + { 34572, 0x0000889C }, /* GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING */ + { 34612, 0x0000889C }, /* GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB */ + { 34656, 0x0000845D }, /* GL_SECONDARY_COLOR_ARRAY_POINTER */ + { 34689, 0x0000845A }, /* GL_SECONDARY_COLOR_ARRAY_SIZE */ + { 34719, 0x0000845C }, /* GL_SECONDARY_COLOR_ARRAY_STRIDE */ + { 34751, 0x0000845B }, /* GL_SECONDARY_COLOR_ARRAY_TYPE */ + { 34781, 0x00001C02 }, /* GL_SELECT */ + { 34791, 0x00000DF3 }, /* GL_SELECTION_BUFFER_POINTER */ + { 34819, 0x00000DF4 }, /* GL_SELECTION_BUFFER_SIZE */ + { 34844, 0x00008012 }, /* GL_SEPARABLE_2D */ + { 34860, 0x00008C8D }, /* GL_SEPARATE_ATTRIBS_EXT */ + { 34884, 0x000081FA }, /* GL_SEPARATE_SPECULAR_COLOR */ + { 34911, 0x000081FA }, /* GL_SEPARATE_SPECULAR_COLOR_EXT */ + { 34942, 0x0000150F }, /* GL_SET */ + { 34949, 0x00008DF8 }, /* GL_SHADER_BINARY_FORMATS */ + { 34974, 0x00008DFA }, /* GL_SHADER_COMPILER */ + { 34993, 0x00008B48 }, /* GL_SHADER_OBJECT_ARB */ + { 35014, 0x00008B88 }, /* GL_SHADER_SOURCE_LENGTH */ + { 35038, 0x00008B4F }, /* GL_SHADER_TYPE */ + { 35053, 0x00000B54 }, /* GL_SHADE_MODEL */ + { 35068, 0x00008B8C }, /* GL_SHADING_LANGUAGE_VERSION */ + { 35096, 0x000080BF }, /* GL_SHADOW_AMBIENT_SGIX */ + { 35119, 0x000081FB }, /* GL_SHARED_TEXTURE_PALETTE_EXT */ + { 35149, 0x00001601 }, /* GL_SHININESS */ + { 35162, 0x00001402 }, /* GL_SHORT */ + { 35171, 0x00009119 }, /* GL_SIGNALED */ + { 35183, 0x00008F9C }, /* GL_SIGNED_NORMALIZED */ + { 35204, 0x000081F9 }, /* GL_SINGLE_COLOR */ + { 35220, 0x000081F9 }, /* GL_SINGLE_COLOR_EXT */ + { 35240, 0x000085CC }, /* GL_SLICE_ACCUM_SUN */ + { 35259, 0x00008C46 }, /* GL_SLUMINANCE */ + { 35273, 0x00008C47 }, /* GL_SLUMINANCE8 */ + { 35288, 0x00008C45 }, /* GL_SLUMINANCE8_ALPHA8 */ + { 35310, 0x00008C44 }, /* GL_SLUMINANCE_ALPHA */ + { 35330, 0x00001D01 }, /* GL_SMOOTH */ + { 35340, 0x00000B23 }, /* GL_SMOOTH_LINE_WIDTH_GRANULARITY */ + { 35373, 0x00000B22 }, /* GL_SMOOTH_LINE_WIDTH_RANGE */ + { 35400, 0x00000B13 }, /* GL_SMOOTH_POINT_SIZE_GRANULARITY */ + { 35433, 0x00000B12 }, /* GL_SMOOTH_POINT_SIZE_RANGE */ + { 35460, 0x00008588 }, /* GL_SOURCE0_ALPHA */ + { 35477, 0x00008588 }, /* GL_SOURCE0_ALPHA_ARB */ + { 35498, 0x00008588 }, /* GL_SOURCE0_ALPHA_EXT */ + { 35519, 0x00008580 }, /* GL_SOURCE0_RGB */ + { 35534, 0x00008580 }, /* GL_SOURCE0_RGB_ARB */ + { 35553, 0x00008580 }, /* GL_SOURCE0_RGB_EXT */ + { 35572, 0x00008589 }, /* GL_SOURCE1_ALPHA */ + { 35589, 0x00008589 }, /* GL_SOURCE1_ALPHA_ARB */ + { 35610, 0x00008589 }, /* GL_SOURCE1_ALPHA_EXT */ + { 35631, 0x00008581 }, /* GL_SOURCE1_RGB */ + { 35646, 0x00008581 }, /* GL_SOURCE1_RGB_ARB */ + { 35665, 0x00008581 }, /* GL_SOURCE1_RGB_EXT */ + { 35684, 0x0000858A }, /* GL_SOURCE2_ALPHA */ + { 35701, 0x0000858A }, /* GL_SOURCE2_ALPHA_ARB */ + { 35722, 0x0000858A }, /* GL_SOURCE2_ALPHA_EXT */ + { 35743, 0x00008582 }, /* GL_SOURCE2_RGB */ + { 35758, 0x00008582 }, /* GL_SOURCE2_RGB_ARB */ + { 35777, 0x00008582 }, /* GL_SOURCE2_RGB_EXT */ + { 35796, 0x0000858B }, /* GL_SOURCE3_ALPHA_NV */ + { 35816, 0x00008583 }, /* GL_SOURCE3_RGB_NV */ + { 35834, 0x00001202 }, /* GL_SPECULAR */ + { 35846, 0x00002402 }, /* GL_SPHERE_MAP */ + { 35860, 0x00001206 }, /* GL_SPOT_CUTOFF */ + { 35875, 0x00001204 }, /* GL_SPOT_DIRECTION */ + { 35893, 0x00001205 }, /* GL_SPOT_EXPONENT */ + { 35910, 0x00008588 }, /* GL_SRC0_ALPHA */ + { 35924, 0x00008580 }, /* GL_SRC0_RGB */ + { 35936, 0x00008589 }, /* GL_SRC1_ALPHA */ + { 35950, 0x00008581 }, /* GL_SRC1_RGB */ + { 35962, 0x0000858A }, /* GL_SRC2_ALPHA */ + { 35976, 0x00008582 }, /* GL_SRC2_RGB */ + { 35988, 0x00000302 }, /* GL_SRC_ALPHA */ + { 36001, 0x00000308 }, /* GL_SRC_ALPHA_SATURATE */ + { 36023, 0x00000300 }, /* GL_SRC_COLOR */ + { 36036, 0x00008C40 }, /* GL_SRGB */ + { 36044, 0x00008C41 }, /* GL_SRGB8 */ + { 36053, 0x00008C43 }, /* GL_SRGB8_ALPHA8 */ + { 36069, 0x00008C42 }, /* GL_SRGB_ALPHA */ + { 36083, 0x00000503 }, /* GL_STACK_OVERFLOW */ + { 36101, 0x00000504 }, /* GL_STACK_UNDERFLOW */ + { 36120, 0x000088E6 }, /* GL_STATIC_COPY */ + { 36135, 0x000088E6 }, /* GL_STATIC_COPY_ARB */ + { 36154, 0x000088E4 }, /* GL_STATIC_DRAW */ + { 36169, 0x000088E4 }, /* GL_STATIC_DRAW_ARB */ + { 36188, 0x000088E5 }, /* GL_STATIC_READ */ + { 36203, 0x000088E5 }, /* GL_STATIC_READ_ARB */ + { 36222, 0x00001802 }, /* GL_STENCIL */ + { 36233, 0x00008D20 }, /* GL_STENCIL_ATTACHMENT */ + { 36255, 0x00008D20 }, /* GL_STENCIL_ATTACHMENT_EXT */ + { 36281, 0x00008D20 }, /* GL_STENCIL_ATTACHMENT_OES */ + { 36307, 0x00008801 }, /* GL_STENCIL_BACK_FAIL */ + { 36328, 0x00008801 }, /* GL_STENCIL_BACK_FAIL_ATI */ + { 36353, 0x00008800 }, /* GL_STENCIL_BACK_FUNC */ + { 36374, 0x00008800 }, /* GL_STENCIL_BACK_FUNC_ATI */ + { 36399, 0x00008802 }, /* GL_STENCIL_BACK_PASS_DEPTH_FAIL */ + { 36431, 0x00008802 }, /* GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI */ + { 36467, 0x00008803 }, /* GL_STENCIL_BACK_PASS_DEPTH_PASS */ + { 36499, 0x00008803 }, /* GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI */ + { 36535, 0x00008CA3 }, /* GL_STENCIL_BACK_REF */ + { 36555, 0x00008CA4 }, /* GL_STENCIL_BACK_VALUE_MASK */ + { 36582, 0x00008CA5 }, /* GL_STENCIL_BACK_WRITEMASK */ + { 36608, 0x00000D57 }, /* GL_STENCIL_BITS */ + { 36624, 0x00000400 }, /* GL_STENCIL_BUFFER_BIT */ + { 36646, 0x00000B91 }, /* GL_STENCIL_CLEAR_VALUE */ + { 36669, 0x00000B94 }, /* GL_STENCIL_FAIL */ + { 36685, 0x00000B92 }, /* GL_STENCIL_FUNC */ + { 36701, 0x00001901 }, /* GL_STENCIL_INDEX */ + { 36718, 0x00008D46 }, /* GL_STENCIL_INDEX1 */ + { 36736, 0x00008D49 }, /* GL_STENCIL_INDEX16 */ + { 36755, 0x00008D49 }, /* GL_STENCIL_INDEX16_EXT */ + { 36778, 0x00008D46 }, /* GL_STENCIL_INDEX1_EXT */ + { 36800, 0x00008D46 }, /* GL_STENCIL_INDEX1_OES */ + { 36822, 0x00008D47 }, /* GL_STENCIL_INDEX4 */ + { 36840, 0x00008D47 }, /* GL_STENCIL_INDEX4_EXT */ + { 36862, 0x00008D47 }, /* GL_STENCIL_INDEX4_OES */ + { 36884, 0x00008D48 }, /* GL_STENCIL_INDEX8 */ + { 36902, 0x00008D48 }, /* GL_STENCIL_INDEX8_EXT */ + { 36924, 0x00008D48 }, /* GL_STENCIL_INDEX8_OES */ + { 36946, 0x00008D45 }, /* GL_STENCIL_INDEX_EXT */ + { 36967, 0x00000B95 }, /* GL_STENCIL_PASS_DEPTH_FAIL */ + { 36994, 0x00000B96 }, /* GL_STENCIL_PASS_DEPTH_PASS */ + { 37021, 0x00000B97 }, /* GL_STENCIL_REF */ + { 37036, 0x00000B90 }, /* GL_STENCIL_TEST */ + { 37052, 0x00008910 }, /* GL_STENCIL_TEST_TWO_SIDE_EXT */ + { 37081, 0x00000B93 }, /* GL_STENCIL_VALUE_MASK */ + { 37103, 0x00000B98 }, /* GL_STENCIL_WRITEMASK */ + { 37124, 0x00000C33 }, /* GL_STEREO */ + { 37134, 0x000085BE }, /* GL_STORAGE_CACHED_APPLE */ + { 37158, 0x000085BD }, /* GL_STORAGE_PRIVATE_APPLE */ + { 37183, 0x000085BF }, /* GL_STORAGE_SHARED_APPLE */ + { 37207, 0x000088E2 }, /* GL_STREAM_COPY */ + { 37222, 0x000088E2 }, /* GL_STREAM_COPY_ARB */ + { 37241, 0x000088E0 }, /* GL_STREAM_DRAW */ + { 37256, 0x000088E0 }, /* GL_STREAM_DRAW_ARB */ + { 37275, 0x000088E1 }, /* GL_STREAM_READ */ + { 37290, 0x000088E1 }, /* GL_STREAM_READ_ARB */ + { 37309, 0x00000D50 }, /* GL_SUBPIXEL_BITS */ + { 37326, 0x000084E7 }, /* GL_SUBTRACT */ + { 37338, 0x000084E7 }, /* GL_SUBTRACT_ARB */ + { 37354, 0x00009113 }, /* GL_SYNC_CONDITION */ + { 37372, 0x00009116 }, /* GL_SYNC_FENCE */ + { 37386, 0x00009115 }, /* GL_SYNC_FLAGS */ + { 37400, 0x00000001 }, /* GL_SYNC_FLUSH_COMMANDS_BIT */ + { 37427, 0x00009117 }, /* GL_SYNC_GPU_COMMANDS_COMPLETE */ + { 37457, 0x00009114 }, /* GL_SYNC_STATUS */ + { 37472, 0x00002001 }, /* GL_T */ + { 37477, 0x00002A2A }, /* GL_T2F_C3F_V3F */ + { 37492, 0x00002A2C }, /* GL_T2F_C4F_N3F_V3F */ + { 37511, 0x00002A29 }, /* GL_T2F_C4UB_V3F */ + { 37527, 0x00002A2B }, /* GL_T2F_N3F_V3F */ + { 37542, 0x00002A27 }, /* GL_T2F_V3F */ + { 37553, 0x00002A2D }, /* GL_T4F_C4F_N3F_V4F */ + { 37572, 0x00002A28 }, /* GL_T4F_V4F */ + { 37583, 0x00008031 }, /* GL_TABLE_TOO_LARGE_EXT */ + { 37606, 0x00001702 }, /* GL_TEXTURE */ + { 37617, 0x000084C0 }, /* GL_TEXTURE0 */ + { 37629, 0x000084C0 }, /* GL_TEXTURE0_ARB */ + { 37645, 0x000084C1 }, /* GL_TEXTURE1 */ + { 37657, 0x000084CA }, /* GL_TEXTURE10 */ + { 37670, 0x000084CA }, /* GL_TEXTURE10_ARB */ + { 37687, 0x000084CB }, /* GL_TEXTURE11 */ + { 37700, 0x000084CB }, /* GL_TEXTURE11_ARB */ + { 37717, 0x000084CC }, /* GL_TEXTURE12 */ + { 37730, 0x000084CC }, /* GL_TEXTURE12_ARB */ + { 37747, 0x000084CD }, /* GL_TEXTURE13 */ + { 37760, 0x000084CD }, /* GL_TEXTURE13_ARB */ + { 37777, 0x000084CE }, /* GL_TEXTURE14 */ + { 37790, 0x000084CE }, /* GL_TEXTURE14_ARB */ + { 37807, 0x000084CF }, /* GL_TEXTURE15 */ + { 37820, 0x000084CF }, /* GL_TEXTURE15_ARB */ + { 37837, 0x000084D0 }, /* GL_TEXTURE16 */ + { 37850, 0x000084D0 }, /* GL_TEXTURE16_ARB */ + { 37867, 0x000084D1 }, /* GL_TEXTURE17 */ + { 37880, 0x000084D1 }, /* GL_TEXTURE17_ARB */ + { 37897, 0x000084D2 }, /* GL_TEXTURE18 */ + { 37910, 0x000084D2 }, /* GL_TEXTURE18_ARB */ + { 37927, 0x000084D3 }, /* GL_TEXTURE19 */ + { 37940, 0x000084D3 }, /* GL_TEXTURE19_ARB */ + { 37957, 0x000084C1 }, /* GL_TEXTURE1_ARB */ + { 37973, 0x000084C2 }, /* GL_TEXTURE2 */ + { 37985, 0x000084D4 }, /* GL_TEXTURE20 */ + { 37998, 0x000084D4 }, /* GL_TEXTURE20_ARB */ + { 38015, 0x000084D5 }, /* GL_TEXTURE21 */ + { 38028, 0x000084D5 }, /* GL_TEXTURE21_ARB */ + { 38045, 0x000084D6 }, /* GL_TEXTURE22 */ + { 38058, 0x000084D6 }, /* GL_TEXTURE22_ARB */ + { 38075, 0x000084D7 }, /* GL_TEXTURE23 */ + { 38088, 0x000084D7 }, /* GL_TEXTURE23_ARB */ + { 38105, 0x000084D8 }, /* GL_TEXTURE24 */ + { 38118, 0x000084D8 }, /* GL_TEXTURE24_ARB */ + { 38135, 0x000084D9 }, /* GL_TEXTURE25 */ + { 38148, 0x000084D9 }, /* GL_TEXTURE25_ARB */ + { 38165, 0x000084DA }, /* GL_TEXTURE26 */ + { 38178, 0x000084DA }, /* GL_TEXTURE26_ARB */ + { 38195, 0x000084DB }, /* GL_TEXTURE27 */ + { 38208, 0x000084DB }, /* GL_TEXTURE27_ARB */ + { 38225, 0x000084DC }, /* GL_TEXTURE28 */ + { 38238, 0x000084DC }, /* GL_TEXTURE28_ARB */ + { 38255, 0x000084DD }, /* GL_TEXTURE29 */ + { 38268, 0x000084DD }, /* GL_TEXTURE29_ARB */ + { 38285, 0x000084C2 }, /* GL_TEXTURE2_ARB */ + { 38301, 0x000084C3 }, /* GL_TEXTURE3 */ + { 38313, 0x000084DE }, /* GL_TEXTURE30 */ + { 38326, 0x000084DE }, /* GL_TEXTURE30_ARB */ + { 38343, 0x000084DF }, /* GL_TEXTURE31 */ + { 38356, 0x000084DF }, /* GL_TEXTURE31_ARB */ + { 38373, 0x000084C3 }, /* GL_TEXTURE3_ARB */ + { 38389, 0x000084C4 }, /* GL_TEXTURE4 */ + { 38401, 0x000084C4 }, /* GL_TEXTURE4_ARB */ + { 38417, 0x000084C5 }, /* GL_TEXTURE5 */ + { 38429, 0x000084C5 }, /* GL_TEXTURE5_ARB */ + { 38445, 0x000084C6 }, /* GL_TEXTURE6 */ + { 38457, 0x000084C6 }, /* GL_TEXTURE6_ARB */ + { 38473, 0x000084C7 }, /* GL_TEXTURE7 */ + { 38485, 0x000084C7 }, /* GL_TEXTURE7_ARB */ + { 38501, 0x000084C8 }, /* GL_TEXTURE8 */ + { 38513, 0x000084C8 }, /* GL_TEXTURE8_ARB */ + { 38529, 0x000084C9 }, /* GL_TEXTURE9 */ + { 38541, 0x000084C9 }, /* GL_TEXTURE9_ARB */ + { 38557, 0x00000DE0 }, /* GL_TEXTURE_1D */ + { 38571, 0x00008C18 }, /* GL_TEXTURE_1D_ARRAY_EXT */ + { 38595, 0x00000DE1 }, /* GL_TEXTURE_2D */ + { 38609, 0x00008C1A }, /* GL_TEXTURE_2D_ARRAY_EXT */ + { 38633, 0x0000806F }, /* GL_TEXTURE_3D */ + { 38647, 0x0000806F }, /* GL_TEXTURE_3D_OES */ + { 38665, 0x0000805F }, /* GL_TEXTURE_ALPHA_SIZE */ + { 38687, 0x0000805F }, /* GL_TEXTURE_ALPHA_SIZE_EXT */ + { 38713, 0x0000813C }, /* GL_TEXTURE_BASE_LEVEL */ + { 38735, 0x00008068 }, /* GL_TEXTURE_BINDING_1D */ + { 38757, 0x00008C1C }, /* GL_TEXTURE_BINDING_1D_ARRAY_EXT */ + { 38789, 0x00008069 }, /* GL_TEXTURE_BINDING_2D */ + { 38811, 0x00008C1D }, /* GL_TEXTURE_BINDING_2D_ARRAY_EXT */ + { 38843, 0x0000806A }, /* GL_TEXTURE_BINDING_3D */ + { 38865, 0x0000806A }, /* GL_TEXTURE_BINDING_3D_OES */ + { 38891, 0x00008514 }, /* GL_TEXTURE_BINDING_CUBE_MAP */ + { 38919, 0x00008514 }, /* GL_TEXTURE_BINDING_CUBE_MAP_ARB */ + { 38951, 0x00008514 }, /* GL_TEXTURE_BINDING_CUBE_MAP_OES */ + { 38983, 0x000084F6 }, /* GL_TEXTURE_BINDING_RECTANGLE_ARB */ + { 39016, 0x000084F6 }, /* GL_TEXTURE_BINDING_RECTANGLE_NV */ + { 39048, 0x00040000 }, /* GL_TEXTURE_BIT */ + { 39063, 0x0000805E }, /* GL_TEXTURE_BLUE_SIZE */ + { 39084, 0x0000805E }, /* GL_TEXTURE_BLUE_SIZE_EXT */ + { 39109, 0x00001005 }, /* GL_TEXTURE_BORDER */ + { 39127, 0x00001004 }, /* GL_TEXTURE_BORDER_COLOR */ + { 39151, 0x00008171 }, /* GL_TEXTURE_CLIPMAP_CENTER_SGIX */ + { 39182, 0x00008176 }, /* GL_TEXTURE_CLIPMAP_DEPTH_SGIX */ + { 39212, 0x00008172 }, /* GL_TEXTURE_CLIPMAP_FRAME_SGIX */ + { 39242, 0x00008175 }, /* GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX */ + { 39277, 0x00008173 }, /* GL_TEXTURE_CLIPMAP_OFFSET_SGIX */ + { 39308, 0x00008174 }, /* GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX */ + { 39346, 0x000080BC }, /* GL_TEXTURE_COLOR_TABLE_SGI */ + { 39373, 0x000081EF }, /* GL_TEXTURE_COLOR_WRITEMASK_SGIS */ + { 39405, 0x000080BF }, /* GL_TEXTURE_COMPARE_FAIL_VALUE_ARB */ + { 39439, 0x0000884D }, /* GL_TEXTURE_COMPARE_FUNC */ + { 39463, 0x0000884D }, /* GL_TEXTURE_COMPARE_FUNC_ARB */ + { 39491, 0x0000884C }, /* GL_TEXTURE_COMPARE_MODE */ + { 39515, 0x0000884C }, /* GL_TEXTURE_COMPARE_MODE_ARB */ + { 39543, 0x0000819B }, /* GL_TEXTURE_COMPARE_OPERATOR_SGIX */ + { 39576, 0x0000819A }, /* GL_TEXTURE_COMPARE_SGIX */ + { 39600, 0x00001003 }, /* GL_TEXTURE_COMPONENTS */ + { 39622, 0x000086A1 }, /* GL_TEXTURE_COMPRESSED */ + { 39644, 0x000086A1 }, /* GL_TEXTURE_COMPRESSED_ARB */ + { 39670, 0x000086A3 }, /* GL_TEXTURE_COMPRESSED_FORMATS_ARB */ + { 39704, 0x000086A0 }, /* GL_TEXTURE_COMPRESSED_IMAGE_SIZE */ + { 39737, 0x000086A0 }, /* GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB */ + { 39774, 0x000084EF }, /* GL_TEXTURE_COMPRESSION_HINT */ + { 39802, 0x000084EF }, /* GL_TEXTURE_COMPRESSION_HINT_ARB */ + { 39834, 0x00008078 }, /* GL_TEXTURE_COORD_ARRAY */ + { 39857, 0x0000889A }, /* GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING */ + { 39895, 0x0000889A }, /* GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB */ + { 39937, 0x00008092 }, /* GL_TEXTURE_COORD_ARRAY_POINTER */ + { 39968, 0x00008088 }, /* GL_TEXTURE_COORD_ARRAY_SIZE */ + { 39996, 0x0000808A }, /* GL_TEXTURE_COORD_ARRAY_STRIDE */ + { 40026, 0x00008089 }, /* GL_TEXTURE_COORD_ARRAY_TYPE */ + { 40054, 0x00008B9D }, /* GL_TEXTURE_CROP_RECT_OES */ + { 40079, 0x00008513 }, /* GL_TEXTURE_CUBE_MAP */ + { 40099, 0x00008513 }, /* GL_TEXTURE_CUBE_MAP_ARB */ + { 40123, 0x00008516 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X */ + { 40154, 0x00008516 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB */ + { 40189, 0x00008516 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X_OES */ + { 40224, 0x00008518 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y */ + { 40255, 0x00008518 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB */ + { 40290, 0x00008518 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_OES */ + { 40325, 0x0000851A }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z */ + { 40356, 0x0000851A }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB */ + { 40391, 0x0000851A }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_OES */ + { 40426, 0x00008513 }, /* GL_TEXTURE_CUBE_MAP_OES */ + { 40450, 0x00008515 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X */ + { 40481, 0x00008515 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB */ + { 40516, 0x00008515 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X_OES */ + { 40551, 0x00008517 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y */ + { 40582, 0x00008517 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB */ + { 40617, 0x00008517 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y_OES */ + { 40652, 0x00008519 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z */ + { 40683, 0x00008519 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB */ + { 40718, 0x00008519 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z_OES */ + { 40753, 0x000088F4 }, /* GL_TEXTURE_CUBE_MAP_SEAMLESS */ + { 40782, 0x00008071 }, /* GL_TEXTURE_DEPTH */ + { 40799, 0x0000884A }, /* GL_TEXTURE_DEPTH_SIZE */ + { 40821, 0x0000884A }, /* GL_TEXTURE_DEPTH_SIZE_ARB */ + { 40847, 0x00002300 }, /* GL_TEXTURE_ENV */ + { 40862, 0x00002201 }, /* GL_TEXTURE_ENV_COLOR */ + { 40883, 0x00002200 }, /* GL_TEXTURE_ENV_MODE */ + { 40903, 0x00008500 }, /* GL_TEXTURE_FILTER_CONTROL */ + { 40929, 0x00008500 }, /* GL_TEXTURE_FILTER_CONTROL_EXT */ + { 40959, 0x00002500 }, /* GL_TEXTURE_GEN_MODE */ + { 40979, 0x00002500 }, /* GL_TEXTURE_GEN_MODE_OES */ + { 41003, 0x00000C63 }, /* GL_TEXTURE_GEN_Q */ + { 41020, 0x00000C62 }, /* GL_TEXTURE_GEN_R */ + { 41037, 0x00000C60 }, /* GL_TEXTURE_GEN_S */ + { 41054, 0x00008D60 }, /* GL_TEXTURE_GEN_STR_OES */ + { 41077, 0x00000C61 }, /* GL_TEXTURE_GEN_T */ + { 41094, 0x0000819D }, /* GL_TEXTURE_GEQUAL_R_SGIX */ + { 41119, 0x0000805D }, /* GL_TEXTURE_GREEN_SIZE */ + { 41141, 0x0000805D }, /* GL_TEXTURE_GREEN_SIZE_EXT */ + { 41167, 0x00001001 }, /* GL_TEXTURE_HEIGHT */ + { 41185, 0x000080ED }, /* GL_TEXTURE_INDEX_SIZE_EXT */ + { 41211, 0x00008061 }, /* GL_TEXTURE_INTENSITY_SIZE */ + { 41237, 0x00008061 }, /* GL_TEXTURE_INTENSITY_SIZE_EXT */ + { 41267, 0x00001003 }, /* GL_TEXTURE_INTERNAL_FORMAT */ + { 41294, 0x0000819C }, /* GL_TEXTURE_LEQUAL_R_SGIX */ + { 41319, 0x00008501 }, /* GL_TEXTURE_LOD_BIAS */ + { 41339, 0x00008501 }, /* GL_TEXTURE_LOD_BIAS_EXT */ + { 41363, 0x00008190 }, /* GL_TEXTURE_LOD_BIAS_R_SGIX */ + { 41390, 0x0000818E }, /* GL_TEXTURE_LOD_BIAS_S_SGIX */ + { 41417, 0x0000818F }, /* GL_TEXTURE_LOD_BIAS_T_SGIX */ + { 41444, 0x00008060 }, /* GL_TEXTURE_LUMINANCE_SIZE */ + { 41470, 0x00008060 }, /* GL_TEXTURE_LUMINANCE_SIZE_EXT */ + { 41500, 0x00002800 }, /* GL_TEXTURE_MAG_FILTER */ + { 41522, 0x00000BA8 }, /* GL_TEXTURE_MATRIX */ + { 41540, 0x0000898F }, /* GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES */ + { 41580, 0x000084FE }, /* GL_TEXTURE_MAX_ANISOTROPY_EXT */ + { 41610, 0x0000836B }, /* GL_TEXTURE_MAX_CLAMP_R_SGIX */ + { 41638, 0x00008369 }, /* GL_TEXTURE_MAX_CLAMP_S_SGIX */ + { 41666, 0x0000836A }, /* GL_TEXTURE_MAX_CLAMP_T_SGIX */ + { 41694, 0x0000813D }, /* GL_TEXTURE_MAX_LEVEL */ + { 41715, 0x0000813B }, /* GL_TEXTURE_MAX_LOD */ + { 41734, 0x00002801 }, /* GL_TEXTURE_MIN_FILTER */ + { 41756, 0x0000813A }, /* GL_TEXTURE_MIN_LOD */ + { 41775, 0x00008066 }, /* GL_TEXTURE_PRIORITY */ + { 41795, 0x000085B7 }, /* GL_TEXTURE_RANGE_LENGTH_APPLE */ + { 41825, 0x000085B8 }, /* GL_TEXTURE_RANGE_POINTER_APPLE */ + { 41856, 0x000084F5 }, /* GL_TEXTURE_RECTANGLE_ARB */ + { 41881, 0x000084F5 }, /* GL_TEXTURE_RECTANGLE_NV */ + { 41905, 0x0000805C }, /* GL_TEXTURE_RED_SIZE */ + { 41925, 0x0000805C }, /* GL_TEXTURE_RED_SIZE_EXT */ + { 41949, 0x00008067 }, /* GL_TEXTURE_RESIDENT */ + { 41969, 0x00000BA5 }, /* GL_TEXTURE_STACK_DEPTH */ + { 41992, 0x000088F1 }, /* GL_TEXTURE_STENCIL_SIZE */ + { 42016, 0x000088F1 }, /* GL_TEXTURE_STENCIL_SIZE_EXT */ + { 42044, 0x000085BC }, /* GL_TEXTURE_STORAGE_HINT_APPLE */ + { 42074, 0x00008065 }, /* GL_TEXTURE_TOO_LARGE_EXT */ + { 42099, 0x0000888F }, /* GL_TEXTURE_UNSIGNED_REMAP_MODE_NV */ + { 42133, 0x00001000 }, /* GL_TEXTURE_WIDTH */ + { 42150, 0x00008072 }, /* GL_TEXTURE_WRAP_R */ + { 42168, 0x00008072 }, /* GL_TEXTURE_WRAP_R_OES */ + { 42190, 0x00002802 }, /* GL_TEXTURE_WRAP_S */ + { 42208, 0x00002803 }, /* GL_TEXTURE_WRAP_T */ + { 42226, 0x0000911B }, /* GL_TIMEOUT_EXPIRED */ + { 42245, 0x000088BF }, /* GL_TIME_ELAPSED_EXT */ + { 42265, 0x00008648 }, /* GL_TRACK_MATRIX_NV */ + { 42284, 0x00008649 }, /* GL_TRACK_MATRIX_TRANSFORM_NV */ + { 42313, 0x00001000 }, /* GL_TRANSFORM_BIT */ + { 42330, 0x00008E22 }, /* GL_TRANSFORM_FEEDBACK */ + { 42352, 0x00008E25 }, /* GL_TRANSFORM_FEEDBACK_BINDING */ + { 42382, 0x00008E24 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE */ + { 42418, 0x00008C8F }, /* GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT */ + { 42459, 0x00008C8E }, /* GL_TRANSFORM_FEEDBACK_BUFFER_EXT */ + { 42492, 0x00008C7F }, /* GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT */ + { 42530, 0x00008E23 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED */ + { 42566, 0x00008C85 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT */ + { 42604, 0x00008C84 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT */ + { 42643, 0x00008C88 }, /* GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT */ + { 42688, 0x00008C83 }, /* GL_TRANSFORM_FEEDBACK_VARYINGS_EXT */ + { 42723, 0x00008C76 }, /* GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT */ + { 42768, 0x000084E6 }, /* GL_TRANSPOSE_COLOR_MATRIX */ + { 42794, 0x000084E6 }, /* GL_TRANSPOSE_COLOR_MATRIX_ARB */ + { 42824, 0x000088B7 }, /* GL_TRANSPOSE_CURRENT_MATRIX_ARB */ + { 42856, 0x000084E3 }, /* GL_TRANSPOSE_MODELVIEW_MATRIX */ + { 42886, 0x000084E3 }, /* GL_TRANSPOSE_MODELVIEW_MATRIX_ARB */ + { 42920, 0x0000862C }, /* GL_TRANSPOSE_NV */ + { 42936, 0x000084E4 }, /* GL_TRANSPOSE_PROJECTION_MATRIX */ + { 42967, 0x000084E4 }, /* GL_TRANSPOSE_PROJECTION_MATRIX_ARB */ + { 43002, 0x000084E5 }, /* GL_TRANSPOSE_TEXTURE_MATRIX */ + { 43030, 0x000084E5 }, /* GL_TRANSPOSE_TEXTURE_MATRIX_ARB */ + { 43062, 0x00000004 }, /* GL_TRIANGLES */ + { 43075, 0x0000000C }, /* GL_TRIANGLES_ADJACENCY_ARB */ + { 43102, 0x00000006 }, /* GL_TRIANGLE_FAN */ + { 43118, 0x00008615 }, /* GL_TRIANGLE_MESH_SUN */ + { 43139, 0x00000005 }, /* GL_TRIANGLE_STRIP */ + { 43157, 0x0000000D }, /* GL_TRIANGLE_STRIP_ADJACENCY_ARB */ + { 43189, 0x00000001 }, /* GL_TRUE */ + { 43197, 0x00008A1C }, /* GL_UNDEFINED_APPLE */ + { 43216, 0x00000CF5 }, /* GL_UNPACK_ALIGNMENT */ + { 43236, 0x0000806E }, /* GL_UNPACK_IMAGE_HEIGHT */ + { 43259, 0x00000CF1 }, /* GL_UNPACK_LSB_FIRST */ + { 43279, 0x00000CF2 }, /* GL_UNPACK_ROW_LENGTH */ + { 43300, 0x0000806D }, /* GL_UNPACK_SKIP_IMAGES */ + { 43322, 0x00000CF4 }, /* GL_UNPACK_SKIP_PIXELS */ + { 43344, 0x00000CF3 }, /* GL_UNPACK_SKIP_ROWS */ + { 43364, 0x00000CF0 }, /* GL_UNPACK_SWAP_BYTES */ + { 43385, 0x00009118 }, /* GL_UNSIGNALED */ + { 43399, 0x00001401 }, /* GL_UNSIGNED_BYTE */ + { 43416, 0x00008362 }, /* GL_UNSIGNED_BYTE_2_3_3_REV */ + { 43443, 0x00008032 }, /* GL_UNSIGNED_BYTE_3_3_2 */ + { 43466, 0x00001405 }, /* GL_UNSIGNED_INT */ + { 43482, 0x00008036 }, /* GL_UNSIGNED_INT_10_10_10_2 */ + { 43509, 0x00008DF6 }, /* GL_UNSIGNED_INT_10_10_10_2_OES */ + { 43540, 0x000084FA }, /* GL_UNSIGNED_INT_24_8 */ + { 43561, 0x000084FA }, /* GL_UNSIGNED_INT_24_8_EXT */ + { 43586, 0x000084FA }, /* GL_UNSIGNED_INT_24_8_NV */ + { 43610, 0x000084FA }, /* GL_UNSIGNED_INT_24_8_OES */ + { 43635, 0x00008368 }, /* GL_UNSIGNED_INT_2_10_10_10_REV */ + { 43666, 0x00008368 }, /* GL_UNSIGNED_INT_2_10_10_10_REV_EXT */ + { 43701, 0x00008035 }, /* GL_UNSIGNED_INT_8_8_8_8 */ + { 43725, 0x00008367 }, /* GL_UNSIGNED_INT_8_8_8_8_REV */ + { 43753, 0x00008C17 }, /* GL_UNSIGNED_NORMALIZED */ + { 43776, 0x00001403 }, /* GL_UNSIGNED_SHORT */ + { 43794, 0x00008366 }, /* GL_UNSIGNED_SHORT_1_5_5_5_REV */ + { 43824, 0x00008366 }, /* GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT */ + { 43858, 0x00008033 }, /* GL_UNSIGNED_SHORT_4_4_4_4 */ + { 43884, 0x00008365 }, /* GL_UNSIGNED_SHORT_4_4_4_4_REV */ + { 43914, 0x00008365 }, /* GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT */ + { 43948, 0x00008034 }, /* GL_UNSIGNED_SHORT_5_5_5_1 */ + { 43974, 0x00008363 }, /* GL_UNSIGNED_SHORT_5_6_5 */ + { 43998, 0x00008364 }, /* GL_UNSIGNED_SHORT_5_6_5_REV */ + { 44026, 0x000085BA }, /* GL_UNSIGNED_SHORT_8_8_APPLE */ + { 44054, 0x000085BA }, /* GL_UNSIGNED_SHORT_8_8_MESA */ + { 44081, 0x000085BB }, /* GL_UNSIGNED_SHORT_8_8_REV_APPLE */ + { 44113, 0x000085BB }, /* GL_UNSIGNED_SHORT_8_8_REV_MESA */ + { 44144, 0x00008CA2 }, /* GL_UPPER_LEFT */ + { 44158, 0x00002A20 }, /* GL_V2F */ + { 44165, 0x00002A21 }, /* GL_V3F */ + { 44172, 0x00008B83 }, /* GL_VALIDATE_STATUS */ + { 44191, 0x00001F00 }, /* GL_VENDOR */ + { 44201, 0x00001F02 }, /* GL_VERSION */ + { 44212, 0x00008074 }, /* GL_VERTEX_ARRAY */ + { 44228, 0x000085B5 }, /* GL_VERTEX_ARRAY_BINDING */ + { 44252, 0x000085B5 }, /* GL_VERTEX_ARRAY_BINDING_APPLE */ + { 44282, 0x00008896 }, /* GL_VERTEX_ARRAY_BUFFER_BINDING */ + { 44313, 0x00008896 }, /* GL_VERTEX_ARRAY_BUFFER_BINDING_ARB */ + { 44348, 0x0000808E }, /* GL_VERTEX_ARRAY_POINTER */ + { 44372, 0x0000807A }, /* GL_VERTEX_ARRAY_SIZE */ + { 44393, 0x0000807C }, /* GL_VERTEX_ARRAY_STRIDE */ + { 44416, 0x0000807B }, /* GL_VERTEX_ARRAY_TYPE */ + { 44437, 0x00008650 }, /* GL_VERTEX_ATTRIB_ARRAY0_NV */ + { 44464, 0x0000865A }, /* GL_VERTEX_ATTRIB_ARRAY10_NV */ + { 44492, 0x0000865B }, /* GL_VERTEX_ATTRIB_ARRAY11_NV */ + { 44520, 0x0000865C }, /* GL_VERTEX_ATTRIB_ARRAY12_NV */ + { 44548, 0x0000865D }, /* GL_VERTEX_ATTRIB_ARRAY13_NV */ + { 44576, 0x0000865E }, /* GL_VERTEX_ATTRIB_ARRAY14_NV */ + { 44604, 0x0000865F }, /* GL_VERTEX_ATTRIB_ARRAY15_NV */ + { 44632, 0x00008651 }, /* GL_VERTEX_ATTRIB_ARRAY1_NV */ + { 44659, 0x00008652 }, /* GL_VERTEX_ATTRIB_ARRAY2_NV */ + { 44686, 0x00008653 }, /* GL_VERTEX_ATTRIB_ARRAY3_NV */ + { 44713, 0x00008654 }, /* GL_VERTEX_ATTRIB_ARRAY4_NV */ + { 44740, 0x00008655 }, /* GL_VERTEX_ATTRIB_ARRAY5_NV */ + { 44767, 0x00008656 }, /* GL_VERTEX_ATTRIB_ARRAY6_NV */ + { 44794, 0x00008657 }, /* GL_VERTEX_ATTRIB_ARRAY7_NV */ + { 44821, 0x00008658 }, /* GL_VERTEX_ATTRIB_ARRAY8_NV */ + { 44848, 0x00008659 }, /* GL_VERTEX_ATTRIB_ARRAY9_NV */ + { 44875, 0x0000889F }, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING */ + { 44913, 0x0000889F }, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB */ + { 44955, 0x00008622 }, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED */ + { 44986, 0x00008622 }, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB */ + { 45021, 0x0000886A }, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED */ + { 45055, 0x0000886A }, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB */ + { 45093, 0x00008645 }, /* GL_VERTEX_ATTRIB_ARRAY_POINTER */ + { 45124, 0x00008645 }, /* GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB */ + { 45159, 0x00008623 }, /* GL_VERTEX_ATTRIB_ARRAY_SIZE */ + { 45187, 0x00008623 }, /* GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB */ + { 45219, 0x00008624 }, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE */ + { 45249, 0x00008624 }, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB */ + { 45283, 0x00008625 }, /* GL_VERTEX_ATTRIB_ARRAY_TYPE */ + { 45311, 0x00008625 }, /* GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB */ + { 45343, 0x000086A7 }, /* GL_VERTEX_BLEND_ARB */ + { 45363, 0x00008620 }, /* GL_VERTEX_PROGRAM_ARB */ + { 45385, 0x0000864A }, /* GL_VERTEX_PROGRAM_BINDING_NV */ + { 45414, 0x00008620 }, /* GL_VERTEX_PROGRAM_NV */ + { 45435, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE */ + { 45464, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE_ARB */ + { 45497, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE_NV */ + { 45529, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE */ + { 45556, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE_ARB */ + { 45587, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE_NV */ + { 45617, 0x00008B31 }, /* GL_VERTEX_SHADER */ + { 45634, 0x00008B31 }, /* GL_VERTEX_SHADER_ARB */ + { 45655, 0x00008621 }, /* GL_VERTEX_STATE_PROGRAM_NV */ + { 45682, 0x00000BA2 }, /* GL_VIEWPORT */ + { 45694, 0x00000800 }, /* GL_VIEWPORT_BIT */ + { 45710, 0x00008A1A }, /* GL_VOLATILE_APPLE */ + { 45728, 0x0000911D }, /* GL_WAIT_FAILED */ + { 45743, 0x000086AD }, /* GL_WEIGHT_ARRAY_ARB */ + { 45763, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING */ + { 45794, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB */ + { 45829, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING_OES */ + { 45864, 0x000086AD }, /* GL_WEIGHT_ARRAY_OES */ + { 45884, 0x000086AC }, /* GL_WEIGHT_ARRAY_POINTER_ARB */ + { 45912, 0x000086AC }, /* GL_WEIGHT_ARRAY_POINTER_OES */ + { 45940, 0x000086AB }, /* GL_WEIGHT_ARRAY_SIZE_ARB */ + { 45965, 0x000086AB }, /* GL_WEIGHT_ARRAY_SIZE_OES */ + { 45990, 0x000086AA }, /* GL_WEIGHT_ARRAY_STRIDE_ARB */ + { 46017, 0x000086AA }, /* GL_WEIGHT_ARRAY_STRIDE_OES */ + { 46044, 0x000086A9 }, /* GL_WEIGHT_ARRAY_TYPE_ARB */ + { 46069, 0x000086A9 }, /* GL_WEIGHT_ARRAY_TYPE_OES */ + { 46094, 0x000086A6 }, /* GL_WEIGHT_SUM_UNITY_ARB */ + { 46118, 0x000081D4 }, /* GL_WRAP_BORDER_SUN */ + { 46137, 0x000088B9 }, /* GL_WRITE_ONLY */ + { 46151, 0x000088B9 }, /* GL_WRITE_ONLY_ARB */ + { 46169, 0x000088B9 }, /* GL_WRITE_ONLY_OES */ + { 46187, 0x00001506 }, /* GL_XOR */ + { 46194, 0x000085B9 }, /* GL_YCBCR_422_APPLE */ + { 46213, 0x00008757 }, /* GL_YCBCR_MESA */ + { 46227, 0x00000000 }, /* GL_ZERO */ + { 46235, 0x00000D16 }, /* GL_ZOOM_X */ + { 46245, 0x00000D17 }, /* GL_ZOOM_Y */ }; -static const unsigned reduced_enums[1423] = +static const unsigned reduced_enums[1428] = { - 500, /* GL_FALSE */ - 760, /* GL_LINES */ - 763, /* GL_LINE_LOOP */ - 770, /* GL_LINE_STRIP */ - 1934, /* GL_TRIANGLES */ - 1938, /* GL_TRIANGLE_STRIP */ - 1936, /* GL_TRIANGLE_FAN */ - 1393, /* GL_QUADS */ - 1397, /* GL_QUAD_STRIP */ - 1273, /* GL_POLYGON */ - 761, /* GL_LINES_ADJACENCY_ARB */ - 771, /* GL_LINE_STRIP_ADJACENCY_ARB */ - 1935, /* GL_TRIANGLES_ADJACENCY_ARB */ - 1939, /* GL_TRIANGLE_STRIP_ADJACENCY_ARB */ - 1285, /* GL_POLYGON_STIPPLE_BIT */ - 1228, /* GL_PIXEL_MODE_BIT */ - 747, /* GL_LIGHTING_BIT */ - 532, /* GL_FOG_BIT */ + 503, /* GL_FALSE */ + 764, /* GL_LINES */ + 767, /* GL_LINE_LOOP */ + 774, /* GL_LINE_STRIP */ + 1939, /* GL_TRIANGLES */ + 1943, /* GL_TRIANGLE_STRIP */ + 1941, /* GL_TRIANGLE_FAN */ + 1397, /* GL_QUADS */ + 1401, /* GL_QUAD_STRIP */ + 1277, /* GL_POLYGON */ + 765, /* GL_LINES_ADJACENCY_ARB */ + 775, /* GL_LINE_STRIP_ADJACENCY_ARB */ + 1940, /* GL_TRIANGLES_ADJACENCY_ARB */ + 1944, /* GL_TRIANGLE_STRIP_ADJACENCY_ARB */ + 1289, /* GL_POLYGON_STIPPLE_BIT */ + 1232, /* GL_PIXEL_MODE_BIT */ + 751, /* GL_LIGHTING_BIT */ + 536, /* GL_FOG_BIT */ 8, /* GL_ACCUM */ - 781, /* GL_LOAD */ - 1471, /* GL_RETURN */ - 1096, /* GL_MULT */ + 785, /* GL_LOAD */ + 1475, /* GL_RETURN */ + 1100, /* GL_MULT */ 23, /* GL_ADD */ - 1112, /* GL_NEVER */ - 737, /* GL_LESS */ - 490, /* GL_EQUAL */ - 736, /* GL_LEQUAL */ - 649, /* GL_GREATER */ - 1129, /* GL_NOTEQUAL */ - 648, /* GL_GEQUAL */ + 1116, /* GL_NEVER */ + 741, /* GL_LESS */ + 493, /* GL_EQUAL */ + 740, /* GL_LEQUAL */ + 653, /* GL_GREATER */ + 1133, /* GL_NOTEQUAL */ + 652, /* GL_GEQUAL */ 47, /* GL_ALWAYS */ - 1622, /* GL_SRC_COLOR */ - 1161, /* GL_ONE_MINUS_SRC_COLOR */ - 1620, /* GL_SRC_ALPHA */ - 1160, /* GL_ONE_MINUS_SRC_ALPHA */ - 469, /* GL_DST_ALPHA */ - 1158, /* GL_ONE_MINUS_DST_ALPHA */ - 470, /* GL_DST_COLOR */ - 1159, /* GL_ONE_MINUS_DST_COLOR */ - 1621, /* GL_SRC_ALPHA_SATURATE */ - 629, /* GL_FRONT_LEFT */ - 630, /* GL_FRONT_RIGHT */ + 1627, /* GL_SRC_COLOR */ + 1165, /* GL_ONE_MINUS_SRC_COLOR */ + 1625, /* GL_SRC_ALPHA */ + 1164, /* GL_ONE_MINUS_SRC_ALPHA */ + 472, /* GL_DST_ALPHA */ + 1162, /* GL_ONE_MINUS_DST_ALPHA */ + 473, /* GL_DST_COLOR */ + 1163, /* GL_ONE_MINUS_DST_COLOR */ + 1626, /* GL_SRC_ALPHA_SATURATE */ + 633, /* GL_FRONT_LEFT */ + 634, /* GL_FRONT_RIGHT */ 69, /* GL_BACK_LEFT */ 70, /* GL_BACK_RIGHT */ - 626, /* GL_FRONT */ + 630, /* GL_FRONT */ 68, /* GL_BACK */ - 735, /* GL_LEFT */ - 1519, /* GL_RIGHT */ - 627, /* GL_FRONT_AND_BACK */ + 739, /* GL_LEFT */ + 1524, /* GL_RIGHT */ + 631, /* GL_FRONT_AND_BACK */ 63, /* GL_AUX0 */ 64, /* GL_AUX1 */ 65, /* GL_AUX2 */ 66, /* GL_AUX3 */ - 723, /* GL_INVALID_ENUM */ - 728, /* GL_INVALID_VALUE */ - 727, /* GL_INVALID_OPERATION */ - 1627, /* GL_STACK_OVERFLOW */ - 1628, /* GL_STACK_UNDERFLOW */ - 1186, /* GL_OUT_OF_MEMORY */ - 724, /* GL_INVALID_FRAMEBUFFER_OPERATION */ + 727, /* GL_INVALID_ENUM */ + 732, /* GL_INVALID_VALUE */ + 731, /* GL_INVALID_OPERATION */ + 1632, /* GL_STACK_OVERFLOW */ + 1633, /* GL_STACK_UNDERFLOW */ + 1190, /* GL_OUT_OF_MEMORY */ + 728, /* GL_INVALID_FRAMEBUFFER_OPERATION */ 0, /* GL_2D */ 2, /* GL_3D */ 3, /* GL_3D_COLOR */ 4, /* GL_3D_COLOR_TEXTURE */ 6, /* GL_4D_COLOR_TEXTURE */ - 1206, /* GL_PASS_THROUGH_TOKEN */ - 1272, /* GL_POINT_TOKEN */ - 772, /* GL_LINE_TOKEN */ - 1286, /* GL_POLYGON_TOKEN */ + 1210, /* GL_PASS_THROUGH_TOKEN */ + 1276, /* GL_POINT_TOKEN */ + 776, /* GL_LINE_TOKEN */ + 1290, /* GL_POLYGON_TOKEN */ 75, /* GL_BITMAP_TOKEN */ - 468, /* GL_DRAW_PIXEL_TOKEN */ - 315, /* GL_COPY_PIXEL_TOKEN */ - 764, /* GL_LINE_RESET_TOKEN */ - 493, /* GL_EXP */ - 494, /* GL_EXP2 */ - 352, /* GL_CW */ + 471, /* GL_DRAW_PIXEL_TOKEN */ + 318, /* GL_COPY_PIXEL_TOKEN */ + 768, /* GL_LINE_RESET_TOKEN */ + 496, /* GL_EXP */ + 497, /* GL_EXP2 */ + 355, /* GL_CW */ 137, /* GL_CCW */ - 158, /* GL_COEFF */ - 1183, /* GL_ORDER */ - 405, /* GL_DOMAIN */ - 325, /* GL_CURRENT_COLOR */ - 328, /* GL_CURRENT_INDEX */ - 334, /* GL_CURRENT_NORMAL */ - 348, /* GL_CURRENT_TEXTURE_COORDS */ - 340, /* GL_CURRENT_RASTER_COLOR */ - 342, /* GL_CURRENT_RASTER_INDEX */ - 346, /* GL_CURRENT_RASTER_TEXTURE_COORDS */ - 343, /* GL_CURRENT_RASTER_POSITION */ - 344, /* GL_CURRENT_RASTER_POSITION_VALID */ - 341, /* GL_CURRENT_RASTER_DISTANCE */ - 1264, /* GL_POINT_SMOOTH */ - 1248, /* GL_POINT_SIZE */ - 1263, /* GL_POINT_SIZE_RANGE */ - 1254, /* GL_POINT_SIZE_GRANULARITY */ - 765, /* GL_LINE_SMOOTH */ - 773, /* GL_LINE_WIDTH */ - 775, /* GL_LINE_WIDTH_RANGE */ - 774, /* GL_LINE_WIDTH_GRANULARITY */ - 767, /* GL_LINE_STIPPLE */ - 768, /* GL_LINE_STIPPLE_PATTERN */ - 769, /* GL_LINE_STIPPLE_REPEAT */ - 780, /* GL_LIST_MODE */ - 963, /* GL_MAX_LIST_NESTING */ - 777, /* GL_LIST_BASE */ - 779, /* GL_LIST_INDEX */ - 1275, /* GL_POLYGON_MODE */ - 1282, /* GL_POLYGON_SMOOTH */ - 1284, /* GL_POLYGON_STIPPLE */ - 479, /* GL_EDGE_FLAG */ - 318, /* GL_CULL_FACE */ - 319, /* GL_CULL_FACE_MODE */ - 628, /* GL_FRONT_FACE */ - 746, /* GL_LIGHTING */ - 751, /* GL_LIGHT_MODEL_LOCAL_VIEWER */ - 752, /* GL_LIGHT_MODEL_TWO_SIDE */ - 748, /* GL_LIGHT_MODEL_AMBIENT */ - 1569, /* GL_SHADE_MODEL */ - 206, /* GL_COLOR_MATERIAL_FACE */ - 207, /* GL_COLOR_MATERIAL_PARAMETER */ - 205, /* GL_COLOR_MATERIAL */ - 531, /* GL_FOG */ - 553, /* GL_FOG_INDEX */ - 549, /* GL_FOG_DENSITY */ - 557, /* GL_FOG_START */ - 551, /* GL_FOG_END */ - 554, /* GL_FOG_MODE */ - 533, /* GL_FOG_COLOR */ - 390, /* GL_DEPTH_RANGE */ - 399, /* GL_DEPTH_TEST */ - 402, /* GL_DEPTH_WRITEMASK */ - 375, /* GL_DEPTH_CLEAR_VALUE */ - 389, /* GL_DEPTH_FUNC */ + 161, /* GL_COEFF */ + 1187, /* GL_ORDER */ + 408, /* GL_DOMAIN */ + 328, /* GL_CURRENT_COLOR */ + 331, /* GL_CURRENT_INDEX */ + 337, /* GL_CURRENT_NORMAL */ + 351, /* GL_CURRENT_TEXTURE_COORDS */ + 343, /* GL_CURRENT_RASTER_COLOR */ + 345, /* GL_CURRENT_RASTER_INDEX */ + 349, /* GL_CURRENT_RASTER_TEXTURE_COORDS */ + 346, /* GL_CURRENT_RASTER_POSITION */ + 347, /* GL_CURRENT_RASTER_POSITION_VALID */ + 344, /* GL_CURRENT_RASTER_DISTANCE */ + 1268, /* GL_POINT_SMOOTH */ + 1252, /* GL_POINT_SIZE */ + 1267, /* GL_POINT_SIZE_RANGE */ + 1258, /* GL_POINT_SIZE_GRANULARITY */ + 769, /* GL_LINE_SMOOTH */ + 777, /* GL_LINE_WIDTH */ + 779, /* GL_LINE_WIDTH_RANGE */ + 778, /* GL_LINE_WIDTH_GRANULARITY */ + 771, /* GL_LINE_STIPPLE */ + 772, /* GL_LINE_STIPPLE_PATTERN */ + 773, /* GL_LINE_STIPPLE_REPEAT */ + 784, /* GL_LIST_MODE */ + 967, /* GL_MAX_LIST_NESTING */ + 781, /* GL_LIST_BASE */ + 783, /* GL_LIST_INDEX */ + 1279, /* GL_POLYGON_MODE */ + 1286, /* GL_POLYGON_SMOOTH */ + 1288, /* GL_POLYGON_STIPPLE */ + 482, /* GL_EDGE_FLAG */ + 321, /* GL_CULL_FACE */ + 322, /* GL_CULL_FACE_MODE */ + 632, /* GL_FRONT_FACE */ + 750, /* GL_LIGHTING */ + 755, /* GL_LIGHT_MODEL_LOCAL_VIEWER */ + 756, /* GL_LIGHT_MODEL_TWO_SIDE */ + 752, /* GL_LIGHT_MODEL_AMBIENT */ + 1574, /* GL_SHADE_MODEL */ + 209, /* GL_COLOR_MATERIAL_FACE */ + 210, /* GL_COLOR_MATERIAL_PARAMETER */ + 208, /* GL_COLOR_MATERIAL */ + 535, /* GL_FOG */ + 557, /* GL_FOG_INDEX */ + 553, /* GL_FOG_DENSITY */ + 561, /* GL_FOG_START */ + 555, /* GL_FOG_END */ + 558, /* GL_FOG_MODE */ + 537, /* GL_FOG_COLOR */ + 393, /* GL_DEPTH_RANGE */ + 402, /* GL_DEPTH_TEST */ + 405, /* GL_DEPTH_WRITEMASK */ + 378, /* GL_DEPTH_CLEAR_VALUE */ + 392, /* GL_DEPTH_FUNC */ 12, /* GL_ACCUM_CLEAR_VALUE */ - 1671, /* GL_STENCIL_TEST */ - 1652, /* GL_STENCIL_CLEAR_VALUE */ - 1654, /* GL_STENCIL_FUNC */ - 1673, /* GL_STENCIL_VALUE_MASK */ - 1653, /* GL_STENCIL_FAIL */ - 1668, /* GL_STENCIL_PASS_DEPTH_FAIL */ - 1669, /* GL_STENCIL_PASS_DEPTH_PASS */ - 1670, /* GL_STENCIL_REF */ - 1674, /* GL_STENCIL_WRITEMASK */ - 922, /* GL_MATRIX_MODE */ - 1118, /* GL_NORMALIZE */ - 2037, /* GL_VIEWPORT */ - 1091, /* GL_MODELVIEW_STACK_DEPTH */ - 1370, /* GL_PROJECTION_STACK_DEPTH */ - 1896, /* GL_TEXTURE_STACK_DEPTH */ - 1088, /* GL_MODELVIEW_MATRIX */ - 1368, /* GL_PROJECTION_MATRIX */ - 1878, /* GL_TEXTURE_MATRIX */ + 1676, /* GL_STENCIL_TEST */ + 1657, /* GL_STENCIL_CLEAR_VALUE */ + 1659, /* GL_STENCIL_FUNC */ + 1678, /* GL_STENCIL_VALUE_MASK */ + 1658, /* GL_STENCIL_FAIL */ + 1673, /* GL_STENCIL_PASS_DEPTH_FAIL */ + 1674, /* GL_STENCIL_PASS_DEPTH_PASS */ + 1675, /* GL_STENCIL_REF */ + 1679, /* GL_STENCIL_WRITEMASK */ + 926, /* GL_MATRIX_MODE */ + 1122, /* GL_NORMALIZE */ + 2042, /* GL_VIEWPORT */ + 1095, /* GL_MODELVIEW_STACK_DEPTH */ + 1374, /* GL_PROJECTION_STACK_DEPTH */ + 1901, /* GL_TEXTURE_STACK_DEPTH */ + 1092, /* GL_MODELVIEW_MATRIX */ + 1372, /* GL_PROJECTION_MATRIX */ + 1883, /* GL_TEXTURE_MATRIX */ 61, /* GL_ATTRIB_STACK_DEPTH */ - 148, /* GL_CLIENT_ATTRIB_STACK_DEPTH */ + 151, /* GL_CLIENT_ATTRIB_STACK_DEPTH */ 43, /* GL_ALPHA_TEST */ 44, /* GL_ALPHA_TEST_FUNC */ 45, /* GL_ALPHA_TEST_REF */ - 404, /* GL_DITHER */ + 407, /* GL_DITHER */ 79, /* GL_BLEND_DST */ 93, /* GL_BLEND_SRC */ 76, /* GL_BLEND */ - 783, /* GL_LOGIC_OP_MODE */ - 695, /* GL_INDEX_LOGIC_OP */ - 204, /* GL_COLOR_LOGIC_OP */ + 787, /* GL_LOGIC_OP_MODE */ + 699, /* GL_INDEX_LOGIC_OP */ + 207, /* GL_COLOR_LOGIC_OP */ 67, /* GL_AUX_BUFFERS */ - 415, /* GL_DRAW_BUFFER */ - 1412, /* GL_READ_BUFFER */ - 1547, /* GL_SCISSOR_BOX */ - 1548, /* GL_SCISSOR_TEST */ - 694, /* GL_INDEX_CLEAR_VALUE */ - 699, /* GL_INDEX_WRITEMASK */ - 201, /* GL_COLOR_CLEAR_VALUE */ - 243, /* GL_COLOR_WRITEMASK */ - 696, /* GL_INDEX_MODE */ - 1512, /* GL_RGBA_MODE */ - 414, /* GL_DOUBLEBUFFER */ - 1675, /* GL_STEREO */ - 1463, /* GL_RENDER_MODE */ - 1207, /* GL_PERSPECTIVE_CORRECTION_HINT */ - 1265, /* GL_POINT_SMOOTH_HINT */ - 766, /* GL_LINE_SMOOTH_HINT */ - 1283, /* GL_POLYGON_SMOOTH_HINT */ - 552, /* GL_FOG_HINT */ - 1858, /* GL_TEXTURE_GEN_S */ - 1860, /* GL_TEXTURE_GEN_T */ - 1857, /* GL_TEXTURE_GEN_R */ - 1856, /* GL_TEXTURE_GEN_Q */ - 1220, /* GL_PIXEL_MAP_I_TO_I */ - 1226, /* GL_PIXEL_MAP_S_TO_S */ - 1222, /* GL_PIXEL_MAP_I_TO_R */ - 1218, /* GL_PIXEL_MAP_I_TO_G */ - 1216, /* GL_PIXEL_MAP_I_TO_B */ - 1214, /* GL_PIXEL_MAP_I_TO_A */ - 1224, /* GL_PIXEL_MAP_R_TO_R */ - 1212, /* GL_PIXEL_MAP_G_TO_G */ - 1210, /* GL_PIXEL_MAP_B_TO_B */ - 1208, /* GL_PIXEL_MAP_A_TO_A */ - 1221, /* GL_PIXEL_MAP_I_TO_I_SIZE */ - 1227, /* GL_PIXEL_MAP_S_TO_S_SIZE */ - 1223, /* GL_PIXEL_MAP_I_TO_R_SIZE */ - 1219, /* GL_PIXEL_MAP_I_TO_G_SIZE */ - 1217, /* GL_PIXEL_MAP_I_TO_B_SIZE */ - 1215, /* GL_PIXEL_MAP_I_TO_A_SIZE */ - 1225, /* GL_PIXEL_MAP_R_TO_R_SIZE */ - 1213, /* GL_PIXEL_MAP_G_TO_G_SIZE */ - 1211, /* GL_PIXEL_MAP_B_TO_B_SIZE */ - 1209, /* GL_PIXEL_MAP_A_TO_A_SIZE */ - 1949, /* GL_UNPACK_SWAP_BYTES */ - 1944, /* GL_UNPACK_LSB_FIRST */ - 1945, /* GL_UNPACK_ROW_LENGTH */ - 1948, /* GL_UNPACK_SKIP_ROWS */ - 1947, /* GL_UNPACK_SKIP_PIXELS */ - 1942, /* GL_UNPACK_ALIGNMENT */ - 1195, /* GL_PACK_SWAP_BYTES */ - 1190, /* GL_PACK_LSB_FIRST */ - 1191, /* GL_PACK_ROW_LENGTH */ - 1194, /* GL_PACK_SKIP_ROWS */ - 1193, /* GL_PACK_SKIP_PIXELS */ - 1187, /* GL_PACK_ALIGNMENT */ - 863, /* GL_MAP_COLOR */ - 868, /* GL_MAP_STENCIL */ - 698, /* GL_INDEX_SHIFT */ - 697, /* GL_INDEX_OFFSET */ - 1426, /* GL_RED_SCALE */ - 1424, /* GL_RED_BIAS */ - 2063, /* GL_ZOOM_X */ - 2064, /* GL_ZOOM_Y */ - 653, /* GL_GREEN_SCALE */ - 651, /* GL_GREEN_BIAS */ + 418, /* GL_DRAW_BUFFER */ + 1416, /* GL_READ_BUFFER */ + 1552, /* GL_SCISSOR_BOX */ + 1553, /* GL_SCISSOR_TEST */ + 698, /* GL_INDEX_CLEAR_VALUE */ + 703, /* GL_INDEX_WRITEMASK */ + 204, /* GL_COLOR_CLEAR_VALUE */ + 246, /* GL_COLOR_WRITEMASK */ + 700, /* GL_INDEX_MODE */ + 1517, /* GL_RGBA_MODE */ + 417, /* GL_DOUBLEBUFFER */ + 1680, /* GL_STEREO */ + 1467, /* GL_RENDER_MODE */ + 1211, /* GL_PERSPECTIVE_CORRECTION_HINT */ + 1269, /* GL_POINT_SMOOTH_HINT */ + 770, /* GL_LINE_SMOOTH_HINT */ + 1287, /* GL_POLYGON_SMOOTH_HINT */ + 556, /* GL_FOG_HINT */ + 1863, /* GL_TEXTURE_GEN_S */ + 1865, /* GL_TEXTURE_GEN_T */ + 1862, /* GL_TEXTURE_GEN_R */ + 1861, /* GL_TEXTURE_GEN_Q */ + 1224, /* GL_PIXEL_MAP_I_TO_I */ + 1230, /* GL_PIXEL_MAP_S_TO_S */ + 1226, /* GL_PIXEL_MAP_I_TO_R */ + 1222, /* GL_PIXEL_MAP_I_TO_G */ + 1220, /* GL_PIXEL_MAP_I_TO_B */ + 1218, /* GL_PIXEL_MAP_I_TO_A */ + 1228, /* GL_PIXEL_MAP_R_TO_R */ + 1216, /* GL_PIXEL_MAP_G_TO_G */ + 1214, /* GL_PIXEL_MAP_B_TO_B */ + 1212, /* GL_PIXEL_MAP_A_TO_A */ + 1225, /* GL_PIXEL_MAP_I_TO_I_SIZE */ + 1231, /* GL_PIXEL_MAP_S_TO_S_SIZE */ + 1227, /* GL_PIXEL_MAP_I_TO_R_SIZE */ + 1223, /* GL_PIXEL_MAP_I_TO_G_SIZE */ + 1221, /* GL_PIXEL_MAP_I_TO_B_SIZE */ + 1219, /* GL_PIXEL_MAP_I_TO_A_SIZE */ + 1229, /* GL_PIXEL_MAP_R_TO_R_SIZE */ + 1217, /* GL_PIXEL_MAP_G_TO_G_SIZE */ + 1215, /* GL_PIXEL_MAP_B_TO_B_SIZE */ + 1213, /* GL_PIXEL_MAP_A_TO_A_SIZE */ + 1954, /* GL_UNPACK_SWAP_BYTES */ + 1949, /* GL_UNPACK_LSB_FIRST */ + 1950, /* GL_UNPACK_ROW_LENGTH */ + 1953, /* GL_UNPACK_SKIP_ROWS */ + 1952, /* GL_UNPACK_SKIP_PIXELS */ + 1947, /* GL_UNPACK_ALIGNMENT */ + 1199, /* GL_PACK_SWAP_BYTES */ + 1194, /* GL_PACK_LSB_FIRST */ + 1195, /* GL_PACK_ROW_LENGTH */ + 1198, /* GL_PACK_SKIP_ROWS */ + 1197, /* GL_PACK_SKIP_PIXELS */ + 1191, /* GL_PACK_ALIGNMENT */ + 867, /* GL_MAP_COLOR */ + 872, /* GL_MAP_STENCIL */ + 702, /* GL_INDEX_SHIFT */ + 701, /* GL_INDEX_OFFSET */ + 1430, /* GL_RED_SCALE */ + 1428, /* GL_RED_BIAS */ + 2068, /* GL_ZOOM_X */ + 2069, /* GL_ZOOM_Y */ + 657, /* GL_GREEN_SCALE */ + 655, /* GL_GREEN_BIAS */ 101, /* GL_BLUE_SCALE */ 99, /* GL_BLUE_BIAS */ 42, /* GL_ALPHA_SCALE */ 40, /* GL_ALPHA_BIAS */ - 391, /* GL_DEPTH_SCALE */ - 368, /* GL_DEPTH_BIAS */ - 952, /* GL_MAX_EVAL_ORDER */ - 962, /* GL_MAX_LIGHTS */ - 933, /* GL_MAX_CLIP_PLANES */ - 1013, /* GL_MAX_TEXTURE_SIZE */ - 969, /* GL_MAX_PIXEL_MAP_TABLE */ - 929, /* GL_MAX_ATTRIB_STACK_DEPTH */ - 965, /* GL_MAX_MODELVIEW_STACK_DEPTH */ - 966, /* GL_MAX_NAME_STACK_DEPTH */ - 995, /* GL_MAX_PROJECTION_STACK_DEPTH */ - 1014, /* GL_MAX_TEXTURE_STACK_DEPTH */ - 1036, /* GL_MAX_VIEWPORT_DIMS */ - 930, /* GL_MAX_CLIENT_ATTRIB_STACK_DEPTH */ - 1685, /* GL_SUBPIXEL_BITS */ - 693, /* GL_INDEX_BITS */ - 1425, /* GL_RED_BITS */ - 652, /* GL_GREEN_BITS */ + 394, /* GL_DEPTH_SCALE */ + 371, /* GL_DEPTH_BIAS */ + 956, /* GL_MAX_EVAL_ORDER */ + 966, /* GL_MAX_LIGHTS */ + 937, /* GL_MAX_CLIP_PLANES */ + 1017, /* GL_MAX_TEXTURE_SIZE */ + 973, /* GL_MAX_PIXEL_MAP_TABLE */ + 933, /* GL_MAX_ATTRIB_STACK_DEPTH */ + 969, /* GL_MAX_MODELVIEW_STACK_DEPTH */ + 970, /* GL_MAX_NAME_STACK_DEPTH */ + 999, /* GL_MAX_PROJECTION_STACK_DEPTH */ + 1018, /* GL_MAX_TEXTURE_STACK_DEPTH */ + 1040, /* GL_MAX_VIEWPORT_DIMS */ + 934, /* GL_MAX_CLIENT_ATTRIB_STACK_DEPTH */ + 1690, /* GL_SUBPIXEL_BITS */ + 697, /* GL_INDEX_BITS */ + 1429, /* GL_RED_BITS */ + 656, /* GL_GREEN_BITS */ 100, /* GL_BLUE_BITS */ 41, /* GL_ALPHA_BITS */ - 369, /* GL_DEPTH_BITS */ - 1650, /* GL_STENCIL_BITS */ + 372, /* GL_DEPTH_BITS */ + 1655, /* GL_STENCIL_BITS */ 14, /* GL_ACCUM_RED_BITS */ 13, /* GL_ACCUM_GREEN_BITS */ 10, /* GL_ACCUM_BLUE_BITS */ 9, /* GL_ACCUM_ALPHA_BITS */ - 1105, /* GL_NAME_STACK_DEPTH */ + 1109, /* GL_NAME_STACK_DEPTH */ 62, /* GL_AUTO_NORMAL */ - 809, /* GL_MAP1_COLOR_4 */ - 812, /* GL_MAP1_INDEX */ - 813, /* GL_MAP1_NORMAL */ - 814, /* GL_MAP1_TEXTURE_COORD_1 */ - 815, /* GL_MAP1_TEXTURE_COORD_2 */ - 816, /* GL_MAP1_TEXTURE_COORD_3 */ - 817, /* GL_MAP1_TEXTURE_COORD_4 */ - 818, /* GL_MAP1_VERTEX_3 */ - 819, /* GL_MAP1_VERTEX_4 */ - 836, /* GL_MAP2_COLOR_4 */ - 839, /* GL_MAP2_INDEX */ - 840, /* GL_MAP2_NORMAL */ - 841, /* GL_MAP2_TEXTURE_COORD_1 */ - 842, /* GL_MAP2_TEXTURE_COORD_2 */ - 843, /* GL_MAP2_TEXTURE_COORD_3 */ - 844, /* GL_MAP2_TEXTURE_COORD_4 */ - 845, /* GL_MAP2_VERTEX_3 */ - 846, /* GL_MAP2_VERTEX_4 */ - 810, /* GL_MAP1_GRID_DOMAIN */ - 811, /* GL_MAP1_GRID_SEGMENTS */ - 837, /* GL_MAP2_GRID_DOMAIN */ - 838, /* GL_MAP2_GRID_SEGMENTS */ - 1768, /* GL_TEXTURE_1D */ - 1770, /* GL_TEXTURE_2D */ - 503, /* GL_FEEDBACK_BUFFER_POINTER */ - 504, /* GL_FEEDBACK_BUFFER_SIZE */ - 505, /* GL_FEEDBACK_BUFFER_TYPE */ - 1557, /* GL_SELECTION_BUFFER_POINTER */ - 1558, /* GL_SELECTION_BUFFER_SIZE */ - 1902, /* GL_TEXTURE_WIDTH */ - 1864, /* GL_TEXTURE_HEIGHT */ - 1808, /* GL_TEXTURE_COMPONENTS */ - 1792, /* GL_TEXTURE_BORDER_COLOR */ - 1791, /* GL_TEXTURE_BORDER */ - 406, /* GL_DONT_CARE */ - 501, /* GL_FASTEST */ - 1113, /* GL_NICEST */ + 813, /* GL_MAP1_COLOR_4 */ + 816, /* GL_MAP1_INDEX */ + 817, /* GL_MAP1_NORMAL */ + 818, /* GL_MAP1_TEXTURE_COORD_1 */ + 819, /* GL_MAP1_TEXTURE_COORD_2 */ + 820, /* GL_MAP1_TEXTURE_COORD_3 */ + 821, /* GL_MAP1_TEXTURE_COORD_4 */ + 822, /* GL_MAP1_VERTEX_3 */ + 823, /* GL_MAP1_VERTEX_4 */ + 840, /* GL_MAP2_COLOR_4 */ + 843, /* GL_MAP2_INDEX */ + 844, /* GL_MAP2_NORMAL */ + 845, /* GL_MAP2_TEXTURE_COORD_1 */ + 846, /* GL_MAP2_TEXTURE_COORD_2 */ + 847, /* GL_MAP2_TEXTURE_COORD_3 */ + 848, /* GL_MAP2_TEXTURE_COORD_4 */ + 849, /* GL_MAP2_VERTEX_3 */ + 850, /* GL_MAP2_VERTEX_4 */ + 814, /* GL_MAP1_GRID_DOMAIN */ + 815, /* GL_MAP1_GRID_SEGMENTS */ + 841, /* GL_MAP2_GRID_DOMAIN */ + 842, /* GL_MAP2_GRID_SEGMENTS */ + 1773, /* GL_TEXTURE_1D */ + 1775, /* GL_TEXTURE_2D */ + 506, /* GL_FEEDBACK_BUFFER_POINTER */ + 507, /* GL_FEEDBACK_BUFFER_SIZE */ + 508, /* GL_FEEDBACK_BUFFER_TYPE */ + 1562, /* GL_SELECTION_BUFFER_POINTER */ + 1563, /* GL_SELECTION_BUFFER_SIZE */ + 1907, /* GL_TEXTURE_WIDTH */ + 1869, /* GL_TEXTURE_HEIGHT */ + 1813, /* GL_TEXTURE_COMPONENTS */ + 1797, /* GL_TEXTURE_BORDER_COLOR */ + 1796, /* GL_TEXTURE_BORDER */ + 409, /* GL_DONT_CARE */ + 504, /* GL_FASTEST */ + 1117, /* GL_NICEST */ 48, /* GL_AMBIENT */ - 403, /* GL_DIFFUSE */ - 1609, /* GL_SPECULAR */ - 1287, /* GL_POSITION */ - 1612, /* GL_SPOT_DIRECTION */ - 1613, /* GL_SPOT_EXPONENT */ - 1611, /* GL_SPOT_CUTOFF */ - 288, /* GL_CONSTANT_ATTENUATION */ - 755, /* GL_LINEAR_ATTENUATION */ - 1392, /* GL_QUADRATIC_ATTENUATION */ - 257, /* GL_COMPILE */ - 258, /* GL_COMPILE_AND_EXECUTE */ + 406, /* GL_DIFFUSE */ + 1614, /* GL_SPECULAR */ + 1291, /* GL_POSITION */ + 1617, /* GL_SPOT_DIRECTION */ + 1618, /* GL_SPOT_EXPONENT */ + 1616, /* GL_SPOT_CUTOFF */ + 291, /* GL_CONSTANT_ATTENUATION */ + 759, /* GL_LINEAR_ATTENUATION */ + 1396, /* GL_QUADRATIC_ATTENUATION */ + 260, /* GL_COMPILE */ + 261, /* GL_COMPILE_AND_EXECUTE */ 132, /* GL_BYTE */ - 1951, /* GL_UNSIGNED_BYTE */ - 1574, /* GL_SHORT */ - 1966, /* GL_UNSIGNED_SHORT */ - 701, /* GL_INT */ - 1954, /* GL_UNSIGNED_INT */ - 512, /* GL_FLOAT */ + 1956, /* GL_UNSIGNED_BYTE */ + 1579, /* GL_SHORT */ + 1971, /* GL_UNSIGNED_SHORT */ + 705, /* GL_INT */ + 1959, /* GL_UNSIGNED_INT */ + 516, /* GL_FLOAT */ 1, /* GL_2_BYTES */ 5, /* GL_3_BYTES */ 7, /* GL_4_BYTES */ - 413, /* GL_DOUBLE */ - 654, /* GL_HALF_FLOAT */ - 509, /* GL_FIXED */ - 144, /* GL_CLEAR */ + 416, /* GL_DOUBLE */ + 658, /* GL_HALF_FLOAT */ + 512, /* GL_FIXED */ + 147, /* GL_CLEAR */ 50, /* GL_AND */ 52, /* GL_AND_REVERSE */ - 313, /* GL_COPY */ + 316, /* GL_COPY */ 51, /* GL_AND_INVERTED */ - 1116, /* GL_NOOP */ - 2059, /* GL_XOR */ - 1182, /* GL_OR */ - 1117, /* GL_NOR */ - 491, /* GL_EQUIV */ - 731, /* GL_INVERT */ - 1185, /* GL_OR_REVERSE */ - 314, /* GL_COPY_INVERTED */ - 1184, /* GL_OR_INVERTED */ - 1106, /* GL_NAND */ - 1563, /* GL_SET */ - 488, /* GL_EMISSION */ - 1573, /* GL_SHININESS */ + 1120, /* GL_NOOP */ + 2064, /* GL_XOR */ + 1186, /* GL_OR */ + 1121, /* GL_NOR */ + 494, /* GL_EQUIV */ + 735, /* GL_INVERT */ + 1189, /* GL_OR_REVERSE */ + 317, /* GL_COPY_INVERTED */ + 1188, /* GL_OR_INVERTED */ + 1110, /* GL_NAND */ + 1568, /* GL_SET */ + 491, /* GL_EMISSION */ + 1578, /* GL_SHININESS */ 49, /* GL_AMBIENT_AND_DIFFUSE */ - 203, /* GL_COLOR_INDEXES */ - 1055, /* GL_MODELVIEW */ - 1367, /* GL_PROJECTION */ - 1703, /* GL_TEXTURE */ - 159, /* GL_COLOR */ - 361, /* GL_DEPTH */ - 1635, /* GL_STENCIL */ - 202, /* GL_COLOR_INDEX */ - 1655, /* GL_STENCIL_INDEX */ - 376, /* GL_DEPTH_COMPONENT */ - 1421, /* GL_RED */ - 650, /* GL_GREEN */ + 206, /* GL_COLOR_INDEXES */ + 1059, /* GL_MODELVIEW */ + 1371, /* GL_PROJECTION */ + 1708, /* GL_TEXTURE */ + 162, /* GL_COLOR */ + 364, /* GL_DEPTH */ + 1640, /* GL_STENCIL */ + 205, /* GL_COLOR_INDEX */ + 1660, /* GL_STENCIL_INDEX */ + 379, /* GL_DEPTH_COMPONENT */ + 1425, /* GL_RED */ + 654, /* GL_GREEN */ 98, /* GL_BLUE */ 31, /* GL_ALPHA */ - 1472, /* GL_RGB */ - 1495, /* GL_RGBA */ - 787, /* GL_LUMINANCE */ - 808, /* GL_LUMINANCE_ALPHA */ + 1476, /* GL_RGB */ + 1499, /* GL_RGBA */ + 791, /* GL_LUMINANCE */ + 812, /* GL_LUMINANCE_ALPHA */ 74, /* GL_BITMAP */ - 1237, /* GL_POINT */ - 753, /* GL_LINE */ - 506, /* GL_FILL */ - 1432, /* GL_RENDER */ - 502, /* GL_FEEDBACK */ - 1556, /* GL_SELECT */ - 511, /* GL_FLAT */ - 1584, /* GL_SMOOTH */ - 732, /* GL_KEEP */ - 1465, /* GL_REPLACE */ - 683, /* GL_INCR */ - 357, /* GL_DECR */ - 1983, /* GL_VENDOR */ - 1462, /* GL_RENDERER */ - 1984, /* GL_VERSION */ - 495, /* GL_EXTENSIONS */ - 1520, /* GL_S */ - 1694, /* GL_T */ - 1408, /* GL_R */ - 1391, /* GL_Q */ - 1092, /* GL_MODULATE */ - 356, /* GL_DECAL */ - 1851, /* GL_TEXTURE_ENV_MODE */ - 1850, /* GL_TEXTURE_ENV_COLOR */ - 1849, /* GL_TEXTURE_ENV */ - 496, /* GL_EYE_LINEAR */ - 1143, /* GL_OBJECT_LINEAR */ - 1610, /* GL_SPHERE_MAP */ - 1854, /* GL_TEXTURE_GEN_MODE */ - 1145, /* GL_OBJECT_PLANE */ - 497, /* GL_EYE_PLANE */ - 1107, /* GL_NEAREST */ - 754, /* GL_LINEAR */ - 1111, /* GL_NEAREST_MIPMAP_NEAREST */ - 759, /* GL_LINEAR_MIPMAP_NEAREST */ - 1110, /* GL_NEAREST_MIPMAP_LINEAR */ - 758, /* GL_LINEAR_MIPMAP_LINEAR */ - 1877, /* GL_TEXTURE_MAG_FILTER */ - 1886, /* GL_TEXTURE_MIN_FILTER */ - 1905, /* GL_TEXTURE_WRAP_S */ - 1906, /* GL_TEXTURE_WRAP_T */ + 1241, /* GL_POINT */ + 757, /* GL_LINE */ + 509, /* GL_FILL */ + 1436, /* GL_RENDER */ + 505, /* GL_FEEDBACK */ + 1561, /* GL_SELECT */ + 515, /* GL_FLAT */ + 1589, /* GL_SMOOTH */ + 736, /* GL_KEEP */ + 1469, /* GL_REPLACE */ + 687, /* GL_INCR */ + 360, /* GL_DECR */ + 1988, /* GL_VENDOR */ + 1466, /* GL_RENDERER */ + 1989, /* GL_VERSION */ + 498, /* GL_EXTENSIONS */ + 1525, /* GL_S */ + 1699, /* GL_T */ + 1412, /* GL_R */ + 1395, /* GL_Q */ + 1096, /* GL_MODULATE */ + 359, /* GL_DECAL */ + 1856, /* GL_TEXTURE_ENV_MODE */ + 1855, /* GL_TEXTURE_ENV_COLOR */ + 1854, /* GL_TEXTURE_ENV */ + 499, /* GL_EYE_LINEAR */ + 1147, /* GL_OBJECT_LINEAR */ + 1615, /* GL_SPHERE_MAP */ + 1859, /* GL_TEXTURE_GEN_MODE */ + 1149, /* GL_OBJECT_PLANE */ + 500, /* GL_EYE_PLANE */ + 1111, /* GL_NEAREST */ + 758, /* GL_LINEAR */ + 1115, /* GL_NEAREST_MIPMAP_NEAREST */ + 763, /* GL_LINEAR_MIPMAP_NEAREST */ + 1114, /* GL_NEAREST_MIPMAP_LINEAR */ + 762, /* GL_LINEAR_MIPMAP_LINEAR */ + 1882, /* GL_TEXTURE_MAG_FILTER */ + 1891, /* GL_TEXTURE_MIN_FILTER */ + 1910, /* GL_TEXTURE_WRAP_S */ + 1911, /* GL_TEXTURE_WRAP_T */ 138, /* GL_CLAMP */ - 1464, /* GL_REPEAT */ - 1281, /* GL_POLYGON_OFFSET_UNITS */ - 1280, /* GL_POLYGON_OFFSET_POINT */ - 1279, /* GL_POLYGON_OFFSET_LINE */ - 1409, /* GL_R3_G3_B2 */ - 1980, /* GL_V2F */ - 1981, /* GL_V3F */ + 1468, /* GL_REPEAT */ + 1285, /* GL_POLYGON_OFFSET_UNITS */ + 1284, /* GL_POLYGON_OFFSET_POINT */ + 1283, /* GL_POLYGON_OFFSET_LINE */ + 1413, /* GL_R3_G3_B2 */ + 1985, /* GL_V2F */ + 1986, /* GL_V3F */ 135, /* GL_C4UB_V2F */ 136, /* GL_C4UB_V3F */ 133, /* GL_C3F_V3F */ - 1104, /* GL_N3F_V3F */ + 1108, /* GL_N3F_V3F */ 134, /* GL_C4F_N3F_V3F */ - 1699, /* GL_T2F_V3F */ - 1701, /* GL_T4F_V4F */ - 1697, /* GL_T2F_C4UB_V3F */ - 1695, /* GL_T2F_C3F_V3F */ - 1698, /* GL_T2F_N3F_V3F */ - 1696, /* GL_T2F_C4F_N3F_V3F */ - 1700, /* GL_T4F_C4F_N3F_V4F */ - 151, /* GL_CLIP_PLANE0 */ - 152, /* GL_CLIP_PLANE1 */ - 153, /* GL_CLIP_PLANE2 */ - 154, /* GL_CLIP_PLANE3 */ - 155, /* GL_CLIP_PLANE4 */ - 156, /* GL_CLIP_PLANE5 */ - 738, /* GL_LIGHT0 */ - 739, /* GL_LIGHT1 */ - 740, /* GL_LIGHT2 */ - 741, /* GL_LIGHT3 */ - 742, /* GL_LIGHT4 */ - 743, /* GL_LIGHT5 */ - 744, /* GL_LIGHT6 */ - 745, /* GL_LIGHT7 */ - 658, /* GL_HINT_BIT */ - 290, /* GL_CONSTANT_COLOR */ - 1156, /* GL_ONE_MINUS_CONSTANT_COLOR */ - 285, /* GL_CONSTANT_ALPHA */ - 1154, /* GL_ONE_MINUS_CONSTANT_ALPHA */ + 1704, /* GL_T2F_V3F */ + 1706, /* GL_T4F_V4F */ + 1702, /* GL_T2F_C4UB_V3F */ + 1700, /* GL_T2F_C3F_V3F */ + 1703, /* GL_T2F_N3F_V3F */ + 1701, /* GL_T2F_C4F_N3F_V3F */ + 1705, /* GL_T4F_C4F_N3F_V4F */ + 154, /* GL_CLIP_PLANE0 */ + 155, /* GL_CLIP_PLANE1 */ + 156, /* GL_CLIP_PLANE2 */ + 157, /* GL_CLIP_PLANE3 */ + 158, /* GL_CLIP_PLANE4 */ + 159, /* GL_CLIP_PLANE5 */ + 742, /* GL_LIGHT0 */ + 743, /* GL_LIGHT1 */ + 744, /* GL_LIGHT2 */ + 745, /* GL_LIGHT3 */ + 746, /* GL_LIGHT4 */ + 747, /* GL_LIGHT5 */ + 748, /* GL_LIGHT6 */ + 749, /* GL_LIGHT7 */ + 662, /* GL_HINT_BIT */ + 293, /* GL_CONSTANT_COLOR */ + 1160, /* GL_ONE_MINUS_CONSTANT_COLOR */ + 288, /* GL_CONSTANT_ALPHA */ + 1158, /* GL_ONE_MINUS_CONSTANT_ALPHA */ 77, /* GL_BLEND_COLOR */ - 631, /* GL_FUNC_ADD */ - 1039, /* GL_MIN */ - 925, /* GL_MAX */ + 635, /* GL_FUNC_ADD */ + 1043, /* GL_MIN */ + 929, /* GL_MAX */ 84, /* GL_BLEND_EQUATION */ - 637, /* GL_FUNC_SUBTRACT */ - 634, /* GL_FUNC_REVERSE_SUBTRACT */ - 293, /* GL_CONVOLUTION_1D */ - 294, /* GL_CONVOLUTION_2D */ - 1559, /* GL_SEPARABLE_2D */ - 297, /* GL_CONVOLUTION_BORDER_MODE */ - 301, /* GL_CONVOLUTION_FILTER_SCALE */ - 299, /* GL_CONVOLUTION_FILTER_BIAS */ - 1422, /* GL_REDUCE */ - 303, /* GL_CONVOLUTION_FORMAT */ - 307, /* GL_CONVOLUTION_WIDTH */ - 305, /* GL_CONVOLUTION_HEIGHT */ - 942, /* GL_MAX_CONVOLUTION_WIDTH */ - 940, /* GL_MAX_CONVOLUTION_HEIGHT */ - 1320, /* GL_POST_CONVOLUTION_RED_SCALE */ - 1316, /* GL_POST_CONVOLUTION_GREEN_SCALE */ - 1311, /* GL_POST_CONVOLUTION_BLUE_SCALE */ - 1307, /* GL_POST_CONVOLUTION_ALPHA_SCALE */ - 1318, /* GL_POST_CONVOLUTION_RED_BIAS */ - 1314, /* GL_POST_CONVOLUTION_GREEN_BIAS */ - 1309, /* GL_POST_CONVOLUTION_BLUE_BIAS */ - 1305, /* GL_POST_CONVOLUTION_ALPHA_BIAS */ - 659, /* GL_HISTOGRAM */ - 1374, /* GL_PROXY_HISTOGRAM */ - 675, /* GL_HISTOGRAM_WIDTH */ - 665, /* GL_HISTOGRAM_FORMAT */ - 671, /* GL_HISTOGRAM_RED_SIZE */ - 667, /* GL_HISTOGRAM_GREEN_SIZE */ - 662, /* GL_HISTOGRAM_BLUE_SIZE */ - 660, /* GL_HISTOGRAM_ALPHA_SIZE */ - 669, /* GL_HISTOGRAM_LUMINANCE_SIZE */ - 673, /* GL_HISTOGRAM_SINK */ - 1040, /* GL_MINMAX */ - 1042, /* GL_MINMAX_FORMAT */ - 1044, /* GL_MINMAX_SINK */ - 1702, /* GL_TABLE_TOO_LARGE_EXT */ - 1953, /* GL_UNSIGNED_BYTE_3_3_2 */ - 1969, /* GL_UNSIGNED_SHORT_4_4_4_4 */ - 1972, /* GL_UNSIGNED_SHORT_5_5_5_1 */ - 1963, /* GL_UNSIGNED_INT_8_8_8_8 */ - 1955, /* GL_UNSIGNED_INT_10_10_10_2 */ - 1278, /* GL_POLYGON_OFFSET_FILL */ - 1277, /* GL_POLYGON_OFFSET_FACTOR */ - 1276, /* GL_POLYGON_OFFSET_BIAS */ - 1468, /* GL_RESCALE_NORMAL */ + 641, /* GL_FUNC_SUBTRACT */ + 638, /* GL_FUNC_REVERSE_SUBTRACT */ + 296, /* GL_CONVOLUTION_1D */ + 297, /* GL_CONVOLUTION_2D */ + 1564, /* GL_SEPARABLE_2D */ + 300, /* GL_CONVOLUTION_BORDER_MODE */ + 304, /* GL_CONVOLUTION_FILTER_SCALE */ + 302, /* GL_CONVOLUTION_FILTER_BIAS */ + 1426, /* GL_REDUCE */ + 306, /* GL_CONVOLUTION_FORMAT */ + 310, /* GL_CONVOLUTION_WIDTH */ + 308, /* GL_CONVOLUTION_HEIGHT */ + 946, /* GL_MAX_CONVOLUTION_WIDTH */ + 944, /* GL_MAX_CONVOLUTION_HEIGHT */ + 1324, /* GL_POST_CONVOLUTION_RED_SCALE */ + 1320, /* GL_POST_CONVOLUTION_GREEN_SCALE */ + 1315, /* GL_POST_CONVOLUTION_BLUE_SCALE */ + 1311, /* GL_POST_CONVOLUTION_ALPHA_SCALE */ + 1322, /* GL_POST_CONVOLUTION_RED_BIAS */ + 1318, /* GL_POST_CONVOLUTION_GREEN_BIAS */ + 1313, /* GL_POST_CONVOLUTION_BLUE_BIAS */ + 1309, /* GL_POST_CONVOLUTION_ALPHA_BIAS */ + 663, /* GL_HISTOGRAM */ + 1378, /* GL_PROXY_HISTOGRAM */ + 679, /* GL_HISTOGRAM_WIDTH */ + 669, /* GL_HISTOGRAM_FORMAT */ + 675, /* GL_HISTOGRAM_RED_SIZE */ + 671, /* GL_HISTOGRAM_GREEN_SIZE */ + 666, /* GL_HISTOGRAM_BLUE_SIZE */ + 664, /* GL_HISTOGRAM_ALPHA_SIZE */ + 673, /* GL_HISTOGRAM_LUMINANCE_SIZE */ + 677, /* GL_HISTOGRAM_SINK */ + 1044, /* GL_MINMAX */ + 1046, /* GL_MINMAX_FORMAT */ + 1048, /* GL_MINMAX_SINK */ + 1707, /* GL_TABLE_TOO_LARGE_EXT */ + 1958, /* GL_UNSIGNED_BYTE_3_3_2 */ + 1974, /* GL_UNSIGNED_SHORT_4_4_4_4 */ + 1977, /* GL_UNSIGNED_SHORT_5_5_5_1 */ + 1968, /* GL_UNSIGNED_INT_8_8_8_8 */ + 1960, /* GL_UNSIGNED_INT_10_10_10_2 */ + 1282, /* GL_POLYGON_OFFSET_FILL */ + 1281, /* GL_POLYGON_OFFSET_FACTOR */ + 1280, /* GL_POLYGON_OFFSET_BIAS */ + 1472, /* GL_RESCALE_NORMAL */ 36, /* GL_ALPHA4 */ 38, /* GL_ALPHA8 */ 32, /* GL_ALPHA12 */ 34, /* GL_ALPHA16 */ - 798, /* GL_LUMINANCE4 */ - 804, /* GL_LUMINANCE8 */ - 788, /* GL_LUMINANCE12 */ - 794, /* GL_LUMINANCE16 */ - 799, /* GL_LUMINANCE4_ALPHA4 */ - 802, /* GL_LUMINANCE6_ALPHA2 */ - 805, /* GL_LUMINANCE8_ALPHA8 */ - 791, /* GL_LUMINANCE12_ALPHA4 */ - 789, /* GL_LUMINANCE12_ALPHA12 */ - 795, /* GL_LUMINANCE16_ALPHA16 */ - 702, /* GL_INTENSITY */ - 707, /* GL_INTENSITY4 */ - 709, /* GL_INTENSITY8 */ - 703, /* GL_INTENSITY12 */ - 705, /* GL_INTENSITY16 */ - 1481, /* GL_RGB2_EXT */ - 1482, /* GL_RGB4 */ - 1485, /* GL_RGB5 */ - 1492, /* GL_RGB8 */ - 1473, /* GL_RGB10 */ - 1477, /* GL_RGB12 */ - 1479, /* GL_RGB16 */ - 1500, /* GL_RGBA2 */ - 1502, /* GL_RGBA4 */ - 1488, /* GL_RGB5_A1 */ - 1507, /* GL_RGBA8 */ - 1474, /* GL_RGB10_A2 */ - 1496, /* GL_RGBA12 */ - 1498, /* GL_RGBA16 */ - 1893, /* GL_TEXTURE_RED_SIZE */ - 1862, /* GL_TEXTURE_GREEN_SIZE */ - 1789, /* GL_TEXTURE_BLUE_SIZE */ - 1774, /* GL_TEXTURE_ALPHA_SIZE */ - 1875, /* GL_TEXTURE_LUMINANCE_SIZE */ - 1866, /* GL_TEXTURE_INTENSITY_SIZE */ - 1466, /* GL_REPLACE_EXT */ - 1378, /* GL_PROXY_TEXTURE_1D */ - 1381, /* GL_PROXY_TEXTURE_2D */ - 1900, /* GL_TEXTURE_TOO_LARGE_EXT */ - 1888, /* GL_TEXTURE_PRIORITY */ - 1895, /* GL_TEXTURE_RESIDENT */ - 1777, /* GL_TEXTURE_BINDING_1D */ - 1779, /* GL_TEXTURE_BINDING_2D */ - 1781, /* GL_TEXTURE_BINDING_3D */ - 1192, /* GL_PACK_SKIP_IMAGES */ - 1188, /* GL_PACK_IMAGE_HEIGHT */ - 1946, /* GL_UNPACK_SKIP_IMAGES */ - 1943, /* GL_UNPACK_IMAGE_HEIGHT */ - 1772, /* GL_TEXTURE_3D */ - 1384, /* GL_PROXY_TEXTURE_3D */ - 1846, /* GL_TEXTURE_DEPTH */ - 1903, /* GL_TEXTURE_WRAP_R */ - 926, /* GL_MAX_3D_TEXTURE_SIZE */ - 1985, /* GL_VERTEX_ARRAY */ - 1119, /* GL_NORMAL_ARRAY */ - 160, /* GL_COLOR_ARRAY */ - 687, /* GL_INDEX_ARRAY */ - 1816, /* GL_TEXTURE_COORD_ARRAY */ - 480, /* GL_EDGE_FLAG_ARRAY */ - 1991, /* GL_VERTEX_ARRAY_SIZE */ - 1993, /* GL_VERTEX_ARRAY_TYPE */ - 1992, /* GL_VERTEX_ARRAY_STRIDE */ - 1124, /* GL_NORMAL_ARRAY_TYPE */ - 1123, /* GL_NORMAL_ARRAY_STRIDE */ - 164, /* GL_COLOR_ARRAY_SIZE */ - 166, /* GL_COLOR_ARRAY_TYPE */ - 165, /* GL_COLOR_ARRAY_STRIDE */ - 692, /* GL_INDEX_ARRAY_TYPE */ - 691, /* GL_INDEX_ARRAY_STRIDE */ - 1820, /* GL_TEXTURE_COORD_ARRAY_SIZE */ - 1822, /* GL_TEXTURE_COORD_ARRAY_TYPE */ - 1821, /* GL_TEXTURE_COORD_ARRAY_STRIDE */ - 484, /* GL_EDGE_FLAG_ARRAY_STRIDE */ - 1990, /* GL_VERTEX_ARRAY_POINTER */ - 1122, /* GL_NORMAL_ARRAY_POINTER */ - 163, /* GL_COLOR_ARRAY_POINTER */ - 690, /* GL_INDEX_ARRAY_POINTER */ - 1819, /* GL_TEXTURE_COORD_ARRAY_POINTER */ - 483, /* GL_EDGE_FLAG_ARRAY_POINTER */ - 1097, /* GL_MULTISAMPLE */ - 1533, /* GL_SAMPLE_ALPHA_TO_COVERAGE */ - 1535, /* GL_SAMPLE_ALPHA_TO_ONE */ - 1540, /* GL_SAMPLE_COVERAGE */ - 1537, /* GL_SAMPLE_BUFFERS */ - 1528, /* GL_SAMPLES */ - 1544, /* GL_SAMPLE_COVERAGE_VALUE */ - 1542, /* GL_SAMPLE_COVERAGE_INVERT */ - 208, /* GL_COLOR_MATRIX */ - 210, /* GL_COLOR_MATRIX_STACK_DEPTH */ - 936, /* GL_MAX_COLOR_MATRIX_STACK_DEPTH */ - 1303, /* GL_POST_COLOR_MATRIX_RED_SCALE */ - 1299, /* GL_POST_COLOR_MATRIX_GREEN_SCALE */ - 1294, /* GL_POST_COLOR_MATRIX_BLUE_SCALE */ - 1290, /* GL_POST_COLOR_MATRIX_ALPHA_SCALE */ - 1301, /* GL_POST_COLOR_MATRIX_RED_BIAS */ - 1297, /* GL_POST_COLOR_MATRIX_GREEN_BIAS */ - 1292, /* GL_POST_COLOR_MATRIX_BLUE_BIAS */ - 1288, /* GL_POST_COLOR_MATRIX_ALPHA_BIAS */ - 1799, /* GL_TEXTURE_COLOR_TABLE_SGI */ - 1385, /* GL_PROXY_TEXTURE_COLOR_TABLE_SGI */ - 1801, /* GL_TEXTURE_COMPARE_FAIL_VALUE_ARB */ + 802, /* GL_LUMINANCE4 */ + 808, /* GL_LUMINANCE8 */ + 792, /* GL_LUMINANCE12 */ + 798, /* GL_LUMINANCE16 */ + 803, /* GL_LUMINANCE4_ALPHA4 */ + 806, /* GL_LUMINANCE6_ALPHA2 */ + 809, /* GL_LUMINANCE8_ALPHA8 */ + 795, /* GL_LUMINANCE12_ALPHA4 */ + 793, /* GL_LUMINANCE12_ALPHA12 */ + 799, /* GL_LUMINANCE16_ALPHA16 */ + 706, /* GL_INTENSITY */ + 711, /* GL_INTENSITY4 */ + 713, /* GL_INTENSITY8 */ + 707, /* GL_INTENSITY12 */ + 709, /* GL_INTENSITY16 */ + 1485, /* GL_RGB2_EXT */ + 1486, /* GL_RGB4 */ + 1489, /* GL_RGB5 */ + 1496, /* GL_RGB8 */ + 1477, /* GL_RGB10 */ + 1481, /* GL_RGB12 */ + 1483, /* GL_RGB16 */ + 1504, /* GL_RGBA2 */ + 1506, /* GL_RGBA4 */ + 1492, /* GL_RGB5_A1 */ + 1511, /* GL_RGBA8 */ + 1478, /* GL_RGB10_A2 */ + 1500, /* GL_RGBA12 */ + 1502, /* GL_RGBA16 */ + 1898, /* GL_TEXTURE_RED_SIZE */ + 1867, /* GL_TEXTURE_GREEN_SIZE */ + 1794, /* GL_TEXTURE_BLUE_SIZE */ + 1779, /* GL_TEXTURE_ALPHA_SIZE */ + 1880, /* GL_TEXTURE_LUMINANCE_SIZE */ + 1871, /* GL_TEXTURE_INTENSITY_SIZE */ + 1470, /* GL_REPLACE_EXT */ + 1382, /* GL_PROXY_TEXTURE_1D */ + 1385, /* GL_PROXY_TEXTURE_2D */ + 1905, /* GL_TEXTURE_TOO_LARGE_EXT */ + 1893, /* GL_TEXTURE_PRIORITY */ + 1900, /* GL_TEXTURE_RESIDENT */ + 1782, /* GL_TEXTURE_BINDING_1D */ + 1784, /* GL_TEXTURE_BINDING_2D */ + 1786, /* GL_TEXTURE_BINDING_3D */ + 1196, /* GL_PACK_SKIP_IMAGES */ + 1192, /* GL_PACK_IMAGE_HEIGHT */ + 1951, /* GL_UNPACK_SKIP_IMAGES */ + 1948, /* GL_UNPACK_IMAGE_HEIGHT */ + 1777, /* GL_TEXTURE_3D */ + 1388, /* GL_PROXY_TEXTURE_3D */ + 1851, /* GL_TEXTURE_DEPTH */ + 1908, /* GL_TEXTURE_WRAP_R */ + 930, /* GL_MAX_3D_TEXTURE_SIZE */ + 1990, /* GL_VERTEX_ARRAY */ + 1123, /* GL_NORMAL_ARRAY */ + 163, /* GL_COLOR_ARRAY */ + 691, /* GL_INDEX_ARRAY */ + 1821, /* GL_TEXTURE_COORD_ARRAY */ + 483, /* GL_EDGE_FLAG_ARRAY */ + 1996, /* GL_VERTEX_ARRAY_SIZE */ + 1998, /* GL_VERTEX_ARRAY_TYPE */ + 1997, /* GL_VERTEX_ARRAY_STRIDE */ + 1128, /* GL_NORMAL_ARRAY_TYPE */ + 1127, /* GL_NORMAL_ARRAY_STRIDE */ + 167, /* GL_COLOR_ARRAY_SIZE */ + 169, /* GL_COLOR_ARRAY_TYPE */ + 168, /* GL_COLOR_ARRAY_STRIDE */ + 696, /* GL_INDEX_ARRAY_TYPE */ + 695, /* GL_INDEX_ARRAY_STRIDE */ + 1825, /* GL_TEXTURE_COORD_ARRAY_SIZE */ + 1827, /* GL_TEXTURE_COORD_ARRAY_TYPE */ + 1826, /* GL_TEXTURE_COORD_ARRAY_STRIDE */ + 487, /* GL_EDGE_FLAG_ARRAY_STRIDE */ + 1995, /* GL_VERTEX_ARRAY_POINTER */ + 1126, /* GL_NORMAL_ARRAY_POINTER */ + 166, /* GL_COLOR_ARRAY_POINTER */ + 694, /* GL_INDEX_ARRAY_POINTER */ + 1824, /* GL_TEXTURE_COORD_ARRAY_POINTER */ + 486, /* GL_EDGE_FLAG_ARRAY_POINTER */ + 1101, /* GL_MULTISAMPLE */ + 1538, /* GL_SAMPLE_ALPHA_TO_COVERAGE */ + 1540, /* GL_SAMPLE_ALPHA_TO_ONE */ + 1545, /* GL_SAMPLE_COVERAGE */ + 1542, /* GL_SAMPLE_BUFFERS */ + 1533, /* GL_SAMPLES */ + 1549, /* GL_SAMPLE_COVERAGE_VALUE */ + 1547, /* GL_SAMPLE_COVERAGE_INVERT */ + 211, /* GL_COLOR_MATRIX */ + 213, /* GL_COLOR_MATRIX_STACK_DEPTH */ + 940, /* GL_MAX_COLOR_MATRIX_STACK_DEPTH */ + 1307, /* GL_POST_COLOR_MATRIX_RED_SCALE */ + 1303, /* GL_POST_COLOR_MATRIX_GREEN_SCALE */ + 1298, /* GL_POST_COLOR_MATRIX_BLUE_SCALE */ + 1294, /* GL_POST_COLOR_MATRIX_ALPHA_SCALE */ + 1305, /* GL_POST_COLOR_MATRIX_RED_BIAS */ + 1301, /* GL_POST_COLOR_MATRIX_GREEN_BIAS */ + 1296, /* GL_POST_COLOR_MATRIX_BLUE_BIAS */ + 1292, /* GL_POST_COLOR_MATRIX_ALPHA_BIAS */ + 1804, /* GL_TEXTURE_COLOR_TABLE_SGI */ + 1389, /* GL_PROXY_TEXTURE_COLOR_TABLE_SGI */ + 1806, /* GL_TEXTURE_COMPARE_FAIL_VALUE_ARB */ 82, /* GL_BLEND_DST_RGB */ 96, /* GL_BLEND_SRC_RGB */ 80, /* GL_BLEND_DST_ALPHA */ 94, /* GL_BLEND_SRC_ALPHA */ - 214, /* GL_COLOR_TABLE */ - 1313, /* GL_POST_CONVOLUTION_COLOR_TABLE */ - 1296, /* GL_POST_COLOR_MATRIX_COLOR_TABLE */ - 1373, /* GL_PROXY_COLOR_TABLE */ - 1377, /* GL_PROXY_POST_CONVOLUTION_COLOR_TABLE */ - 1376, /* GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE */ - 238, /* GL_COLOR_TABLE_SCALE */ - 218, /* GL_COLOR_TABLE_BIAS */ - 223, /* GL_COLOR_TABLE_FORMAT */ - 240, /* GL_COLOR_TABLE_WIDTH */ - 235, /* GL_COLOR_TABLE_RED_SIZE */ - 226, /* GL_COLOR_TABLE_GREEN_SIZE */ - 220, /* GL_COLOR_TABLE_BLUE_SIZE */ - 215, /* GL_COLOR_TABLE_ALPHA_SIZE */ - 232, /* GL_COLOR_TABLE_LUMINANCE_SIZE */ - 229, /* GL_COLOR_TABLE_INTENSITY_SIZE */ + 217, /* GL_COLOR_TABLE */ + 1317, /* GL_POST_CONVOLUTION_COLOR_TABLE */ + 1300, /* GL_POST_COLOR_MATRIX_COLOR_TABLE */ + 1377, /* GL_PROXY_COLOR_TABLE */ + 1381, /* GL_PROXY_POST_CONVOLUTION_COLOR_TABLE */ + 1380, /* GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE */ + 241, /* GL_COLOR_TABLE_SCALE */ + 221, /* GL_COLOR_TABLE_BIAS */ + 226, /* GL_COLOR_TABLE_FORMAT */ + 243, /* GL_COLOR_TABLE_WIDTH */ + 238, /* GL_COLOR_TABLE_RED_SIZE */ + 229, /* GL_COLOR_TABLE_GREEN_SIZE */ + 223, /* GL_COLOR_TABLE_BLUE_SIZE */ + 218, /* GL_COLOR_TABLE_ALPHA_SIZE */ + 235, /* GL_COLOR_TABLE_LUMINANCE_SIZE */ + 232, /* GL_COLOR_TABLE_INTENSITY_SIZE */ 71, /* GL_BGR */ 72, /* GL_BGRA */ - 951, /* GL_MAX_ELEMENTS_VERTICES */ - 950, /* GL_MAX_ELEMENTS_INDICES */ - 1865, /* GL_TEXTURE_INDEX_SIZE_EXT */ - 157, /* GL_CLIP_VOLUME_CLIPPING_HINT_EXT */ - 1259, /* GL_POINT_SIZE_MIN */ - 1255, /* GL_POINT_SIZE_MAX */ - 1244, /* GL_POINT_FADE_THRESHOLD_SIZE */ - 1240, /* GL_POINT_DISTANCE_ATTENUATION */ - 139, /* GL_CLAMP_TO_BORDER */ - 142, /* GL_CLAMP_TO_EDGE */ - 1887, /* GL_TEXTURE_MIN_LOD */ - 1885, /* GL_TEXTURE_MAX_LOD */ - 1776, /* GL_TEXTURE_BASE_LEVEL */ - 1884, /* GL_TEXTURE_MAX_LEVEL */ - 678, /* GL_IGNORE_BORDER_HP */ - 289, /* GL_CONSTANT_BORDER_HP */ - 1467, /* GL_REPLICATE_BORDER_HP */ - 295, /* GL_CONVOLUTION_BORDER_COLOR */ - 1151, /* GL_OCCLUSION_TEST_HP */ - 1152, /* GL_OCCLUSION_TEST_RESULT_HP */ - 756, /* GL_LINEAR_CLIPMAP_LINEAR_SGIX */ - 1793, /* GL_TEXTURE_CLIPMAP_CENTER_SGIX */ - 1795, /* GL_TEXTURE_CLIPMAP_FRAME_SGIX */ - 1797, /* GL_TEXTURE_CLIPMAP_OFFSET_SGIX */ - 1798, /* GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX */ - 1796, /* GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX */ - 1794, /* GL_TEXTURE_CLIPMAP_DEPTH_SGIX */ - 931, /* GL_MAX_CLIPMAP_DEPTH_SGIX */ - 932, /* GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX */ - 1323, /* GL_POST_TEXTURE_FILTER_BIAS_SGIX */ - 1325, /* GL_POST_TEXTURE_FILTER_SCALE_SGIX */ - 1322, /* GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX */ - 1324, /* GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX */ - 1873, /* GL_TEXTURE_LOD_BIAS_S_SGIX */ - 1874, /* GL_TEXTURE_LOD_BIAS_T_SGIX */ - 1872, /* GL_TEXTURE_LOD_BIAS_R_SGIX */ - 640, /* GL_GENERATE_MIPMAP */ - 641, /* GL_GENERATE_MIPMAP_HINT */ - 555, /* GL_FOG_OFFSET_SGIX */ - 556, /* GL_FOG_OFFSET_VALUE_SGIX */ - 1807, /* GL_TEXTURE_COMPARE_SGIX */ - 1806, /* GL_TEXTURE_COMPARE_OPERATOR_SGIX */ - 1869, /* GL_TEXTURE_LEQUAL_R_SGIX */ - 1861, /* GL_TEXTURE_GEQUAL_R_SGIX */ - 377, /* GL_DEPTH_COMPONENT16 */ - 381, /* GL_DEPTH_COMPONENT24 */ - 385, /* GL_DEPTH_COMPONENT32 */ - 320, /* GL_CULL_VERTEX_EXT */ - 322, /* GL_CULL_VERTEX_OBJECT_POSITION_EXT */ - 321, /* GL_CULL_VERTEX_EYE_POSITION_EXT */ - 2055, /* GL_WRAP_BORDER_SUN */ - 1800, /* GL_TEXTURE_COLOR_WRITEMASK_SGIS */ - 749, /* GL_LIGHT_MODEL_COLOR_CONTROL */ - 1577, /* GL_SINGLE_COLOR */ - 1561, /* GL_SEPARATE_SPECULAR_COLOR */ - 1572, /* GL_SHARED_TEXTURE_PALETTE_EXT */ - 567, /* GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING */ - 568, /* GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE */ - 578, /* GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE */ - 570, /* GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE */ - 566, /* GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE */ - 565, /* GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE */ - 569, /* GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE */ - 579, /* GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE */ - 596, /* GL_FRAMEBUFFER_DEFAULT */ - 622, /* GL_FRAMEBUFFER_UNDEFINED */ - 393, /* GL_DEPTH_STENCIL_ATTACHMENT */ - 686, /* GL_INDEX */ - 1952, /* GL_UNSIGNED_BYTE_2_3_3_REV */ - 1973, /* GL_UNSIGNED_SHORT_5_6_5 */ - 1974, /* GL_UNSIGNED_SHORT_5_6_5_REV */ - 1970, /* GL_UNSIGNED_SHORT_4_4_4_4_REV */ - 1967, /* GL_UNSIGNED_SHORT_1_5_5_5_REV */ - 1964, /* GL_UNSIGNED_INT_8_8_8_8_REV */ - 1961, /* GL_UNSIGNED_INT_2_10_10_10_REV */ - 1882, /* GL_TEXTURE_MAX_CLAMP_S_SGIX */ - 1883, /* GL_TEXTURE_MAX_CLAMP_T_SGIX */ - 1881, /* GL_TEXTURE_MAX_CLAMP_R_SGIX */ - 1047, /* GL_MIRRORED_REPEAT */ - 1515, /* GL_RGB_S3TC */ - 1484, /* GL_RGB4_S3TC */ - 1513, /* GL_RGBA_S3TC */ - 1506, /* GL_RGBA4_S3TC */ - 1511, /* GL_RGBA_DXT5_S3TC */ - 1503, /* GL_RGBA4_DXT5_S3TC */ - 277, /* GL_COMPRESSED_RGB_S3TC_DXT1_EXT */ - 272, /* GL_COMPRESSED_RGBA_S3TC_DXT1_EXT */ - 273, /* GL_COMPRESSED_RGBA_S3TC_DXT3_EXT */ - 274, /* GL_COMPRESSED_RGBA_S3TC_DXT5_EXT */ - 1109, /* GL_NEAREST_CLIPMAP_NEAREST_SGIX */ - 1108, /* GL_NEAREST_CLIPMAP_LINEAR_SGIX */ - 757, /* GL_LINEAR_CLIPMAP_NEAREST_SGIX */ - 542, /* GL_FOG_COORDINATE_SOURCE */ - 534, /* GL_FOG_COORD */ - 558, /* GL_FRAGMENT_DEPTH */ - 326, /* GL_CURRENT_FOG_COORD */ - 541, /* GL_FOG_COORDINATE_ARRAY_TYPE */ - 540, /* GL_FOG_COORDINATE_ARRAY_STRIDE */ - 539, /* GL_FOG_COORDINATE_ARRAY_POINTER */ - 536, /* GL_FOG_COORDINATE_ARRAY */ - 212, /* GL_COLOR_SUM */ - 347, /* GL_CURRENT_SECONDARY_COLOR */ - 1553, /* GL_SECONDARY_COLOR_ARRAY_SIZE */ - 1555, /* GL_SECONDARY_COLOR_ARRAY_TYPE */ - 1554, /* GL_SECONDARY_COLOR_ARRAY_STRIDE */ - 1552, /* GL_SECONDARY_COLOR_ARRAY_POINTER */ - 1549, /* GL_SECONDARY_COLOR_ARRAY */ - 345, /* GL_CURRENT_RASTER_SECONDARY_COLOR */ + 955, /* GL_MAX_ELEMENTS_VERTICES */ + 954, /* GL_MAX_ELEMENTS_INDICES */ + 1870, /* GL_TEXTURE_INDEX_SIZE_EXT */ + 160, /* GL_CLIP_VOLUME_CLIPPING_HINT_EXT */ + 1263, /* GL_POINT_SIZE_MIN */ + 1259, /* GL_POINT_SIZE_MAX */ + 1248, /* GL_POINT_FADE_THRESHOLD_SIZE */ + 1244, /* GL_POINT_DISTANCE_ATTENUATION */ + 141, /* GL_CLAMP_TO_BORDER */ + 144, /* GL_CLAMP_TO_EDGE */ + 1892, /* GL_TEXTURE_MIN_LOD */ + 1890, /* GL_TEXTURE_MAX_LOD */ + 1781, /* GL_TEXTURE_BASE_LEVEL */ + 1889, /* GL_TEXTURE_MAX_LEVEL */ + 682, /* GL_IGNORE_BORDER_HP */ + 292, /* GL_CONSTANT_BORDER_HP */ + 1471, /* GL_REPLICATE_BORDER_HP */ + 298, /* GL_CONVOLUTION_BORDER_COLOR */ + 1155, /* GL_OCCLUSION_TEST_HP */ + 1156, /* GL_OCCLUSION_TEST_RESULT_HP */ + 760, /* GL_LINEAR_CLIPMAP_LINEAR_SGIX */ + 1798, /* GL_TEXTURE_CLIPMAP_CENTER_SGIX */ + 1800, /* GL_TEXTURE_CLIPMAP_FRAME_SGIX */ + 1802, /* GL_TEXTURE_CLIPMAP_OFFSET_SGIX */ + 1803, /* GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX */ + 1801, /* GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX */ + 1799, /* GL_TEXTURE_CLIPMAP_DEPTH_SGIX */ + 935, /* GL_MAX_CLIPMAP_DEPTH_SGIX */ + 936, /* GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX */ + 1327, /* GL_POST_TEXTURE_FILTER_BIAS_SGIX */ + 1329, /* GL_POST_TEXTURE_FILTER_SCALE_SGIX */ + 1326, /* GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX */ + 1328, /* GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX */ + 1878, /* GL_TEXTURE_LOD_BIAS_S_SGIX */ + 1879, /* GL_TEXTURE_LOD_BIAS_T_SGIX */ + 1877, /* GL_TEXTURE_LOD_BIAS_R_SGIX */ + 644, /* GL_GENERATE_MIPMAP */ + 645, /* GL_GENERATE_MIPMAP_HINT */ + 559, /* GL_FOG_OFFSET_SGIX */ + 560, /* GL_FOG_OFFSET_VALUE_SGIX */ + 1812, /* GL_TEXTURE_COMPARE_SGIX */ + 1811, /* GL_TEXTURE_COMPARE_OPERATOR_SGIX */ + 1874, /* GL_TEXTURE_LEQUAL_R_SGIX */ + 1866, /* GL_TEXTURE_GEQUAL_R_SGIX */ + 380, /* GL_DEPTH_COMPONENT16 */ + 384, /* GL_DEPTH_COMPONENT24 */ + 388, /* GL_DEPTH_COMPONENT32 */ + 323, /* GL_CULL_VERTEX_EXT */ + 325, /* GL_CULL_VERTEX_OBJECT_POSITION_EXT */ + 324, /* GL_CULL_VERTEX_EYE_POSITION_EXT */ + 2060, /* GL_WRAP_BORDER_SUN */ + 1805, /* GL_TEXTURE_COLOR_WRITEMASK_SGIS */ + 753, /* GL_LIGHT_MODEL_COLOR_CONTROL */ + 1582, /* GL_SINGLE_COLOR */ + 1566, /* GL_SEPARATE_SPECULAR_COLOR */ + 1577, /* GL_SHARED_TEXTURE_PALETTE_EXT */ + 571, /* GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING */ + 572, /* GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE */ + 582, /* GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE */ + 574, /* GL_FRAMEBUFFER_ATTACHMENT_GREEN_SIZE */ + 570, /* GL_FRAMEBUFFER_ATTACHMENT_BLUE_SIZE */ + 569, /* GL_FRAMEBUFFER_ATTACHMENT_ALPHA_SIZE */ + 573, /* GL_FRAMEBUFFER_ATTACHMENT_DEPTH_SIZE */ + 583, /* GL_FRAMEBUFFER_ATTACHMENT_STENCIL_SIZE */ + 600, /* GL_FRAMEBUFFER_DEFAULT */ + 626, /* GL_FRAMEBUFFER_UNDEFINED */ + 396, /* GL_DEPTH_STENCIL_ATTACHMENT */ + 690, /* GL_INDEX */ + 1957, /* GL_UNSIGNED_BYTE_2_3_3_REV */ + 1978, /* GL_UNSIGNED_SHORT_5_6_5 */ + 1979, /* GL_UNSIGNED_SHORT_5_6_5_REV */ + 1975, /* GL_UNSIGNED_SHORT_4_4_4_4_REV */ + 1972, /* GL_UNSIGNED_SHORT_1_5_5_5_REV */ + 1969, /* GL_UNSIGNED_INT_8_8_8_8_REV */ + 1966, /* GL_UNSIGNED_INT_2_10_10_10_REV */ + 1887, /* GL_TEXTURE_MAX_CLAMP_S_SGIX */ + 1888, /* GL_TEXTURE_MAX_CLAMP_T_SGIX */ + 1886, /* GL_TEXTURE_MAX_CLAMP_R_SGIX */ + 1051, /* GL_MIRRORED_REPEAT */ + 1520, /* GL_RGB_S3TC */ + 1488, /* GL_RGB4_S3TC */ + 1518, /* GL_RGBA_S3TC */ + 1510, /* GL_RGBA4_S3TC */ + 1515, /* GL_RGBA_DXT5_S3TC */ + 1507, /* GL_RGBA4_DXT5_S3TC */ + 280, /* GL_COMPRESSED_RGB_S3TC_DXT1_EXT */ + 275, /* GL_COMPRESSED_RGBA_S3TC_DXT1_EXT */ + 276, /* GL_COMPRESSED_RGBA_S3TC_DXT3_EXT */ + 277, /* GL_COMPRESSED_RGBA_S3TC_DXT5_EXT */ + 1113, /* GL_NEAREST_CLIPMAP_NEAREST_SGIX */ + 1112, /* GL_NEAREST_CLIPMAP_LINEAR_SGIX */ + 761, /* GL_LINEAR_CLIPMAP_NEAREST_SGIX */ + 546, /* GL_FOG_COORDINATE_SOURCE */ + 538, /* GL_FOG_COORD */ + 562, /* GL_FRAGMENT_DEPTH */ + 329, /* GL_CURRENT_FOG_COORD */ + 545, /* GL_FOG_COORDINATE_ARRAY_TYPE */ + 544, /* GL_FOG_COORDINATE_ARRAY_STRIDE */ + 543, /* GL_FOG_COORDINATE_ARRAY_POINTER */ + 540, /* GL_FOG_COORDINATE_ARRAY */ + 215, /* GL_COLOR_SUM */ + 350, /* GL_CURRENT_SECONDARY_COLOR */ + 1558, /* GL_SECONDARY_COLOR_ARRAY_SIZE */ + 1560, /* GL_SECONDARY_COLOR_ARRAY_TYPE */ + 1559, /* GL_SECONDARY_COLOR_ARRAY_STRIDE */ + 1557, /* GL_SECONDARY_COLOR_ARRAY_POINTER */ + 1554, /* GL_SECONDARY_COLOR_ARRAY */ + 348, /* GL_CURRENT_RASTER_SECONDARY_COLOR */ 28, /* GL_ALIASED_POINT_SIZE_RANGE */ 27, /* GL_ALIASED_LINE_WIDTH_RANGE */ - 1704, /* GL_TEXTURE0 */ - 1706, /* GL_TEXTURE1 */ - 1728, /* GL_TEXTURE2 */ - 1750, /* GL_TEXTURE3 */ - 1756, /* GL_TEXTURE4 */ - 1758, /* GL_TEXTURE5 */ - 1760, /* GL_TEXTURE6 */ - 1762, /* GL_TEXTURE7 */ - 1764, /* GL_TEXTURE8 */ - 1766, /* GL_TEXTURE9 */ - 1707, /* GL_TEXTURE10 */ - 1709, /* GL_TEXTURE11 */ - 1711, /* GL_TEXTURE12 */ - 1713, /* GL_TEXTURE13 */ - 1715, /* GL_TEXTURE14 */ - 1717, /* GL_TEXTURE15 */ - 1719, /* GL_TEXTURE16 */ - 1721, /* GL_TEXTURE17 */ - 1723, /* GL_TEXTURE18 */ - 1725, /* GL_TEXTURE19 */ - 1729, /* GL_TEXTURE20 */ - 1731, /* GL_TEXTURE21 */ - 1733, /* GL_TEXTURE22 */ - 1735, /* GL_TEXTURE23 */ - 1737, /* GL_TEXTURE24 */ - 1739, /* GL_TEXTURE25 */ - 1741, /* GL_TEXTURE26 */ - 1743, /* GL_TEXTURE27 */ - 1745, /* GL_TEXTURE28 */ - 1747, /* GL_TEXTURE29 */ - 1751, /* GL_TEXTURE30 */ - 1753, /* GL_TEXTURE31 */ + 1709, /* GL_TEXTURE0 */ + 1711, /* GL_TEXTURE1 */ + 1733, /* GL_TEXTURE2 */ + 1755, /* GL_TEXTURE3 */ + 1761, /* GL_TEXTURE4 */ + 1763, /* GL_TEXTURE5 */ + 1765, /* GL_TEXTURE6 */ + 1767, /* GL_TEXTURE7 */ + 1769, /* GL_TEXTURE8 */ + 1771, /* GL_TEXTURE9 */ + 1712, /* GL_TEXTURE10 */ + 1714, /* GL_TEXTURE11 */ + 1716, /* GL_TEXTURE12 */ + 1718, /* GL_TEXTURE13 */ + 1720, /* GL_TEXTURE14 */ + 1722, /* GL_TEXTURE15 */ + 1724, /* GL_TEXTURE16 */ + 1726, /* GL_TEXTURE17 */ + 1728, /* GL_TEXTURE18 */ + 1730, /* GL_TEXTURE19 */ + 1734, /* GL_TEXTURE20 */ + 1736, /* GL_TEXTURE21 */ + 1738, /* GL_TEXTURE22 */ + 1740, /* GL_TEXTURE23 */ + 1742, /* GL_TEXTURE24 */ + 1744, /* GL_TEXTURE25 */ + 1746, /* GL_TEXTURE26 */ + 1748, /* GL_TEXTURE27 */ + 1750, /* GL_TEXTURE28 */ + 1752, /* GL_TEXTURE29 */ + 1756, /* GL_TEXTURE30 */ + 1758, /* GL_TEXTURE31 */ 18, /* GL_ACTIVE_TEXTURE */ - 145, /* GL_CLIENT_ACTIVE_TEXTURE */ - 1015, /* GL_MAX_TEXTURE_UNITS */ - 1927, /* GL_TRANSPOSE_MODELVIEW_MATRIX */ - 1930, /* GL_TRANSPOSE_PROJECTION_MATRIX */ - 1932, /* GL_TRANSPOSE_TEXTURE_MATRIX */ - 1924, /* GL_TRANSPOSE_COLOR_MATRIX */ - 1686, /* GL_SUBTRACT */ - 998, /* GL_MAX_RENDERBUFFER_SIZE */ - 260, /* GL_COMPRESSED_ALPHA */ - 264, /* GL_COMPRESSED_LUMINANCE */ - 265, /* GL_COMPRESSED_LUMINANCE_ALPHA */ - 262, /* GL_COMPRESSED_INTENSITY */ - 268, /* GL_COMPRESSED_RGB */ - 269, /* GL_COMPRESSED_RGBA */ - 1814, /* GL_TEXTURE_COMPRESSION_HINT */ - 1891, /* GL_TEXTURE_RECTANGLE_ARB */ - 1786, /* GL_TEXTURE_BINDING_RECTANGLE_ARB */ - 1388, /* GL_PROXY_TEXTURE_RECTANGLE_ARB */ - 996, /* GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB */ - 392, /* GL_DEPTH_STENCIL */ - 1957, /* GL_UNSIGNED_INT_24_8 */ - 1010, /* GL_MAX_TEXTURE_LOD_BIAS */ - 1880, /* GL_TEXTURE_MAX_ANISOTROPY_EXT */ - 1012, /* GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT */ - 1852, /* GL_TEXTURE_FILTER_CONTROL */ - 1870, /* GL_TEXTURE_LOD_BIAS */ - 245, /* GL_COMBINE4 */ - 1004, /* GL_MAX_SHININESS_NV */ - 1005, /* GL_MAX_SPOT_EXPONENT_NV */ - 684, /* GL_INCR_WRAP */ - 358, /* GL_DECR_WRAP */ - 1067, /* GL_MODELVIEW1_ARB */ - 1125, /* GL_NORMAL_MAP */ - 1427, /* GL_REFLECTION_MAP */ - 1824, /* GL_TEXTURE_CUBE_MAP */ - 1783, /* GL_TEXTURE_BINDING_CUBE_MAP */ - 1836, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X */ - 1826, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X */ - 1839, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y */ - 1829, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y */ - 1842, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z */ - 1832, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z */ - 1386, /* GL_PROXY_TEXTURE_CUBE_MAP */ - 944, /* GL_MAX_CUBE_MAP_TEXTURE_SIZE */ - 1103, /* GL_MULTISAMPLE_FILTER_HINT_NV */ - 550, /* GL_FOG_DISTANCE_MODE_NV */ - 499, /* GL_EYE_RADIAL_NV */ - 498, /* GL_EYE_PLANE_ABSOLUTE_NV */ - 244, /* GL_COMBINE */ - 251, /* GL_COMBINE_RGB */ - 246, /* GL_COMBINE_ALPHA */ - 1516, /* GL_RGB_SCALE */ + 148, /* GL_CLIENT_ACTIVE_TEXTURE */ + 1019, /* GL_MAX_TEXTURE_UNITS */ + 1932, /* GL_TRANSPOSE_MODELVIEW_MATRIX */ + 1935, /* GL_TRANSPOSE_PROJECTION_MATRIX */ + 1937, /* GL_TRANSPOSE_TEXTURE_MATRIX */ + 1929, /* GL_TRANSPOSE_COLOR_MATRIX */ + 1691, /* GL_SUBTRACT */ + 1002, /* GL_MAX_RENDERBUFFER_SIZE */ + 263, /* GL_COMPRESSED_ALPHA */ + 267, /* GL_COMPRESSED_LUMINANCE */ + 268, /* GL_COMPRESSED_LUMINANCE_ALPHA */ + 265, /* GL_COMPRESSED_INTENSITY */ + 271, /* GL_COMPRESSED_RGB */ + 272, /* GL_COMPRESSED_RGBA */ + 1819, /* GL_TEXTURE_COMPRESSION_HINT */ + 1896, /* GL_TEXTURE_RECTANGLE_ARB */ + 1791, /* GL_TEXTURE_BINDING_RECTANGLE_ARB */ + 1392, /* GL_PROXY_TEXTURE_RECTANGLE_ARB */ + 1000, /* GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB */ + 395, /* GL_DEPTH_STENCIL */ + 1962, /* GL_UNSIGNED_INT_24_8 */ + 1014, /* GL_MAX_TEXTURE_LOD_BIAS */ + 1885, /* GL_TEXTURE_MAX_ANISOTROPY_EXT */ + 1016, /* GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT */ + 1857, /* GL_TEXTURE_FILTER_CONTROL */ + 1875, /* GL_TEXTURE_LOD_BIAS */ + 248, /* GL_COMBINE4 */ + 1008, /* GL_MAX_SHININESS_NV */ + 1009, /* GL_MAX_SPOT_EXPONENT_NV */ + 688, /* GL_INCR_WRAP */ + 361, /* GL_DECR_WRAP */ + 1071, /* GL_MODELVIEW1_ARB */ + 1129, /* GL_NORMAL_MAP */ + 1431, /* GL_REFLECTION_MAP */ + 1829, /* GL_TEXTURE_CUBE_MAP */ + 1788, /* GL_TEXTURE_BINDING_CUBE_MAP */ + 1841, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X */ + 1831, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X */ + 1844, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y */ + 1834, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y */ + 1847, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z */ + 1837, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z */ + 1390, /* GL_PROXY_TEXTURE_CUBE_MAP */ + 948, /* GL_MAX_CUBE_MAP_TEXTURE_SIZE */ + 1107, /* GL_MULTISAMPLE_FILTER_HINT_NV */ + 554, /* GL_FOG_DISTANCE_MODE_NV */ + 502, /* GL_EYE_RADIAL_NV */ + 501, /* GL_EYE_PLANE_ABSOLUTE_NV */ + 247, /* GL_COMBINE */ + 254, /* GL_COMBINE_RGB */ + 249, /* GL_COMBINE_ALPHA */ + 1521, /* GL_RGB_SCALE */ 24, /* GL_ADD_SIGNED */ - 713, /* GL_INTERPOLATE */ - 284, /* GL_CONSTANT */ - 1329, /* GL_PRIMARY_COLOR */ - 1326, /* GL_PREVIOUS */ - 1592, /* GL_SOURCE0_RGB */ - 1598, /* GL_SOURCE1_RGB */ - 1604, /* GL_SOURCE2_RGB */ - 1608, /* GL_SOURCE3_RGB_NV */ - 1589, /* GL_SOURCE0_ALPHA */ - 1595, /* GL_SOURCE1_ALPHA */ - 1601, /* GL_SOURCE2_ALPHA */ - 1607, /* GL_SOURCE3_ALPHA_NV */ - 1165, /* GL_OPERAND0_RGB */ - 1171, /* GL_OPERAND1_RGB */ - 1177, /* GL_OPERAND2_RGB */ - 1181, /* GL_OPERAND3_RGB_NV */ - 1162, /* GL_OPERAND0_ALPHA */ - 1168, /* GL_OPERAND1_ALPHA */ - 1174, /* GL_OPERAND2_ALPHA */ - 1180, /* GL_OPERAND3_ALPHA_NV */ + 717, /* GL_INTERPOLATE */ + 287, /* GL_CONSTANT */ + 1333, /* GL_PRIMARY_COLOR */ + 1330, /* GL_PREVIOUS */ + 1597, /* GL_SOURCE0_RGB */ + 1603, /* GL_SOURCE1_RGB */ + 1609, /* GL_SOURCE2_RGB */ + 1613, /* GL_SOURCE3_RGB_NV */ + 1594, /* GL_SOURCE0_ALPHA */ + 1600, /* GL_SOURCE1_ALPHA */ + 1606, /* GL_SOURCE2_ALPHA */ + 1612, /* GL_SOURCE3_ALPHA_NV */ + 1169, /* GL_OPERAND0_RGB */ + 1175, /* GL_OPERAND1_RGB */ + 1181, /* GL_OPERAND2_RGB */ + 1185, /* GL_OPERAND3_RGB_NV */ + 1166, /* GL_OPERAND0_ALPHA */ + 1172, /* GL_OPERAND1_ALPHA */ + 1178, /* GL_OPERAND2_ALPHA */ + 1184, /* GL_OPERAND3_ALPHA_NV */ 120, /* GL_BUFFER_OBJECT_APPLE */ - 1986, /* GL_VERTEX_ARRAY_BINDING */ - 1889, /* GL_TEXTURE_RANGE_LENGTH_APPLE */ - 1890, /* GL_TEXTURE_RANGE_POINTER_APPLE */ - 2060, /* GL_YCBCR_422_APPLE */ - 1975, /* GL_UNSIGNED_SHORT_8_8_APPLE */ - 1977, /* GL_UNSIGNED_SHORT_8_8_REV_APPLE */ - 1899, /* GL_TEXTURE_STORAGE_HINT_APPLE */ - 1677, /* GL_STORAGE_PRIVATE_APPLE */ - 1676, /* GL_STORAGE_CACHED_APPLE */ - 1678, /* GL_STORAGE_SHARED_APPLE */ - 1579, /* GL_SLICE_ACCUM_SUN */ - 1396, /* GL_QUAD_MESH_SUN */ - 1937, /* GL_TRIANGLE_MESH_SUN */ - 2025, /* GL_VERTEX_PROGRAM_ARB */ - 2036, /* GL_VERTEX_STATE_PROGRAM_NV */ - 2012, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED */ - 2018, /* GL_VERTEX_ATTRIB_ARRAY_SIZE */ - 2020, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE */ - 2022, /* GL_VERTEX_ATTRIB_ARRAY_TYPE */ - 349, /* GL_CURRENT_VERTEX_ATTRIB */ - 1345, /* GL_PROGRAM_LENGTH_ARB */ - 1360, /* GL_PROGRAM_STRING_ARB */ - 1090, /* GL_MODELVIEW_PROJECTION_NV */ - 677, /* GL_IDENTITY_NV */ - 729, /* GL_INVERSE_NV */ - 1929, /* GL_TRANSPOSE_NV */ - 730, /* GL_INVERSE_TRANSPOSE_NV */ - 982, /* GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB */ - 981, /* GL_MAX_PROGRAM_MATRICES_ARB */ - 872, /* GL_MATRIX0_NV */ - 884, /* GL_MATRIX1_NV */ - 896, /* GL_MATRIX2_NV */ - 900, /* GL_MATRIX3_NV */ - 902, /* GL_MATRIX4_NV */ - 904, /* GL_MATRIX5_NV */ - 906, /* GL_MATRIX6_NV */ - 908, /* GL_MATRIX7_NV */ - 332, /* GL_CURRENT_MATRIX_STACK_DEPTH_ARB */ - 329, /* GL_CURRENT_MATRIX_ARB */ - 2028, /* GL_VERTEX_PROGRAM_POINT_SIZE */ - 2031, /* GL_VERTEX_PROGRAM_TWO_SIDE */ - 1357, /* GL_PROGRAM_PARAMETER_NV */ - 2016, /* GL_VERTEX_ATTRIB_ARRAY_POINTER */ - 1362, /* GL_PROGRAM_TARGET_NV */ - 1359, /* GL_PROGRAM_RESIDENT_NV */ - 1909, /* GL_TRACK_MATRIX_NV */ - 1910, /* GL_TRACK_MATRIX_TRANSFORM_NV */ - 2026, /* GL_VERTEX_PROGRAM_BINDING_NV */ - 1339, /* GL_PROGRAM_ERROR_POSITION_ARB */ - 373, /* GL_DEPTH_CLAMP */ - 1994, /* GL_VERTEX_ATTRIB_ARRAY0_NV */ - 2001, /* GL_VERTEX_ATTRIB_ARRAY1_NV */ - 2002, /* GL_VERTEX_ATTRIB_ARRAY2_NV */ - 2003, /* GL_VERTEX_ATTRIB_ARRAY3_NV */ - 2004, /* GL_VERTEX_ATTRIB_ARRAY4_NV */ - 2005, /* GL_VERTEX_ATTRIB_ARRAY5_NV */ - 2006, /* GL_VERTEX_ATTRIB_ARRAY6_NV */ - 2007, /* GL_VERTEX_ATTRIB_ARRAY7_NV */ - 2008, /* GL_VERTEX_ATTRIB_ARRAY8_NV */ - 2009, /* GL_VERTEX_ATTRIB_ARRAY9_NV */ - 1995, /* GL_VERTEX_ATTRIB_ARRAY10_NV */ - 1996, /* GL_VERTEX_ATTRIB_ARRAY11_NV */ - 1997, /* GL_VERTEX_ATTRIB_ARRAY12_NV */ - 1998, /* GL_VERTEX_ATTRIB_ARRAY13_NV */ - 1999, /* GL_VERTEX_ATTRIB_ARRAY14_NV */ - 2000, /* GL_VERTEX_ATTRIB_ARRAY15_NV */ - 820, /* GL_MAP1_VERTEX_ATTRIB0_4_NV */ - 827, /* GL_MAP1_VERTEX_ATTRIB1_4_NV */ - 828, /* GL_MAP1_VERTEX_ATTRIB2_4_NV */ - 829, /* GL_MAP1_VERTEX_ATTRIB3_4_NV */ - 830, /* GL_MAP1_VERTEX_ATTRIB4_4_NV */ - 831, /* GL_MAP1_VERTEX_ATTRIB5_4_NV */ - 832, /* GL_MAP1_VERTEX_ATTRIB6_4_NV */ - 833, /* GL_MAP1_VERTEX_ATTRIB7_4_NV */ - 834, /* GL_MAP1_VERTEX_ATTRIB8_4_NV */ - 835, /* GL_MAP1_VERTEX_ATTRIB9_4_NV */ - 821, /* GL_MAP1_VERTEX_ATTRIB10_4_NV */ - 822, /* GL_MAP1_VERTEX_ATTRIB11_4_NV */ - 823, /* GL_MAP1_VERTEX_ATTRIB12_4_NV */ - 824, /* GL_MAP1_VERTEX_ATTRIB13_4_NV */ - 825, /* GL_MAP1_VERTEX_ATTRIB14_4_NV */ - 826, /* GL_MAP1_VERTEX_ATTRIB15_4_NV */ - 847, /* GL_MAP2_VERTEX_ATTRIB0_4_NV */ - 854, /* GL_MAP2_VERTEX_ATTRIB1_4_NV */ - 855, /* GL_MAP2_VERTEX_ATTRIB2_4_NV */ - 856, /* GL_MAP2_VERTEX_ATTRIB3_4_NV */ - 857, /* GL_MAP2_VERTEX_ATTRIB4_4_NV */ - 858, /* GL_MAP2_VERTEX_ATTRIB5_4_NV */ - 859, /* GL_MAP2_VERTEX_ATTRIB6_4_NV */ - 1338, /* GL_PROGRAM_BINDING_ARB */ - 861, /* GL_MAP2_VERTEX_ATTRIB8_4_NV */ - 862, /* GL_MAP2_VERTEX_ATTRIB9_4_NV */ - 848, /* GL_MAP2_VERTEX_ATTRIB10_4_NV */ - 849, /* GL_MAP2_VERTEX_ATTRIB11_4_NV */ - 850, /* GL_MAP2_VERTEX_ATTRIB12_4_NV */ - 851, /* GL_MAP2_VERTEX_ATTRIB13_4_NV */ - 852, /* GL_MAP2_VERTEX_ATTRIB14_4_NV */ - 853, /* GL_MAP2_VERTEX_ATTRIB15_4_NV */ - 1812, /* GL_TEXTURE_COMPRESSED_IMAGE_SIZE */ - 1809, /* GL_TEXTURE_COMPRESSED */ - 1131, /* GL_NUM_COMPRESSED_TEXTURE_FORMATS */ - 282, /* GL_COMPRESSED_TEXTURE_FORMATS */ - 1033, /* GL_MAX_VERTEX_UNITS_ARB */ + 1991, /* GL_VERTEX_ARRAY_BINDING */ + 1894, /* GL_TEXTURE_RANGE_LENGTH_APPLE */ + 1895, /* GL_TEXTURE_RANGE_POINTER_APPLE */ + 2065, /* GL_YCBCR_422_APPLE */ + 1980, /* GL_UNSIGNED_SHORT_8_8_APPLE */ + 1982, /* GL_UNSIGNED_SHORT_8_8_REV_APPLE */ + 1904, /* GL_TEXTURE_STORAGE_HINT_APPLE */ + 1682, /* GL_STORAGE_PRIVATE_APPLE */ + 1681, /* GL_STORAGE_CACHED_APPLE */ + 1683, /* GL_STORAGE_SHARED_APPLE */ + 1584, /* GL_SLICE_ACCUM_SUN */ + 1400, /* GL_QUAD_MESH_SUN */ + 1942, /* GL_TRIANGLE_MESH_SUN */ + 2030, /* GL_VERTEX_PROGRAM_ARB */ + 2041, /* GL_VERTEX_STATE_PROGRAM_NV */ + 2017, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED */ + 2023, /* GL_VERTEX_ATTRIB_ARRAY_SIZE */ + 2025, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE */ + 2027, /* GL_VERTEX_ATTRIB_ARRAY_TYPE */ + 352, /* GL_CURRENT_VERTEX_ATTRIB */ + 1349, /* GL_PROGRAM_LENGTH_ARB */ + 1364, /* GL_PROGRAM_STRING_ARB */ + 1094, /* GL_MODELVIEW_PROJECTION_NV */ + 681, /* GL_IDENTITY_NV */ + 733, /* GL_INVERSE_NV */ + 1934, /* GL_TRANSPOSE_NV */ + 734, /* GL_INVERSE_TRANSPOSE_NV */ + 986, /* GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB */ + 985, /* GL_MAX_PROGRAM_MATRICES_ARB */ + 876, /* GL_MATRIX0_NV */ + 888, /* GL_MATRIX1_NV */ + 900, /* GL_MATRIX2_NV */ + 904, /* GL_MATRIX3_NV */ + 906, /* GL_MATRIX4_NV */ + 908, /* GL_MATRIX5_NV */ + 910, /* GL_MATRIX6_NV */ + 912, /* GL_MATRIX7_NV */ + 335, /* GL_CURRENT_MATRIX_STACK_DEPTH_ARB */ + 332, /* GL_CURRENT_MATRIX_ARB */ + 2033, /* GL_VERTEX_PROGRAM_POINT_SIZE */ + 2036, /* GL_VERTEX_PROGRAM_TWO_SIDE */ + 1361, /* GL_PROGRAM_PARAMETER_NV */ + 2021, /* GL_VERTEX_ATTRIB_ARRAY_POINTER */ + 1366, /* GL_PROGRAM_TARGET_NV */ + 1363, /* GL_PROGRAM_RESIDENT_NV */ + 1914, /* GL_TRACK_MATRIX_NV */ + 1915, /* GL_TRACK_MATRIX_TRANSFORM_NV */ + 2031, /* GL_VERTEX_PROGRAM_BINDING_NV */ + 1343, /* GL_PROGRAM_ERROR_POSITION_ARB */ + 376, /* GL_DEPTH_CLAMP */ + 1999, /* GL_VERTEX_ATTRIB_ARRAY0_NV */ + 2006, /* GL_VERTEX_ATTRIB_ARRAY1_NV */ + 2007, /* GL_VERTEX_ATTRIB_ARRAY2_NV */ + 2008, /* GL_VERTEX_ATTRIB_ARRAY3_NV */ + 2009, /* GL_VERTEX_ATTRIB_ARRAY4_NV */ + 2010, /* GL_VERTEX_ATTRIB_ARRAY5_NV */ + 2011, /* GL_VERTEX_ATTRIB_ARRAY6_NV */ + 2012, /* GL_VERTEX_ATTRIB_ARRAY7_NV */ + 2013, /* GL_VERTEX_ATTRIB_ARRAY8_NV */ + 2014, /* GL_VERTEX_ATTRIB_ARRAY9_NV */ + 2000, /* GL_VERTEX_ATTRIB_ARRAY10_NV */ + 2001, /* GL_VERTEX_ATTRIB_ARRAY11_NV */ + 2002, /* GL_VERTEX_ATTRIB_ARRAY12_NV */ + 2003, /* GL_VERTEX_ATTRIB_ARRAY13_NV */ + 2004, /* GL_VERTEX_ATTRIB_ARRAY14_NV */ + 2005, /* GL_VERTEX_ATTRIB_ARRAY15_NV */ + 824, /* GL_MAP1_VERTEX_ATTRIB0_4_NV */ + 831, /* GL_MAP1_VERTEX_ATTRIB1_4_NV */ + 832, /* GL_MAP1_VERTEX_ATTRIB2_4_NV */ + 833, /* GL_MAP1_VERTEX_ATTRIB3_4_NV */ + 834, /* GL_MAP1_VERTEX_ATTRIB4_4_NV */ + 835, /* GL_MAP1_VERTEX_ATTRIB5_4_NV */ + 836, /* GL_MAP1_VERTEX_ATTRIB6_4_NV */ + 837, /* GL_MAP1_VERTEX_ATTRIB7_4_NV */ + 838, /* GL_MAP1_VERTEX_ATTRIB8_4_NV */ + 839, /* GL_MAP1_VERTEX_ATTRIB9_4_NV */ + 825, /* GL_MAP1_VERTEX_ATTRIB10_4_NV */ + 826, /* GL_MAP1_VERTEX_ATTRIB11_4_NV */ + 827, /* GL_MAP1_VERTEX_ATTRIB12_4_NV */ + 828, /* GL_MAP1_VERTEX_ATTRIB13_4_NV */ + 829, /* GL_MAP1_VERTEX_ATTRIB14_4_NV */ + 830, /* GL_MAP1_VERTEX_ATTRIB15_4_NV */ + 851, /* GL_MAP2_VERTEX_ATTRIB0_4_NV */ + 858, /* GL_MAP2_VERTEX_ATTRIB1_4_NV */ + 859, /* GL_MAP2_VERTEX_ATTRIB2_4_NV */ + 860, /* GL_MAP2_VERTEX_ATTRIB3_4_NV */ + 861, /* GL_MAP2_VERTEX_ATTRIB4_4_NV */ + 862, /* GL_MAP2_VERTEX_ATTRIB5_4_NV */ + 863, /* GL_MAP2_VERTEX_ATTRIB6_4_NV */ + 1342, /* GL_PROGRAM_BINDING_ARB */ + 865, /* GL_MAP2_VERTEX_ATTRIB8_4_NV */ + 866, /* GL_MAP2_VERTEX_ATTRIB9_4_NV */ + 852, /* GL_MAP2_VERTEX_ATTRIB10_4_NV */ + 853, /* GL_MAP2_VERTEX_ATTRIB11_4_NV */ + 854, /* GL_MAP2_VERTEX_ATTRIB12_4_NV */ + 855, /* GL_MAP2_VERTEX_ATTRIB13_4_NV */ + 856, /* GL_MAP2_VERTEX_ATTRIB14_4_NV */ + 857, /* GL_MAP2_VERTEX_ATTRIB15_4_NV */ + 1817, /* GL_TEXTURE_COMPRESSED_IMAGE_SIZE */ + 1814, /* GL_TEXTURE_COMPRESSED */ + 1135, /* GL_NUM_COMPRESSED_TEXTURE_FORMATS */ + 285, /* GL_COMPRESSED_TEXTURE_FORMATS */ + 1037, /* GL_MAX_VERTEX_UNITS_ARB */ 22, /* GL_ACTIVE_VERTEX_UNITS_ARB */ - 2054, /* GL_WEIGHT_SUM_UNITY_ARB */ - 2024, /* GL_VERTEX_BLEND_ARB */ - 351, /* GL_CURRENT_WEIGHT_ARB */ - 2052, /* GL_WEIGHT_ARRAY_TYPE_ARB */ - 2050, /* GL_WEIGHT_ARRAY_STRIDE_ARB */ - 2048, /* GL_WEIGHT_ARRAY_SIZE_ARB */ - 2046, /* GL_WEIGHT_ARRAY_POINTER_ARB */ - 2041, /* GL_WEIGHT_ARRAY_ARB */ - 407, /* GL_DOT3_RGB */ - 408, /* GL_DOT3_RGBA */ - 276, /* GL_COMPRESSED_RGB_FXT1_3DFX */ - 271, /* GL_COMPRESSED_RGBA_FXT1_3DFX */ - 1098, /* GL_MULTISAMPLE_3DFX */ - 1538, /* GL_SAMPLE_BUFFERS_3DFX */ - 1529, /* GL_SAMPLES_3DFX */ - 1078, /* GL_MODELVIEW2_ARB */ - 1081, /* GL_MODELVIEW3_ARB */ - 1082, /* GL_MODELVIEW4_ARB */ - 1083, /* GL_MODELVIEW5_ARB */ - 1084, /* GL_MODELVIEW6_ARB */ - 1085, /* GL_MODELVIEW7_ARB */ - 1086, /* GL_MODELVIEW8_ARB */ - 1087, /* GL_MODELVIEW9_ARB */ - 1057, /* GL_MODELVIEW10_ARB */ - 1058, /* GL_MODELVIEW11_ARB */ - 1059, /* GL_MODELVIEW12_ARB */ - 1060, /* GL_MODELVIEW13_ARB */ - 1061, /* GL_MODELVIEW14_ARB */ - 1062, /* GL_MODELVIEW15_ARB */ - 1063, /* GL_MODELVIEW16_ARB */ - 1064, /* GL_MODELVIEW17_ARB */ - 1065, /* GL_MODELVIEW18_ARB */ - 1066, /* GL_MODELVIEW19_ARB */ - 1068, /* GL_MODELVIEW20_ARB */ - 1069, /* GL_MODELVIEW21_ARB */ - 1070, /* GL_MODELVIEW22_ARB */ - 1071, /* GL_MODELVIEW23_ARB */ - 1072, /* GL_MODELVIEW24_ARB */ - 1073, /* GL_MODELVIEW25_ARB */ - 1074, /* GL_MODELVIEW26_ARB */ - 1075, /* GL_MODELVIEW27_ARB */ - 1076, /* GL_MODELVIEW28_ARB */ - 1077, /* GL_MODELVIEW29_ARB */ - 1079, /* GL_MODELVIEW30_ARB */ - 1080, /* GL_MODELVIEW31_ARB */ - 412, /* GL_DOT3_RGB_EXT */ - 410, /* GL_DOT3_RGBA_EXT */ - 1051, /* GL_MIRROR_CLAMP_EXT */ - 1054, /* GL_MIRROR_CLAMP_TO_EDGE_EXT */ - 1093, /* GL_MODULATE_ADD_ATI */ - 1094, /* GL_MODULATE_SIGNED_ADD_ATI */ - 1095, /* GL_MODULATE_SUBTRACT_ATI */ - 2061, /* GL_YCBCR_MESA */ - 1189, /* GL_PACK_INVERT_MESA */ - 354, /* GL_DEBUG_OBJECT_MESA */ - 355, /* GL_DEBUG_PRINT_MESA */ - 353, /* GL_DEBUG_ASSERT_MESA */ + 2059, /* GL_WEIGHT_SUM_UNITY_ARB */ + 2029, /* GL_VERTEX_BLEND_ARB */ + 354, /* GL_CURRENT_WEIGHT_ARB */ + 2057, /* GL_WEIGHT_ARRAY_TYPE_ARB */ + 2055, /* GL_WEIGHT_ARRAY_STRIDE_ARB */ + 2053, /* GL_WEIGHT_ARRAY_SIZE_ARB */ + 2051, /* GL_WEIGHT_ARRAY_POINTER_ARB */ + 2046, /* GL_WEIGHT_ARRAY_ARB */ + 410, /* GL_DOT3_RGB */ + 411, /* GL_DOT3_RGBA */ + 279, /* GL_COMPRESSED_RGB_FXT1_3DFX */ + 274, /* GL_COMPRESSED_RGBA_FXT1_3DFX */ + 1102, /* GL_MULTISAMPLE_3DFX */ + 1543, /* GL_SAMPLE_BUFFERS_3DFX */ + 1534, /* GL_SAMPLES_3DFX */ + 1082, /* GL_MODELVIEW2_ARB */ + 1085, /* GL_MODELVIEW3_ARB */ + 1086, /* GL_MODELVIEW4_ARB */ + 1087, /* GL_MODELVIEW5_ARB */ + 1088, /* GL_MODELVIEW6_ARB */ + 1089, /* GL_MODELVIEW7_ARB */ + 1090, /* GL_MODELVIEW8_ARB */ + 1091, /* GL_MODELVIEW9_ARB */ + 1061, /* GL_MODELVIEW10_ARB */ + 1062, /* GL_MODELVIEW11_ARB */ + 1063, /* GL_MODELVIEW12_ARB */ + 1064, /* GL_MODELVIEW13_ARB */ + 1065, /* GL_MODELVIEW14_ARB */ + 1066, /* GL_MODELVIEW15_ARB */ + 1067, /* GL_MODELVIEW16_ARB */ + 1068, /* GL_MODELVIEW17_ARB */ + 1069, /* GL_MODELVIEW18_ARB */ + 1070, /* GL_MODELVIEW19_ARB */ + 1072, /* GL_MODELVIEW20_ARB */ + 1073, /* GL_MODELVIEW21_ARB */ + 1074, /* GL_MODELVIEW22_ARB */ + 1075, /* GL_MODELVIEW23_ARB */ + 1076, /* GL_MODELVIEW24_ARB */ + 1077, /* GL_MODELVIEW25_ARB */ + 1078, /* GL_MODELVIEW26_ARB */ + 1079, /* GL_MODELVIEW27_ARB */ + 1080, /* GL_MODELVIEW28_ARB */ + 1081, /* GL_MODELVIEW29_ARB */ + 1083, /* GL_MODELVIEW30_ARB */ + 1084, /* GL_MODELVIEW31_ARB */ + 415, /* GL_DOT3_RGB_EXT */ + 413, /* GL_DOT3_RGBA_EXT */ + 1055, /* GL_MIRROR_CLAMP_EXT */ + 1058, /* GL_MIRROR_CLAMP_TO_EDGE_EXT */ + 1097, /* GL_MODULATE_ADD_ATI */ + 1098, /* GL_MODULATE_SIGNED_ADD_ATI */ + 1099, /* GL_MODULATE_SUBTRACT_ATI */ + 2066, /* GL_YCBCR_MESA */ + 1193, /* GL_PACK_INVERT_MESA */ + 357, /* GL_DEBUG_OBJECT_MESA */ + 358, /* GL_DEBUG_PRINT_MESA */ + 356, /* GL_DEBUG_ASSERT_MESA */ 122, /* GL_BUFFER_SIZE */ 124, /* GL_BUFFER_USAGE */ 128, /* GL_BUMP_ROT_MATRIX_ATI */ 129, /* GL_BUMP_ROT_MATRIX_SIZE_ATI */ 127, /* GL_BUMP_NUM_TEX_UNITS_ATI */ 131, /* GL_BUMP_TEX_UNITS_ATI */ - 472, /* GL_DUDV_ATI */ - 471, /* GL_DU8DV8_ATI */ + 475, /* GL_DUDV_ATI */ + 474, /* GL_DU8DV8_ATI */ 126, /* GL_BUMP_ENVMAP_ATI */ 130, /* GL_BUMP_TARGET_ATI */ - 1133, /* GL_NUM_PROGRAM_BINARY_FORMATS_OES */ - 1336, /* GL_PROGRAM_BINARY_FORMATS_OES */ - 1641, /* GL_STENCIL_BACK_FUNC */ - 1639, /* GL_STENCIL_BACK_FAIL */ - 1643, /* GL_STENCIL_BACK_PASS_DEPTH_FAIL */ - 1645, /* GL_STENCIL_BACK_PASS_DEPTH_PASS */ - 559, /* GL_FRAGMENT_PROGRAM_ARB */ - 1334, /* GL_PROGRAM_ALU_INSTRUCTIONS_ARB */ - 1365, /* GL_PROGRAM_TEX_INSTRUCTIONS_ARB */ - 1364, /* GL_PROGRAM_TEX_INDIRECTIONS_ARB */ - 1348, /* GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ - 1354, /* GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ - 1353, /* GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ - 971, /* GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB */ - 994, /* GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB */ - 993, /* GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB */ - 984, /* GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ - 990, /* GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ - 989, /* GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ - 947, /* GL_MAX_DRAW_BUFFERS */ - 416, /* GL_DRAW_BUFFER0 */ - 419, /* GL_DRAW_BUFFER1 */ - 440, /* GL_DRAW_BUFFER2 */ - 443, /* GL_DRAW_BUFFER3 */ - 446, /* GL_DRAW_BUFFER4 */ - 449, /* GL_DRAW_BUFFER5 */ - 452, /* GL_DRAW_BUFFER6 */ - 455, /* GL_DRAW_BUFFER7 */ - 458, /* GL_DRAW_BUFFER8 */ - 461, /* GL_DRAW_BUFFER9 */ - 420, /* GL_DRAW_BUFFER10 */ - 423, /* GL_DRAW_BUFFER11 */ - 426, /* GL_DRAW_BUFFER12 */ - 429, /* GL_DRAW_BUFFER13 */ - 432, /* GL_DRAW_BUFFER14 */ - 435, /* GL_DRAW_BUFFER15 */ + 1137, /* GL_NUM_PROGRAM_BINARY_FORMATS_OES */ + 1340, /* GL_PROGRAM_BINARY_FORMATS_OES */ + 1646, /* GL_STENCIL_BACK_FUNC */ + 1644, /* GL_STENCIL_BACK_FAIL */ + 1648, /* GL_STENCIL_BACK_PASS_DEPTH_FAIL */ + 1650, /* GL_STENCIL_BACK_PASS_DEPTH_PASS */ + 563, /* GL_FRAGMENT_PROGRAM_ARB */ + 1338, /* GL_PROGRAM_ALU_INSTRUCTIONS_ARB */ + 1369, /* GL_PROGRAM_TEX_INSTRUCTIONS_ARB */ + 1368, /* GL_PROGRAM_TEX_INDIRECTIONS_ARB */ + 1352, /* GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ + 1358, /* GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ + 1357, /* GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ + 975, /* GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB */ + 998, /* GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB */ + 997, /* GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB */ + 988, /* GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ + 994, /* GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ + 993, /* GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ + 1516, /* GL_RGBA_FLOAT_MODE_ARB */ + 951, /* GL_MAX_DRAW_BUFFERS */ + 419, /* GL_DRAW_BUFFER0 */ + 422, /* GL_DRAW_BUFFER1 */ + 443, /* GL_DRAW_BUFFER2 */ + 446, /* GL_DRAW_BUFFER3 */ + 449, /* GL_DRAW_BUFFER4 */ + 452, /* GL_DRAW_BUFFER5 */ + 455, /* GL_DRAW_BUFFER6 */ + 458, /* GL_DRAW_BUFFER7 */ + 461, /* GL_DRAW_BUFFER8 */ + 464, /* GL_DRAW_BUFFER9 */ + 423, /* GL_DRAW_BUFFER10 */ + 426, /* GL_DRAW_BUFFER11 */ + 429, /* GL_DRAW_BUFFER12 */ + 432, /* GL_DRAW_BUFFER13 */ + 435, /* GL_DRAW_BUFFER14 */ + 438, /* GL_DRAW_BUFFER15 */ 85, /* GL_BLEND_EQUATION_ALPHA */ - 923, /* GL_MATRIX_PALETTE_ARB */ - 964, /* GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB */ - 967, /* GL_MAX_PALETTE_MATRICES_ARB */ - 335, /* GL_CURRENT_PALETTE_MATRIX_ARB */ - 911, /* GL_MATRIX_INDEX_ARRAY_ARB */ - 330, /* GL_CURRENT_MATRIX_INDEX_ARB */ - 916, /* GL_MATRIX_INDEX_ARRAY_SIZE_ARB */ - 920, /* GL_MATRIX_INDEX_ARRAY_TYPE_ARB */ - 918, /* GL_MATRIX_INDEX_ARRAY_STRIDE_ARB */ - 914, /* GL_MATRIX_INDEX_ARRAY_POINTER_ARB */ - 1847, /* GL_TEXTURE_DEPTH_SIZE */ - 400, /* GL_DEPTH_TEXTURE_MODE */ - 1804, /* GL_TEXTURE_COMPARE_MODE */ - 1802, /* GL_TEXTURE_COMPARE_FUNC */ - 255, /* GL_COMPARE_R_TO_TEXTURE */ - 1266, /* GL_POINT_SPRITE */ - 309, /* GL_COORD_REPLACE */ - 1271, /* GL_POINT_SPRITE_R_MODE_NV */ - 1400, /* GL_QUERY_COUNTER_BITS */ - 338, /* GL_CURRENT_QUERY */ - 1403, /* GL_QUERY_RESULT */ - 1405, /* GL_QUERY_RESULT_AVAILABLE */ - 1026, /* GL_MAX_VERTEX_ATTRIBS */ - 2014, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED */ - 398, /* GL_DEPTH_STENCIL_TO_RGBA_NV */ - 397, /* GL_DEPTH_STENCIL_TO_BGRA_NV */ - 1006, /* GL_MAX_TEXTURE_COORDS */ - 1008, /* GL_MAX_TEXTURE_IMAGE_UNITS */ - 1341, /* GL_PROGRAM_ERROR_STRING_ARB */ - 1343, /* GL_PROGRAM_FORMAT_ASCII_ARB */ - 1342, /* GL_PROGRAM_FORMAT_ARB */ - 1901, /* GL_TEXTURE_UNSIGNED_REMAP_MODE_NV */ - 371, /* GL_DEPTH_BOUNDS_TEST_EXT */ - 370, /* GL_DEPTH_BOUNDS_EXT */ + 927, /* GL_MATRIX_PALETTE_ARB */ + 968, /* GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB */ + 971, /* GL_MAX_PALETTE_MATRICES_ARB */ + 338, /* GL_CURRENT_PALETTE_MATRIX_ARB */ + 915, /* GL_MATRIX_INDEX_ARRAY_ARB */ + 333, /* GL_CURRENT_MATRIX_INDEX_ARB */ + 920, /* GL_MATRIX_INDEX_ARRAY_SIZE_ARB */ + 924, /* GL_MATRIX_INDEX_ARRAY_TYPE_ARB */ + 922, /* GL_MATRIX_INDEX_ARRAY_STRIDE_ARB */ + 918, /* GL_MATRIX_INDEX_ARRAY_POINTER_ARB */ + 1852, /* GL_TEXTURE_DEPTH_SIZE */ + 403, /* GL_DEPTH_TEXTURE_MODE */ + 1809, /* GL_TEXTURE_COMPARE_MODE */ + 1807, /* GL_TEXTURE_COMPARE_FUNC */ + 258, /* GL_COMPARE_R_TO_TEXTURE */ + 1270, /* GL_POINT_SPRITE */ + 312, /* GL_COORD_REPLACE */ + 1275, /* GL_POINT_SPRITE_R_MODE_NV */ + 1404, /* GL_QUERY_COUNTER_BITS */ + 341, /* GL_CURRENT_QUERY */ + 1407, /* GL_QUERY_RESULT */ + 1409, /* GL_QUERY_RESULT_AVAILABLE */ + 1030, /* GL_MAX_VERTEX_ATTRIBS */ + 2019, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED */ + 401, /* GL_DEPTH_STENCIL_TO_RGBA_NV */ + 400, /* GL_DEPTH_STENCIL_TO_BGRA_NV */ + 1010, /* GL_MAX_TEXTURE_COORDS */ + 1012, /* GL_MAX_TEXTURE_IMAGE_UNITS */ + 1345, /* GL_PROGRAM_ERROR_STRING_ARB */ + 1347, /* GL_PROGRAM_FORMAT_ASCII_ARB */ + 1346, /* GL_PROGRAM_FORMAT_ARB */ + 1906, /* GL_TEXTURE_UNSIGNED_REMAP_MODE_NV */ + 374, /* GL_DEPTH_BOUNDS_TEST_EXT */ + 373, /* GL_DEPTH_BOUNDS_EXT */ 53, /* GL_ARRAY_BUFFER */ - 485, /* GL_ELEMENT_ARRAY_BUFFER */ + 488, /* GL_ELEMENT_ARRAY_BUFFER */ 54, /* GL_ARRAY_BUFFER_BINDING */ - 486, /* GL_ELEMENT_ARRAY_BUFFER_BINDING */ - 1988, /* GL_VERTEX_ARRAY_BUFFER_BINDING */ - 1120, /* GL_NORMAL_ARRAY_BUFFER_BINDING */ - 161, /* GL_COLOR_ARRAY_BUFFER_BINDING */ - 688, /* GL_INDEX_ARRAY_BUFFER_BINDING */ - 1817, /* GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING */ - 481, /* GL_EDGE_FLAG_ARRAY_BUFFER_BINDING */ - 1550, /* GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING */ - 537, /* GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING */ - 2042, /* GL_WEIGHT_ARRAY_BUFFER_BINDING */ - 2010, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING */ - 1344, /* GL_PROGRAM_INSTRUCTIONS_ARB */ - 977, /* GL_MAX_PROGRAM_INSTRUCTIONS_ARB */ - 1350, /* GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ - 986, /* GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ - 1363, /* GL_PROGRAM_TEMPORARIES_ARB */ - 992, /* GL_MAX_PROGRAM_TEMPORARIES_ARB */ - 1352, /* GL_PROGRAM_NATIVE_TEMPORARIES_ARB */ - 988, /* GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB */ - 1356, /* GL_PROGRAM_PARAMETERS_ARB */ - 991, /* GL_MAX_PROGRAM_PARAMETERS_ARB */ - 1351, /* GL_PROGRAM_NATIVE_PARAMETERS_ARB */ - 987, /* GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB */ - 1335, /* GL_PROGRAM_ATTRIBS_ARB */ - 972, /* GL_MAX_PROGRAM_ATTRIBS_ARB */ - 1349, /* GL_PROGRAM_NATIVE_ATTRIBS_ARB */ - 985, /* GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB */ - 1333, /* GL_PROGRAM_ADDRESS_REGISTERS_ARB */ - 970, /* GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB */ - 1347, /* GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ - 983, /* GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ - 978, /* GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB */ - 974, /* GL_MAX_PROGRAM_ENV_PARAMETERS_ARB */ - 1366, /* GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB */ - 1926, /* GL_TRANSPOSE_CURRENT_MATRIX_ARB */ - 1417, /* GL_READ_ONLY */ - 2056, /* GL_WRITE_ONLY */ - 1419, /* GL_READ_WRITE */ + 489, /* GL_ELEMENT_ARRAY_BUFFER_BINDING */ + 1993, /* GL_VERTEX_ARRAY_BUFFER_BINDING */ + 1124, /* GL_NORMAL_ARRAY_BUFFER_BINDING */ + 164, /* GL_COLOR_ARRAY_BUFFER_BINDING */ + 692, /* GL_INDEX_ARRAY_BUFFER_BINDING */ + 1822, /* GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING */ + 484, /* GL_EDGE_FLAG_ARRAY_BUFFER_BINDING */ + 1555, /* GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING */ + 541, /* GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING */ + 2047, /* GL_WEIGHT_ARRAY_BUFFER_BINDING */ + 2015, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING */ + 1348, /* GL_PROGRAM_INSTRUCTIONS_ARB */ + 981, /* GL_MAX_PROGRAM_INSTRUCTIONS_ARB */ + 1354, /* GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ + 990, /* GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ + 1367, /* GL_PROGRAM_TEMPORARIES_ARB */ + 996, /* GL_MAX_PROGRAM_TEMPORARIES_ARB */ + 1356, /* GL_PROGRAM_NATIVE_TEMPORARIES_ARB */ + 992, /* GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB */ + 1360, /* GL_PROGRAM_PARAMETERS_ARB */ + 995, /* GL_MAX_PROGRAM_PARAMETERS_ARB */ + 1355, /* GL_PROGRAM_NATIVE_PARAMETERS_ARB */ + 991, /* GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB */ + 1339, /* GL_PROGRAM_ATTRIBS_ARB */ + 976, /* GL_MAX_PROGRAM_ATTRIBS_ARB */ + 1353, /* GL_PROGRAM_NATIVE_ATTRIBS_ARB */ + 989, /* GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB */ + 1337, /* GL_PROGRAM_ADDRESS_REGISTERS_ARB */ + 974, /* GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB */ + 1351, /* GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ + 987, /* GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ + 982, /* GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB */ + 978, /* GL_MAX_PROGRAM_ENV_PARAMETERS_ARB */ + 1370, /* GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB */ + 1931, /* GL_TRANSPOSE_CURRENT_MATRIX_ARB */ + 1421, /* GL_READ_ONLY */ + 2061, /* GL_WRITE_ONLY */ + 1423, /* GL_READ_WRITE */ 110, /* GL_BUFFER_ACCESS */ 114, /* GL_BUFFER_MAPPED */ 117, /* GL_BUFFER_MAP_POINTER */ - 1908, /* GL_TIME_ELAPSED_EXT */ - 871, /* GL_MATRIX0_ARB */ - 883, /* GL_MATRIX1_ARB */ - 895, /* GL_MATRIX2_ARB */ - 899, /* GL_MATRIX3_ARB */ - 901, /* GL_MATRIX4_ARB */ - 903, /* GL_MATRIX5_ARB */ - 905, /* GL_MATRIX6_ARB */ - 907, /* GL_MATRIX7_ARB */ - 909, /* GL_MATRIX8_ARB */ - 910, /* GL_MATRIX9_ARB */ - 873, /* GL_MATRIX10_ARB */ - 874, /* GL_MATRIX11_ARB */ - 875, /* GL_MATRIX12_ARB */ - 876, /* GL_MATRIX13_ARB */ - 877, /* GL_MATRIX14_ARB */ - 878, /* GL_MATRIX15_ARB */ - 879, /* GL_MATRIX16_ARB */ - 880, /* GL_MATRIX17_ARB */ - 881, /* GL_MATRIX18_ARB */ - 882, /* GL_MATRIX19_ARB */ - 885, /* GL_MATRIX20_ARB */ - 886, /* GL_MATRIX21_ARB */ - 887, /* GL_MATRIX22_ARB */ - 888, /* GL_MATRIX23_ARB */ - 889, /* GL_MATRIX24_ARB */ - 890, /* GL_MATRIX25_ARB */ - 891, /* GL_MATRIX26_ARB */ - 892, /* GL_MATRIX27_ARB */ - 893, /* GL_MATRIX28_ARB */ - 894, /* GL_MATRIX29_ARB */ - 897, /* GL_MATRIX30_ARB */ - 898, /* GL_MATRIX31_ARB */ - 1681, /* GL_STREAM_DRAW */ - 1683, /* GL_STREAM_READ */ - 1679, /* GL_STREAM_COPY */ - 1631, /* GL_STATIC_DRAW */ - 1633, /* GL_STATIC_READ */ - 1629, /* GL_STATIC_COPY */ - 475, /* GL_DYNAMIC_DRAW */ - 477, /* GL_DYNAMIC_READ */ - 473, /* GL_DYNAMIC_COPY */ - 1229, /* GL_PIXEL_PACK_BUFFER */ - 1233, /* GL_PIXEL_UNPACK_BUFFER */ - 1230, /* GL_PIXEL_PACK_BUFFER_BINDING */ - 1234, /* GL_PIXEL_UNPACK_BUFFER_BINDING */ - 362, /* GL_DEPTH24_STENCIL8 */ - 1897, /* GL_TEXTURE_STENCIL_SIZE */ - 1845, /* GL_TEXTURE_CUBE_MAP_SEAMLESS */ - 973, /* GL_MAX_PROGRAM_CALL_DEPTH_NV */ - 976, /* GL_MAX_PROGRAM_IF_DEPTH_NV */ - 980, /* GL_MAX_PROGRAM_LOOP_DEPTH_NV */ - 979, /* GL_MAX_PROGRAM_LOOP_COUNT_NV */ - 928, /* GL_MAX_ARRAY_TEXTURE_LAYERS_EXT */ - 1672, /* GL_STENCIL_TEST_TWO_SIDE_EXT */ + 1913, /* GL_TIME_ELAPSED_EXT */ + 875, /* GL_MATRIX0_ARB */ + 887, /* GL_MATRIX1_ARB */ + 899, /* GL_MATRIX2_ARB */ + 903, /* GL_MATRIX3_ARB */ + 905, /* GL_MATRIX4_ARB */ + 907, /* GL_MATRIX5_ARB */ + 909, /* GL_MATRIX6_ARB */ + 911, /* GL_MATRIX7_ARB */ + 913, /* GL_MATRIX8_ARB */ + 914, /* GL_MATRIX9_ARB */ + 877, /* GL_MATRIX10_ARB */ + 878, /* GL_MATRIX11_ARB */ + 879, /* GL_MATRIX12_ARB */ + 880, /* GL_MATRIX13_ARB */ + 881, /* GL_MATRIX14_ARB */ + 882, /* GL_MATRIX15_ARB */ + 883, /* GL_MATRIX16_ARB */ + 884, /* GL_MATRIX17_ARB */ + 885, /* GL_MATRIX18_ARB */ + 886, /* GL_MATRIX19_ARB */ + 889, /* GL_MATRIX20_ARB */ + 890, /* GL_MATRIX21_ARB */ + 891, /* GL_MATRIX22_ARB */ + 892, /* GL_MATRIX23_ARB */ + 893, /* GL_MATRIX24_ARB */ + 894, /* GL_MATRIX25_ARB */ + 895, /* GL_MATRIX26_ARB */ + 896, /* GL_MATRIX27_ARB */ + 897, /* GL_MATRIX28_ARB */ + 898, /* GL_MATRIX29_ARB */ + 901, /* GL_MATRIX30_ARB */ + 902, /* GL_MATRIX31_ARB */ + 1686, /* GL_STREAM_DRAW */ + 1688, /* GL_STREAM_READ */ + 1684, /* GL_STREAM_COPY */ + 1636, /* GL_STATIC_DRAW */ + 1638, /* GL_STATIC_READ */ + 1634, /* GL_STATIC_COPY */ + 478, /* GL_DYNAMIC_DRAW */ + 480, /* GL_DYNAMIC_READ */ + 476, /* GL_DYNAMIC_COPY */ + 1233, /* GL_PIXEL_PACK_BUFFER */ + 1237, /* GL_PIXEL_UNPACK_BUFFER */ + 1234, /* GL_PIXEL_PACK_BUFFER_BINDING */ + 1238, /* GL_PIXEL_UNPACK_BUFFER_BINDING */ + 365, /* GL_DEPTH24_STENCIL8 */ + 1902, /* GL_TEXTURE_STENCIL_SIZE */ + 1850, /* GL_TEXTURE_CUBE_MAP_SEAMLESS */ + 977, /* GL_MAX_PROGRAM_CALL_DEPTH_NV */ + 980, /* GL_MAX_PROGRAM_IF_DEPTH_NV */ + 984, /* GL_MAX_PROGRAM_LOOP_DEPTH_NV */ + 983, /* GL_MAX_PROGRAM_LOOP_COUNT_NV */ + 932, /* GL_MAX_ARRAY_TEXTURE_LAYERS_EXT */ + 1677, /* GL_STENCIL_TEST_TWO_SIDE_EXT */ 17, /* GL_ACTIVE_STENCIL_FACE_EXT */ - 1052, /* GL_MIRROR_CLAMP_TO_BORDER_EXT */ - 1531, /* GL_SAMPLES_PASSED */ - 1253, /* GL_POINT_SIZE_ARRAY_TYPE_OES */ - 1252, /* GL_POINT_SIZE_ARRAY_STRIDE_OES */ - 1251, /* GL_POINT_SIZE_ARRAY_POINTER_OES */ - 1089, /* GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES */ - 1369, /* GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES */ - 1879, /* GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES */ + 1056, /* GL_MIRROR_CLAMP_TO_BORDER_EXT */ + 1536, /* GL_SAMPLES_PASSED */ + 146, /* GL_CLAMP_VERTEX_COLOR_ARB */ + 139, /* GL_CLAMP_FRAGMENT_COLOR_ARB */ + 140, /* GL_CLAMP_READ_COLOR_ARB */ + 514, /* GL_FIXED_ONLY_ARB */ + 1257, /* GL_POINT_SIZE_ARRAY_TYPE_OES */ + 1256, /* GL_POINT_SIZE_ARRAY_STRIDE_OES */ + 1255, /* GL_POINT_SIZE_ARRAY_POINTER_OES */ + 1093, /* GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES */ + 1373, /* GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES */ + 1884, /* GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES */ 121, /* GL_BUFFER_SERIALIZED_MODIFY_APPLE */ 113, /* GL_BUFFER_FLUSHING_UNMAP_APPLE */ - 1431, /* GL_RELEASED_APPLE */ - 2039, /* GL_VOLATILE_APPLE */ - 1470, /* GL_RETAINED_APPLE */ - 1941, /* GL_UNDEFINED_APPLE */ - 1390, /* GL_PURGEABLE_APPLE */ - 560, /* GL_FRAGMENT_SHADER */ - 2034, /* GL_VERTEX_SHADER */ - 1355, /* GL_PROGRAM_OBJECT_ARB */ - 1566, /* GL_SHADER_OBJECT_ARB */ - 954, /* GL_MAX_FRAGMENT_UNIFORM_COMPONENTS */ - 1030, /* GL_MAX_VERTEX_UNIFORM_COMPONENTS */ - 1023, /* GL_MAX_VARYING_FLOATS */ - 1028, /* GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS */ - 938, /* GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS */ - 1149, /* GL_OBJECT_TYPE_ARB */ - 1568, /* GL_SHADER_TYPE */ - 525, /* GL_FLOAT_VEC2 */ - 527, /* GL_FLOAT_VEC3 */ - 529, /* GL_FLOAT_VEC4 */ - 717, /* GL_INT_VEC2 */ - 719, /* GL_INT_VEC3 */ - 721, /* GL_INT_VEC4 */ + 1435, /* GL_RELEASED_APPLE */ + 2044, /* GL_VOLATILE_APPLE */ + 1474, /* GL_RETAINED_APPLE */ + 1946, /* GL_UNDEFINED_APPLE */ + 1394, /* GL_PURGEABLE_APPLE */ + 564, /* GL_FRAGMENT_SHADER */ + 2039, /* GL_VERTEX_SHADER */ + 1359, /* GL_PROGRAM_OBJECT_ARB */ + 1571, /* GL_SHADER_OBJECT_ARB */ + 958, /* GL_MAX_FRAGMENT_UNIFORM_COMPONENTS */ + 1034, /* GL_MAX_VERTEX_UNIFORM_COMPONENTS */ + 1027, /* GL_MAX_VARYING_FLOATS */ + 1032, /* GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS */ + 942, /* GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS */ + 1153, /* GL_OBJECT_TYPE_ARB */ + 1573, /* GL_SHADER_TYPE */ + 529, /* GL_FLOAT_VEC2 */ + 531, /* GL_FLOAT_VEC3 */ + 533, /* GL_FLOAT_VEC4 */ + 721, /* GL_INT_VEC2 */ + 723, /* GL_INT_VEC3 */ + 725, /* GL_INT_VEC4 */ 102, /* GL_BOOL */ 104, /* GL_BOOL_VEC2 */ 106, /* GL_BOOL_VEC3 */ 108, /* GL_BOOL_VEC4 */ - 513, /* GL_FLOAT_MAT2 */ - 517, /* GL_FLOAT_MAT3 */ - 521, /* GL_FLOAT_MAT4 */ - 1521, /* GL_SAMPLER_1D */ - 1523, /* GL_SAMPLER_2D */ - 1525, /* GL_SAMPLER_3D */ - 1527, /* GL_SAMPLER_CUBE */ - 1522, /* GL_SAMPLER_1D_SHADOW */ - 1524, /* GL_SAMPLER_2D_SHADOW */ - 515, /* GL_FLOAT_MAT2x3 */ - 516, /* GL_FLOAT_MAT2x4 */ - 519, /* GL_FLOAT_MAT3x2 */ - 520, /* GL_FLOAT_MAT3x4 */ - 523, /* GL_FLOAT_MAT4x2 */ - 524, /* GL_FLOAT_MAT4x3 */ - 360, /* GL_DELETE_STATUS */ - 259, /* GL_COMPILE_STATUS */ - 776, /* GL_LINK_STATUS */ - 1982, /* GL_VALIDATE_STATUS */ - 700, /* GL_INFO_LOG_LENGTH */ + 517, /* GL_FLOAT_MAT2 */ + 521, /* GL_FLOAT_MAT3 */ + 525, /* GL_FLOAT_MAT4 */ + 1526, /* GL_SAMPLER_1D */ + 1528, /* GL_SAMPLER_2D */ + 1530, /* GL_SAMPLER_3D */ + 1532, /* GL_SAMPLER_CUBE */ + 1527, /* GL_SAMPLER_1D_SHADOW */ + 1529, /* GL_SAMPLER_2D_SHADOW */ + 519, /* GL_FLOAT_MAT2x3 */ + 520, /* GL_FLOAT_MAT2x4 */ + 523, /* GL_FLOAT_MAT3x2 */ + 524, /* GL_FLOAT_MAT3x4 */ + 527, /* GL_FLOAT_MAT4x2 */ + 528, /* GL_FLOAT_MAT4x3 */ + 363, /* GL_DELETE_STATUS */ + 262, /* GL_COMPILE_STATUS */ + 780, /* GL_LINK_STATUS */ + 1987, /* GL_VALIDATE_STATUS */ + 704, /* GL_INFO_LOG_LENGTH */ 56, /* GL_ATTACHED_SHADERS */ 20, /* GL_ACTIVE_UNIFORMS */ 21, /* GL_ACTIVE_UNIFORM_MAX_LENGTH */ - 1567, /* GL_SHADER_SOURCE_LENGTH */ + 1572, /* GL_SHADER_SOURCE_LENGTH */ 15, /* GL_ACTIVE_ATTRIBUTES */ 16, /* GL_ACTIVE_ATTRIBUTE_MAX_LENGTH */ - 562, /* GL_FRAGMENT_SHADER_DERIVATIVE_HINT */ - 1570, /* GL_SHADING_LANGUAGE_VERSION */ - 337, /* GL_CURRENT_PROGRAM */ - 1198, /* GL_PALETTE4_RGB8_OES */ - 1200, /* GL_PALETTE4_RGBA8_OES */ - 1196, /* GL_PALETTE4_R5_G6_B5_OES */ - 1199, /* GL_PALETTE4_RGBA4_OES */ - 1197, /* GL_PALETTE4_RGB5_A1_OES */ - 1203, /* GL_PALETTE8_RGB8_OES */ - 1205, /* GL_PALETTE8_RGBA8_OES */ - 1201, /* GL_PALETTE8_R5_G6_B5_OES */ - 1204, /* GL_PALETTE8_RGBA4_OES */ - 1202, /* GL_PALETTE8_RGB5_A1_OES */ - 682, /* GL_IMPLEMENTATION_COLOR_READ_TYPE_OES */ - 680, /* GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES */ - 1250, /* GL_POINT_SIZE_ARRAY_OES */ - 1823, /* GL_TEXTURE_CROP_RECT_OES */ - 912, /* GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES */ - 1249, /* GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES */ - 1965, /* GL_UNSIGNED_NORMALIZED */ - 1769, /* GL_TEXTURE_1D_ARRAY_EXT */ - 1379, /* GL_PROXY_TEXTURE_1D_ARRAY_EXT */ - 1771, /* GL_TEXTURE_2D_ARRAY_EXT */ - 1382, /* GL_PROXY_TEXTURE_2D_ARRAY_EXT */ - 1778, /* GL_TEXTURE_BINDING_1D_ARRAY_EXT */ - 1780, /* GL_TEXTURE_BINDING_2D_ARRAY_EXT */ - 958, /* GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB */ - 1623, /* GL_SRGB */ - 1624, /* GL_SRGB8 */ - 1626, /* GL_SRGB_ALPHA */ - 1625, /* GL_SRGB8_ALPHA8 */ - 1583, /* GL_SLUMINANCE_ALPHA */ - 1582, /* GL_SLUMINANCE8_ALPHA8 */ - 1580, /* GL_SLUMINANCE */ - 1581, /* GL_SLUMINANCE8 */ - 280, /* GL_COMPRESSED_SRGB */ - 281, /* GL_COMPRESSED_SRGB_ALPHA */ - 278, /* GL_COMPRESSED_SLUMINANCE */ - 279, /* GL_COMPRESSED_SLUMINANCE_ALPHA */ - 1923, /* GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT */ - 1917, /* GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT */ - 1021, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT */ - 1922, /* GL_TRANSFORM_FEEDBACK_VARYINGS_EXT */ - 1920, /* GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT */ - 1919, /* GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT */ - 1332, /* GL_PRIMITIVES_GENERATED_EXT */ - 1921, /* GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT */ - 1410, /* GL_RASTERIZER_DISCARD_EXT */ - 1019, /* GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT */ - 1020, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT */ - 712, /* GL_INTERLEAVED_ATTRIBS_EXT */ - 1560, /* GL_SEPARATE_ATTRIBS_EXT */ - 1916, /* GL_TRANSFORM_FEEDBACK_BUFFER_EXT */ - 1915, /* GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT */ - 1268, /* GL_POINT_SPRITE_COORD_ORIGIN */ - 784, /* GL_LOWER_LEFT */ - 1979, /* GL_UPPER_LEFT */ - 1647, /* GL_STENCIL_BACK_REF */ - 1648, /* GL_STENCIL_BACK_VALUE_MASK */ - 1649, /* GL_STENCIL_BACK_WRITEMASK */ - 465, /* GL_DRAW_FRAMEBUFFER_BINDING */ - 1436, /* GL_RENDERBUFFER_BINDING */ - 1413, /* GL_READ_FRAMEBUFFER */ - 464, /* GL_DRAW_FRAMEBUFFER */ - 1414, /* GL_READ_FRAMEBUFFER_BINDING */ - 1455, /* GL_RENDERBUFFER_SAMPLES */ - 575, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE */ - 572, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME */ - 587, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL */ - 582, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE */ - 585, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER */ - 593, /* GL_FRAMEBUFFER_COMPLETE */ - 598, /* GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT */ - 612, /* GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT */ - 607, /* GL_FRAMEBUFFER_INCOMPLETE_DUPLICATE_ATTACHMENT_EXT */ - 602, /* GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT */ - 608, /* GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT */ - 604, /* GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER */ - 617, /* GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER */ - 623, /* GL_FRAMEBUFFER_UNSUPPORTED */ - 621, /* GL_FRAMEBUFFER_STATUS_ERROR_EXT */ - 934, /* GL_MAX_COLOR_ATTACHMENTS */ - 167, /* GL_COLOR_ATTACHMENT0 */ - 170, /* GL_COLOR_ATTACHMENT1 */ - 184, /* GL_COLOR_ATTACHMENT2 */ - 186, /* GL_COLOR_ATTACHMENT3 */ - 188, /* GL_COLOR_ATTACHMENT4 */ - 190, /* GL_COLOR_ATTACHMENT5 */ - 192, /* GL_COLOR_ATTACHMENT6 */ - 194, /* GL_COLOR_ATTACHMENT7 */ - 196, /* GL_COLOR_ATTACHMENT8 */ - 198, /* GL_COLOR_ATTACHMENT9 */ - 171, /* GL_COLOR_ATTACHMENT10 */ - 173, /* GL_COLOR_ATTACHMENT11 */ - 175, /* GL_COLOR_ATTACHMENT12 */ - 177, /* GL_COLOR_ATTACHMENT13 */ - 179, /* GL_COLOR_ATTACHMENT14 */ - 181, /* GL_COLOR_ATTACHMENT15 */ - 365, /* GL_DEPTH_ATTACHMENT */ - 1636, /* GL_STENCIL_ATTACHMENT */ - 564, /* GL_FRAMEBUFFER */ - 1433, /* GL_RENDERBUFFER */ - 1459, /* GL_RENDERBUFFER_WIDTH */ - 1446, /* GL_RENDERBUFFER_HEIGHT */ - 1449, /* GL_RENDERBUFFER_INTERNAL_FORMAT */ - 1667, /* GL_STENCIL_INDEX_EXT */ - 1656, /* GL_STENCIL_INDEX1 */ - 1661, /* GL_STENCIL_INDEX4 */ - 1664, /* GL_STENCIL_INDEX8 */ - 1657, /* GL_STENCIL_INDEX16 */ - 1453, /* GL_RENDERBUFFER_RED_SIZE */ - 1444, /* GL_RENDERBUFFER_GREEN_SIZE */ - 1439, /* GL_RENDERBUFFER_BLUE_SIZE */ - 1434, /* GL_RENDERBUFFER_ALPHA_SIZE */ - 1441, /* GL_RENDERBUFFER_DEPTH_SIZE */ - 1457, /* GL_RENDERBUFFER_STENCIL_SIZE */ - 615, /* GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE */ - 1001, /* GL_MAX_SAMPLES */ - 1859, /* GL_TEXTURE_GEN_STR_OES */ - 655, /* GL_HALF_FLOAT_OES */ - 1487, /* GL_RGB565_OES */ - 571, /* GL_FRAMEBUFFER_ATTACHMENT_LAYERED_ARB */ - 611, /* GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB */ - 610, /* GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB */ - 646, /* GL_GEOMETRY_SHADER_ARB */ - 647, /* GL_GEOMETRY_VERTICES_OUT_ARB */ - 644, /* GL_GEOMETRY_INPUT_TYPE_ARB */ - 645, /* GL_GEOMETRY_OUTPUT_TYPE_ARB */ - 961, /* GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB */ - 1035, /* GL_MAX_VERTEX_VARYING_COMPONENTS_ARB */ - 960, /* GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB */ - 957, /* GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB */ - 959, /* GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB */ - 785, /* GL_LOW_FLOAT */ - 1037, /* GL_MEDIUM_FLOAT */ - 656, /* GL_HIGH_FLOAT */ - 786, /* GL_LOW_INT */ - 1038, /* GL_MEDIUM_INT */ - 657, /* GL_HIGH_INT */ - 1956, /* GL_UNSIGNED_INT_10_10_10_2_OES */ - 716, /* GL_INT_10_10_10_2_OES */ - 1564, /* GL_SHADER_BINARY_FORMATS */ - 1134, /* GL_NUM_SHADER_BINARY_FORMATS */ - 1565, /* GL_SHADER_COMPILER */ - 1032, /* GL_MAX_VERTEX_UNIFORM_VECTORS */ - 1025, /* GL_MAX_VARYING_VECTORS */ - 956, /* GL_MAX_FRAGMENT_UNIFORM_VECTORS */ - 1407, /* GL_QUERY_WAIT_NV */ - 1402, /* GL_QUERY_NO_WAIT_NV */ - 1399, /* GL_QUERY_BY_REGION_WAIT_NV */ - 1398, /* GL_QUERY_BY_REGION_NO_WAIT_NV */ - 1912, /* GL_TRANSFORM_FEEDBACK */ - 1918, /* GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED */ - 1914, /* GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE */ - 1913, /* GL_TRANSFORM_FEEDBACK_BINDING */ - 1394, /* GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION */ - 507, /* GL_FIRST_VERTEX_CONVENTION */ - 733, /* GL_LAST_VERTEX_CONVENTION */ - 1371, /* GL_PROVOKING_VERTEX */ - 316, /* GL_COPY_READ_BUFFER */ - 317, /* GL_COPY_WRITE_BUFFER */ - 1514, /* GL_RGBA_SNORM */ - 1510, /* GL_RGBA8_SNORM */ - 1576, /* GL_SIGNED_NORMALIZED */ - 1003, /* GL_MAX_SERVER_WAIT_TIMEOUT */ - 1148, /* GL_OBJECT_TYPE */ - 1688, /* GL_SYNC_CONDITION */ - 1693, /* GL_SYNC_STATUS */ - 1690, /* GL_SYNC_FLAGS */ - 1689, /* GL_SYNC_FENCE */ - 1692, /* GL_SYNC_GPU_COMMANDS_COMPLETE */ - 1950, /* GL_UNSIGNALED */ - 1575, /* GL_SIGNALED */ + 566, /* GL_FRAGMENT_SHADER_DERIVATIVE_HINT */ + 1575, /* GL_SHADING_LANGUAGE_VERSION */ + 340, /* GL_CURRENT_PROGRAM */ + 1202, /* GL_PALETTE4_RGB8_OES */ + 1204, /* GL_PALETTE4_RGBA8_OES */ + 1200, /* GL_PALETTE4_R5_G6_B5_OES */ + 1203, /* GL_PALETTE4_RGBA4_OES */ + 1201, /* GL_PALETTE4_RGB5_A1_OES */ + 1207, /* GL_PALETTE8_RGB8_OES */ + 1209, /* GL_PALETTE8_RGBA8_OES */ + 1205, /* GL_PALETTE8_R5_G6_B5_OES */ + 1208, /* GL_PALETTE8_RGBA4_OES */ + 1206, /* GL_PALETTE8_RGB5_A1_OES */ + 686, /* GL_IMPLEMENTATION_COLOR_READ_TYPE_OES */ + 684, /* GL_IMPLEMENTATION_COLOR_READ_FORMAT_OES */ + 1254, /* GL_POINT_SIZE_ARRAY_OES */ + 1828, /* GL_TEXTURE_CROP_RECT_OES */ + 916, /* GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES */ + 1253, /* GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES */ + 1970, /* GL_UNSIGNED_NORMALIZED */ + 1774, /* GL_TEXTURE_1D_ARRAY_EXT */ + 1383, /* GL_PROXY_TEXTURE_1D_ARRAY_EXT */ + 1776, /* GL_TEXTURE_2D_ARRAY_EXT */ + 1386, /* GL_PROXY_TEXTURE_2D_ARRAY_EXT */ + 1783, /* GL_TEXTURE_BINDING_1D_ARRAY_EXT */ + 1785, /* GL_TEXTURE_BINDING_2D_ARRAY_EXT */ + 962, /* GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB */ + 1628, /* GL_SRGB */ + 1629, /* GL_SRGB8 */ + 1631, /* GL_SRGB_ALPHA */ + 1630, /* GL_SRGB8_ALPHA8 */ + 1588, /* GL_SLUMINANCE_ALPHA */ + 1587, /* GL_SLUMINANCE8_ALPHA8 */ + 1585, /* GL_SLUMINANCE */ + 1586, /* GL_SLUMINANCE8 */ + 283, /* GL_COMPRESSED_SRGB */ + 284, /* GL_COMPRESSED_SRGB_ALPHA */ + 281, /* GL_COMPRESSED_SLUMINANCE */ + 282, /* GL_COMPRESSED_SLUMINANCE_ALPHA */ + 1928, /* GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT */ + 1922, /* GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT */ + 1025, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT */ + 1927, /* GL_TRANSFORM_FEEDBACK_VARYINGS_EXT */ + 1925, /* GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT */ + 1924, /* GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT */ + 1336, /* GL_PRIMITIVES_GENERATED_EXT */ + 1926, /* GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT */ + 1414, /* GL_RASTERIZER_DISCARD_EXT */ + 1023, /* GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT */ + 1024, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT */ + 716, /* GL_INTERLEAVED_ATTRIBS_EXT */ + 1565, /* GL_SEPARATE_ATTRIBS_EXT */ + 1921, /* GL_TRANSFORM_FEEDBACK_BUFFER_EXT */ + 1920, /* GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT */ + 1272, /* GL_POINT_SPRITE_COORD_ORIGIN */ + 788, /* GL_LOWER_LEFT */ + 1984, /* GL_UPPER_LEFT */ + 1652, /* GL_STENCIL_BACK_REF */ + 1653, /* GL_STENCIL_BACK_VALUE_MASK */ + 1654, /* GL_STENCIL_BACK_WRITEMASK */ + 468, /* GL_DRAW_FRAMEBUFFER_BINDING */ + 1440, /* GL_RENDERBUFFER_BINDING */ + 1417, /* GL_READ_FRAMEBUFFER */ + 467, /* GL_DRAW_FRAMEBUFFER */ + 1418, /* GL_READ_FRAMEBUFFER_BINDING */ + 1459, /* GL_RENDERBUFFER_SAMPLES */ + 579, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE */ + 576, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME */ + 591, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL */ + 586, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_CUBE_MAP_FACE */ + 589, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LAYER */ + 597, /* GL_FRAMEBUFFER_COMPLETE */ + 602, /* GL_FRAMEBUFFER_INCOMPLETE_ATTACHMENT */ + 616, /* GL_FRAMEBUFFER_INCOMPLETE_MISSING_ATTACHMENT */ + 611, /* GL_FRAMEBUFFER_INCOMPLETE_DUPLICATE_ATTACHMENT_EXT */ + 606, /* GL_FRAMEBUFFER_INCOMPLETE_DIMENSIONS_EXT */ + 612, /* GL_FRAMEBUFFER_INCOMPLETE_FORMATS_EXT */ + 608, /* GL_FRAMEBUFFER_INCOMPLETE_DRAW_BUFFER */ + 621, /* GL_FRAMEBUFFER_INCOMPLETE_READ_BUFFER */ + 627, /* GL_FRAMEBUFFER_UNSUPPORTED */ + 625, /* GL_FRAMEBUFFER_STATUS_ERROR_EXT */ + 938, /* GL_MAX_COLOR_ATTACHMENTS */ + 170, /* GL_COLOR_ATTACHMENT0 */ + 173, /* GL_COLOR_ATTACHMENT1 */ + 187, /* GL_COLOR_ATTACHMENT2 */ + 189, /* GL_COLOR_ATTACHMENT3 */ + 191, /* GL_COLOR_ATTACHMENT4 */ + 193, /* GL_COLOR_ATTACHMENT5 */ + 195, /* GL_COLOR_ATTACHMENT6 */ + 197, /* GL_COLOR_ATTACHMENT7 */ + 199, /* GL_COLOR_ATTACHMENT8 */ + 201, /* GL_COLOR_ATTACHMENT9 */ + 174, /* GL_COLOR_ATTACHMENT10 */ + 176, /* GL_COLOR_ATTACHMENT11 */ + 178, /* GL_COLOR_ATTACHMENT12 */ + 180, /* GL_COLOR_ATTACHMENT13 */ + 182, /* GL_COLOR_ATTACHMENT14 */ + 184, /* GL_COLOR_ATTACHMENT15 */ + 368, /* GL_DEPTH_ATTACHMENT */ + 1641, /* GL_STENCIL_ATTACHMENT */ + 568, /* GL_FRAMEBUFFER */ + 1437, /* GL_RENDERBUFFER */ + 1463, /* GL_RENDERBUFFER_WIDTH */ + 1450, /* GL_RENDERBUFFER_HEIGHT */ + 1453, /* GL_RENDERBUFFER_INTERNAL_FORMAT */ + 1672, /* GL_STENCIL_INDEX_EXT */ + 1661, /* GL_STENCIL_INDEX1 */ + 1666, /* GL_STENCIL_INDEX4 */ + 1669, /* GL_STENCIL_INDEX8 */ + 1662, /* GL_STENCIL_INDEX16 */ + 1457, /* GL_RENDERBUFFER_RED_SIZE */ + 1448, /* GL_RENDERBUFFER_GREEN_SIZE */ + 1443, /* GL_RENDERBUFFER_BLUE_SIZE */ + 1438, /* GL_RENDERBUFFER_ALPHA_SIZE */ + 1445, /* GL_RENDERBUFFER_DEPTH_SIZE */ + 1461, /* GL_RENDERBUFFER_STENCIL_SIZE */ + 619, /* GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE */ + 1005, /* GL_MAX_SAMPLES */ + 1864, /* GL_TEXTURE_GEN_STR_OES */ + 659, /* GL_HALF_FLOAT_OES */ + 1491, /* GL_RGB565_OES */ + 575, /* GL_FRAMEBUFFER_ATTACHMENT_LAYERED_ARB */ + 615, /* GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS_ARB */ + 614, /* GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB */ + 650, /* GL_GEOMETRY_SHADER_ARB */ + 651, /* GL_GEOMETRY_VERTICES_OUT_ARB */ + 648, /* GL_GEOMETRY_INPUT_TYPE_ARB */ + 649, /* GL_GEOMETRY_OUTPUT_TYPE_ARB */ + 965, /* GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB */ + 1039, /* GL_MAX_VERTEX_VARYING_COMPONENTS_ARB */ + 964, /* GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB */ + 961, /* GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB */ + 963, /* GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB */ + 789, /* GL_LOW_FLOAT */ + 1041, /* GL_MEDIUM_FLOAT */ + 660, /* GL_HIGH_FLOAT */ + 790, /* GL_LOW_INT */ + 1042, /* GL_MEDIUM_INT */ + 661, /* GL_HIGH_INT */ + 1961, /* GL_UNSIGNED_INT_10_10_10_2_OES */ + 720, /* GL_INT_10_10_10_2_OES */ + 1569, /* GL_SHADER_BINARY_FORMATS */ + 1138, /* GL_NUM_SHADER_BINARY_FORMATS */ + 1570, /* GL_SHADER_COMPILER */ + 1036, /* GL_MAX_VERTEX_UNIFORM_VECTORS */ + 1029, /* GL_MAX_VARYING_VECTORS */ + 960, /* GL_MAX_FRAGMENT_UNIFORM_VECTORS */ + 1411, /* GL_QUERY_WAIT_NV */ + 1406, /* GL_QUERY_NO_WAIT_NV */ + 1403, /* GL_QUERY_BY_REGION_WAIT_NV */ + 1402, /* GL_QUERY_BY_REGION_NO_WAIT_NV */ + 1917, /* GL_TRANSFORM_FEEDBACK */ + 1923, /* GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED */ + 1919, /* GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE */ + 1918, /* GL_TRANSFORM_FEEDBACK_BINDING */ + 1398, /* GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION */ + 510, /* GL_FIRST_VERTEX_CONVENTION */ + 737, /* GL_LAST_VERTEX_CONVENTION */ + 1375, /* GL_PROVOKING_VERTEX */ + 319, /* GL_COPY_READ_BUFFER */ + 320, /* GL_COPY_WRITE_BUFFER */ + 1519, /* GL_RGBA_SNORM */ + 1514, /* GL_RGBA8_SNORM */ + 1581, /* GL_SIGNED_NORMALIZED */ + 1007, /* GL_MAX_SERVER_WAIT_TIMEOUT */ + 1152, /* GL_OBJECT_TYPE */ + 1693, /* GL_SYNC_CONDITION */ + 1698, /* GL_SYNC_STATUS */ + 1695, /* GL_SYNC_FLAGS */ + 1694, /* GL_SYNC_FENCE */ + 1697, /* GL_SYNC_GPU_COMMANDS_COMPLETE */ + 1955, /* GL_UNSIGNALED */ + 1580, /* GL_SIGNALED */ 46, /* GL_ALREADY_SIGNALED */ - 1907, /* GL_TIMEOUT_EXPIRED */ - 283, /* GL_CONDITION_SATISFIED */ - 2040, /* GL_WAIT_FAILED */ - 492, /* GL_EVAL_BIT */ - 1411, /* GL_RASTER_POSITION_UNCLIPPED_IBM */ - 778, /* GL_LIST_BIT */ - 1788, /* GL_TEXTURE_BIT */ - 1546, /* GL_SCISSOR_BIT */ + 1912, /* GL_TIMEOUT_EXPIRED */ + 286, /* GL_CONDITION_SATISFIED */ + 2045, /* GL_WAIT_FAILED */ + 495, /* GL_EVAL_BIT */ + 1415, /* GL_RASTER_POSITION_UNCLIPPED_IBM */ + 782, /* GL_LIST_BIT */ + 1793, /* GL_TEXTURE_BIT */ + 1551, /* GL_SCISSOR_BIT */ 29, /* GL_ALL_ATTRIB_BITS */ - 1100, /* GL_MULTISAMPLE_BIT */ + 1104, /* GL_MULTISAMPLE_BIT */ 30, /* GL_ALL_CLIENT_ATTRIB_BITS */ }; diff --git a/src/mesa/main/remap_helper.h b/src/mesa/main/remap_helper.h index 631cc90158..14e42a2c8a 100644 --- a/src/mesa/main/remap_helper.h +++ b/src/mesa/main/remap_helper.h @@ -65,4400 +65,4404 @@ static const char _mesa_function_pool[] = "\0" "glLoadIdentity\0" "\0" - /* _mesa_function_pool[172]: SampleCoverageARB (will be remapped) */ + /* _mesa_function_pool[172]: GetCombinerOutputParameterfvNV (will be remapped) */ + "iiip\0" + "glGetCombinerOutputParameterfvNV\0" + "\0" + /* _mesa_function_pool[211]: SampleCoverageARB (will be remapped) */ "fi\0" "glSampleCoverage\0" "glSampleCoverageARB\0" "\0" - /* _mesa_function_pool[213]: ConvolutionFilter1D (offset 348) */ + /* _mesa_function_pool[252]: ConvolutionFilter1D (offset 348) */ "iiiiip\0" "glConvolutionFilter1D\0" "glConvolutionFilter1DEXT\0" "\0" - /* _mesa_function_pool[268]: BeginQueryARB (will be remapped) */ + /* _mesa_function_pool[307]: BeginQueryARB (will be remapped) */ "ii\0" "glBeginQuery\0" "glBeginQueryARB\0" "\0" - /* _mesa_function_pool[301]: RasterPos3dv (offset 71) */ + /* _mesa_function_pool[340]: RasterPos3dv (offset 71) */ "p\0" "glRasterPos3dv\0" "\0" - /* _mesa_function_pool[319]: PointParameteriNV (will be remapped) */ + /* _mesa_function_pool[358]: PointParameteriNV (will be remapped) */ "ii\0" "glPointParameteri\0" "glPointParameteriNV\0" "\0" - /* _mesa_function_pool[361]: GetProgramiv (will be remapped) */ + /* _mesa_function_pool[400]: GetProgramiv (will be remapped) */ "iip\0" "glGetProgramiv\0" "\0" - /* _mesa_function_pool[381]: MultiTexCoord3sARB (offset 398) */ + /* _mesa_function_pool[420]: MultiTexCoord3sARB (offset 398) */ "iiii\0" "glMultiTexCoord3s\0" "glMultiTexCoord3sARB\0" "\0" - /* _mesa_function_pool[426]: SecondaryColor3iEXT (will be remapped) */ + /* _mesa_function_pool[465]: SecondaryColor3iEXT (will be remapped) */ "iii\0" "glSecondaryColor3i\0" "glSecondaryColor3iEXT\0" "\0" - /* _mesa_function_pool[472]: WindowPos3fMESA (will be remapped) */ + /* _mesa_function_pool[511]: WindowPos3fMESA (will be remapped) */ "fff\0" "glWindowPos3f\0" "glWindowPos3fARB\0" "glWindowPos3fMESA\0" "\0" - /* _mesa_function_pool[526]: TexCoord1iv (offset 99) */ + /* _mesa_function_pool[565]: TexCoord1iv (offset 99) */ "p\0" "glTexCoord1iv\0" "\0" - /* _mesa_function_pool[543]: TexCoord4sv (offset 125) */ + /* _mesa_function_pool[582]: TexCoord4sv (offset 125) */ "p\0" "glTexCoord4sv\0" "\0" - /* _mesa_function_pool[560]: RasterPos4s (offset 84) */ + /* _mesa_function_pool[599]: RasterPos4s (offset 84) */ "iiii\0" "glRasterPos4s\0" "\0" - /* _mesa_function_pool[580]: PixelTexGenParameterfvSGIS (will be remapped) */ + /* _mesa_function_pool[619]: PixelTexGenParameterfvSGIS (will be remapped) */ "ip\0" "glPixelTexGenParameterfvSGIS\0" "\0" - /* _mesa_function_pool[613]: ActiveTextureARB (offset 374) */ + /* _mesa_function_pool[652]: ActiveTextureARB (offset 374) */ "i\0" "glActiveTexture\0" "glActiveTextureARB\0" "\0" - /* _mesa_function_pool[651]: BlitFramebufferEXT (will be remapped) */ + /* _mesa_function_pool[690]: BlitFramebufferEXT (will be remapped) */ "iiiiiiiiii\0" "glBlitFramebuffer\0" "glBlitFramebufferEXT\0" "\0" - /* _mesa_function_pool[702]: TexCoord1f (offset 96) */ + /* _mesa_function_pool[741]: TexCoord1f (offset 96) */ "f\0" "glTexCoord1f\0" "\0" - /* _mesa_function_pool[718]: TexCoord1d (offset 94) */ + /* _mesa_function_pool[757]: TexCoord1d (offset 94) */ "d\0" "glTexCoord1d\0" "\0" - /* _mesa_function_pool[734]: VertexAttrib4ubvNV (will be remapped) */ + /* _mesa_function_pool[773]: VertexAttrib4ubvNV (will be remapped) */ "ip\0" "glVertexAttrib4ubvNV\0" "\0" - /* _mesa_function_pool[759]: TexCoord1i (offset 98) */ + /* _mesa_function_pool[798]: TexCoord1i (offset 98) */ "i\0" "glTexCoord1i\0" "\0" - /* _mesa_function_pool[775]: GetProgramNamedParameterdvNV (will be remapped) */ + /* _mesa_function_pool[814]: GetProgramNamedParameterdvNV (will be remapped) */ "iipp\0" "glGetProgramNamedParameterdvNV\0" "\0" - /* _mesa_function_pool[812]: Histogram (offset 367) */ + /* _mesa_function_pool[851]: Histogram (offset 367) */ "iiii\0" "glHistogram\0" "glHistogramEXT\0" "\0" - /* _mesa_function_pool[845]: TexCoord1s (offset 100) */ + /* _mesa_function_pool[884]: TexCoord1s (offset 100) */ "i\0" "glTexCoord1s\0" "\0" - /* _mesa_function_pool[861]: GetMapfv (offset 267) */ + /* _mesa_function_pool[900]: GetMapfv (offset 267) */ "iip\0" "glGetMapfv\0" "\0" - /* _mesa_function_pool[877]: EvalCoord1f (offset 230) */ + /* _mesa_function_pool[916]: EvalCoord1f (offset 230) */ "f\0" "glEvalCoord1f\0" "\0" - /* _mesa_function_pool[894]: TexImage4DSGIS (dynamic) */ + /* _mesa_function_pool[933]: TexImage4DSGIS (dynamic) */ "iiiiiiiiiip\0" "glTexImage4DSGIS\0" "\0" - /* _mesa_function_pool[924]: PolygonStipple (offset 175) */ + /* _mesa_function_pool[963]: PolygonStipple (offset 175) */ "p\0" "glPolygonStipple\0" "\0" - /* _mesa_function_pool[944]: WindowPos2dvMESA (will be remapped) */ + /* _mesa_function_pool[983]: WindowPos2dvMESA (will be remapped) */ "p\0" "glWindowPos2dv\0" "glWindowPos2dvARB\0" "glWindowPos2dvMESA\0" "\0" - /* _mesa_function_pool[999]: ReplacementCodeuiColor3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[1038]: ReplacementCodeuiColor3fVertex3fvSUN (dynamic) */ "ppp\0" "glReplacementCodeuiColor3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[1043]: BlendEquationSeparateEXT (will be remapped) */ + /* _mesa_function_pool[1082]: BlendEquationSeparateEXT (will be remapped) */ "ii\0" "glBlendEquationSeparate\0" "glBlendEquationSeparateEXT\0" "glBlendEquationSeparateATI\0" "\0" - /* _mesa_function_pool[1125]: ListParameterfSGIX (dynamic) */ + /* _mesa_function_pool[1164]: ListParameterfSGIX (dynamic) */ "iif\0" "glListParameterfSGIX\0" "\0" - /* _mesa_function_pool[1151]: SecondaryColor3bEXT (will be remapped) */ + /* _mesa_function_pool[1190]: SecondaryColor3bEXT (will be remapped) */ "iii\0" "glSecondaryColor3b\0" "glSecondaryColor3bEXT\0" "\0" - /* _mesa_function_pool[1197]: TexCoord4fColor4fNormal3fVertex4fvSUN (dynamic) */ + /* _mesa_function_pool[1236]: TexCoord4fColor4fNormal3fVertex4fvSUN (dynamic) */ "pppp\0" "glTexCoord4fColor4fNormal3fVertex4fvSUN\0" "\0" - /* _mesa_function_pool[1243]: GetPixelMapfv (offset 271) */ + /* _mesa_function_pool[1282]: GetPixelMapfv (offset 271) */ "ip\0" "glGetPixelMapfv\0" "\0" - /* _mesa_function_pool[1263]: Color3uiv (offset 22) */ + /* _mesa_function_pool[1302]: Color3uiv (offset 22) */ "p\0" "glColor3uiv\0" "\0" - /* _mesa_function_pool[1278]: IsEnabled (offset 286) */ + /* _mesa_function_pool[1317]: IsEnabled (offset 286) */ "i\0" "glIsEnabled\0" "\0" - /* _mesa_function_pool[1293]: VertexAttrib4svNV (will be remapped) */ + /* _mesa_function_pool[1332]: VertexAttrib4svNV (will be remapped) */ "ip\0" "glVertexAttrib4svNV\0" "\0" - /* _mesa_function_pool[1317]: EvalCoord2fv (offset 235) */ + /* _mesa_function_pool[1356]: EvalCoord2fv (offset 235) */ "p\0" "glEvalCoord2fv\0" "\0" - /* _mesa_function_pool[1335]: GetBufferSubDataARB (will be remapped) */ + /* _mesa_function_pool[1374]: GetBufferSubDataARB (will be remapped) */ "iiip\0" "glGetBufferSubData\0" "glGetBufferSubDataARB\0" "\0" - /* _mesa_function_pool[1382]: BufferSubDataARB (will be remapped) */ + /* _mesa_function_pool[1421]: BufferSubDataARB (will be remapped) */ "iiip\0" "glBufferSubData\0" "glBufferSubDataARB\0" "\0" - /* _mesa_function_pool[1423]: TexCoord2fColor4ubVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[1462]: TexCoord2fColor4ubVertex3fvSUN (dynamic) */ "ppp\0" "glTexCoord2fColor4ubVertex3fvSUN\0" "\0" - /* _mesa_function_pool[1461]: AttachShader (will be remapped) */ + /* _mesa_function_pool[1500]: AttachShader (will be remapped) */ "ii\0" "glAttachShader\0" "\0" - /* _mesa_function_pool[1480]: VertexAttrib2fARB (will be remapped) */ + /* _mesa_function_pool[1519]: VertexAttrib2fARB (will be remapped) */ "iff\0" "glVertexAttrib2f\0" "glVertexAttrib2fARB\0" "\0" - /* _mesa_function_pool[1522]: GetDebugLogLengthMESA (dynamic) */ + /* _mesa_function_pool[1561]: GetDebugLogLengthMESA (dynamic) */ "iii\0" "glGetDebugLogLengthMESA\0" "\0" - /* _mesa_function_pool[1551]: GetMapiv (offset 268) */ + /* _mesa_function_pool[1590]: GetMapiv (offset 268) */ "iip\0" "glGetMapiv\0" "\0" - /* _mesa_function_pool[1567]: VertexAttrib3fARB (will be remapped) */ + /* _mesa_function_pool[1606]: VertexAttrib3fARB (will be remapped) */ "ifff\0" "glVertexAttrib3f\0" "glVertexAttrib3fARB\0" "\0" - /* _mesa_function_pool[1610]: Indexubv (offset 316) */ + /* _mesa_function_pool[1649]: Indexubv (offset 316) */ "p\0" "glIndexubv\0" "\0" - /* _mesa_function_pool[1624]: GetQueryivARB (will be remapped) */ + /* _mesa_function_pool[1663]: GetQueryivARB (will be remapped) */ "iip\0" "glGetQueryiv\0" "glGetQueryivARB\0" "\0" - /* _mesa_function_pool[1658]: TexImage3D (offset 371) */ + /* _mesa_function_pool[1697]: TexImage3D (offset 371) */ "iiiiiiiiip\0" "glTexImage3D\0" "glTexImage3DEXT\0" "\0" - /* _mesa_function_pool[1699]: ReplacementCodeuiVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[1738]: ReplacementCodeuiVertex3fvSUN (dynamic) */ "pp\0" "glReplacementCodeuiVertex3fvSUN\0" "\0" - /* _mesa_function_pool[1735]: EdgeFlagPointer (offset 312) */ + /* _mesa_function_pool[1774]: EdgeFlagPointer (offset 312) */ "ip\0" "glEdgeFlagPointer\0" "\0" - /* _mesa_function_pool[1757]: Color3ubv (offset 20) */ + /* _mesa_function_pool[1796]: Color3ubv (offset 20) */ "p\0" "glColor3ubv\0" "\0" - /* _mesa_function_pool[1772]: GetQueryObjectivARB (will be remapped) */ + /* _mesa_function_pool[1811]: GetQueryObjectivARB (will be remapped) */ "iip\0" "glGetQueryObjectiv\0" "glGetQueryObjectivARB\0" "\0" - /* _mesa_function_pool[1818]: Vertex3dv (offset 135) */ + /* _mesa_function_pool[1857]: Vertex3dv (offset 135) */ "p\0" "glVertex3dv\0" "\0" - /* _mesa_function_pool[1833]: ReplacementCodeuiTexCoord2fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[1872]: ReplacementCodeuiTexCoord2fVertex3fvSUN (dynamic) */ "ppp\0" "glReplacementCodeuiTexCoord2fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[1880]: CompressedTexSubImage2DARB (will be remapped) */ + /* _mesa_function_pool[1919]: CompressedTexSubImage2DARB (will be remapped) */ "iiiiiiiip\0" "glCompressedTexSubImage2D\0" "glCompressedTexSubImage2DARB\0" "\0" - /* _mesa_function_pool[1946]: CombinerOutputNV (will be remapped) */ + /* _mesa_function_pool[1985]: CombinerOutputNV (will be remapped) */ "iiiiiiiiii\0" "glCombinerOutputNV\0" "\0" - /* _mesa_function_pool[1977]: VertexAttribs3fvNV (will be remapped) */ + /* _mesa_function_pool[2016]: VertexAttribs3fvNV (will be remapped) */ "iip\0" "glVertexAttribs3fvNV\0" "\0" - /* _mesa_function_pool[2003]: Uniform2fARB (will be remapped) */ + /* _mesa_function_pool[2042]: Uniform2fARB (will be remapped) */ "iff\0" "glUniform2f\0" "glUniform2fARB\0" "\0" - /* _mesa_function_pool[2035]: LightModeliv (offset 166) */ + /* _mesa_function_pool[2074]: LightModeliv (offset 166) */ "ip\0" "glLightModeliv\0" "\0" - /* _mesa_function_pool[2054]: VertexAttrib1svARB (will be remapped) */ + /* _mesa_function_pool[2093]: VertexAttrib1svARB (will be remapped) */ "ip\0" "glVertexAttrib1sv\0" "glVertexAttrib1svARB\0" "\0" - /* _mesa_function_pool[2097]: VertexAttribs1dvNV (will be remapped) */ + /* _mesa_function_pool[2136]: VertexAttribs1dvNV (will be remapped) */ "iip\0" "glVertexAttribs1dvNV\0" "\0" - /* _mesa_function_pool[2123]: Uniform2ivARB (will be remapped) */ + /* _mesa_function_pool[2162]: Uniform2ivARB (will be remapped) */ "iip\0" "glUniform2iv\0" "glUniform2ivARB\0" "\0" - /* _mesa_function_pool[2157]: GetImageTransformParameterfvHP (dynamic) */ + /* _mesa_function_pool[2196]: GetImageTransformParameterfvHP (dynamic) */ "iip\0" "glGetImageTransformParameterfvHP\0" "\0" - /* _mesa_function_pool[2195]: Normal3bv (offset 53) */ + /* _mesa_function_pool[2234]: Normal3bv (offset 53) */ "p\0" "glNormal3bv\0" "\0" - /* _mesa_function_pool[2210]: TexGeniv (offset 193) */ + /* _mesa_function_pool[2249]: TexGeniv (offset 193) */ "iip\0" "glTexGeniv\0" "\0" - /* _mesa_function_pool[2226]: WeightubvARB (dynamic) */ + /* _mesa_function_pool[2265]: WeightubvARB (dynamic) */ "ip\0" "glWeightubvARB\0" "\0" - /* _mesa_function_pool[2245]: VertexAttrib1fvNV (will be remapped) */ + /* _mesa_function_pool[2284]: VertexAttrib1fvNV (will be remapped) */ "ip\0" "glVertexAttrib1fvNV\0" "\0" - /* _mesa_function_pool[2269]: Vertex3iv (offset 139) */ + /* _mesa_function_pool[2308]: Vertex3iv (offset 139) */ "p\0" "glVertex3iv\0" "\0" - /* _mesa_function_pool[2284]: CopyConvolutionFilter1D (offset 354) */ + /* _mesa_function_pool[2323]: CopyConvolutionFilter1D (offset 354) */ "iiiii\0" "glCopyConvolutionFilter1D\0" "glCopyConvolutionFilter1DEXT\0" "\0" - /* _mesa_function_pool[2346]: ReplacementCodeuiNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[2385]: ReplacementCodeuiNormal3fVertex3fSUN (dynamic) */ "iffffff\0" "glReplacementCodeuiNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[2394]: DeleteSync (will be remapped) */ + /* _mesa_function_pool[2433]: DeleteSync (will be remapped) */ "i\0" "glDeleteSync\0" "\0" - /* _mesa_function_pool[2410]: FragmentMaterialfvSGIX (dynamic) */ + /* _mesa_function_pool[2449]: FragmentMaterialfvSGIX (dynamic) */ "iip\0" "glFragmentMaterialfvSGIX\0" "\0" - /* _mesa_function_pool[2440]: BlendColor (offset 336) */ + /* _mesa_function_pool[2479]: BlendColor (offset 336) */ "ffff\0" "glBlendColor\0" "glBlendColorEXT\0" "\0" - /* _mesa_function_pool[2475]: UniformMatrix4fvARB (will be remapped) */ + /* _mesa_function_pool[2514]: UniformMatrix4fvARB (will be remapped) */ "iiip\0" "glUniformMatrix4fv\0" "glUniformMatrix4fvARB\0" "\0" - /* _mesa_function_pool[2522]: DeleteVertexArraysAPPLE (will be remapped) */ + /* _mesa_function_pool[2561]: DeleteVertexArraysAPPLE (will be remapped) */ "ip\0" "glDeleteVertexArrays\0" "glDeleteVertexArraysAPPLE\0" "\0" - /* _mesa_function_pool[2573]: ReadInstrumentsSGIX (dynamic) */ + /* _mesa_function_pool[2612]: ReadInstrumentsSGIX (dynamic) */ "i\0" "glReadInstrumentsSGIX\0" "\0" - /* _mesa_function_pool[2598]: CallLists (offset 3) */ + /* _mesa_function_pool[2637]: CallLists (offset 3) */ "iip\0" "glCallLists\0" "\0" - /* _mesa_function_pool[2615]: UniformMatrix2x4fv (will be remapped) */ + /* _mesa_function_pool[2654]: UniformMatrix2x4fv (will be remapped) */ "iiip\0" "glUniformMatrix2x4fv\0" "\0" - /* _mesa_function_pool[2642]: Color4ubVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[2681]: Color4ubVertex3fvSUN (dynamic) */ "pp\0" "glColor4ubVertex3fvSUN\0" "\0" - /* _mesa_function_pool[2669]: Normal3iv (offset 59) */ + /* _mesa_function_pool[2708]: Normal3iv (offset 59) */ "p\0" "glNormal3iv\0" "\0" - /* _mesa_function_pool[2684]: PassThrough (offset 199) */ + /* _mesa_function_pool[2723]: PassThrough (offset 199) */ "f\0" "glPassThrough\0" "\0" - /* _mesa_function_pool[2701]: FramebufferTextureLayerEXT (will be remapped) */ + /* _mesa_function_pool[2740]: FramebufferTextureLayerEXT (will be remapped) */ "iiiii\0" "glFramebufferTextureLayer\0" "glFramebufferTextureLayerEXT\0" "\0" - /* _mesa_function_pool[2763]: GetListParameterfvSGIX (dynamic) */ + /* _mesa_function_pool[2802]: GetListParameterfvSGIX (dynamic) */ "iip\0" "glGetListParameterfvSGIX\0" "\0" - /* _mesa_function_pool[2793]: Viewport (offset 305) */ + /* _mesa_function_pool[2832]: Viewport (offset 305) */ "iiii\0" "glViewport\0" "\0" - /* _mesa_function_pool[2810]: VertexAttrib4NusvARB (will be remapped) */ + /* _mesa_function_pool[2849]: VertexAttrib4NusvARB (will be remapped) */ "ip\0" "glVertexAttrib4Nusv\0" "glVertexAttrib4NusvARB\0" "\0" - /* _mesa_function_pool[2857]: WindowPos4svMESA (will be remapped) */ + /* _mesa_function_pool[2896]: WindowPos4svMESA (will be remapped) */ "p\0" "glWindowPos4svMESA\0" "\0" - /* _mesa_function_pool[2879]: CreateProgramObjectARB (will be remapped) */ + /* _mesa_function_pool[2918]: CreateProgramObjectARB (will be remapped) */ "\0" "glCreateProgramObjectARB\0" "\0" - /* _mesa_function_pool[2906]: DeleteTransformFeedbacks (will be remapped) */ + /* _mesa_function_pool[2945]: DeleteTransformFeedbacks (will be remapped) */ "ip\0" "glDeleteTransformFeedbacks\0" "\0" - /* _mesa_function_pool[2937]: UniformMatrix4x3fv (will be remapped) */ + /* _mesa_function_pool[2976]: UniformMatrix4x3fv (will be remapped) */ "iiip\0" "glUniformMatrix4x3fv\0" "\0" - /* _mesa_function_pool[2964]: PrioritizeTextures (offset 331) */ + /* _mesa_function_pool[3003]: PrioritizeTextures (offset 331) */ "ipp\0" "glPrioritizeTextures\0" "glPrioritizeTexturesEXT\0" "\0" - /* _mesa_function_pool[3014]: AsyncMarkerSGIX (dynamic) */ + /* _mesa_function_pool[3053]: AsyncMarkerSGIX (dynamic) */ "i\0" "glAsyncMarkerSGIX\0" "\0" - /* _mesa_function_pool[3035]: GlobalAlphaFactorubSUN (dynamic) */ + /* _mesa_function_pool[3074]: GlobalAlphaFactorubSUN (dynamic) */ "i\0" "glGlobalAlphaFactorubSUN\0" "\0" - /* _mesa_function_pool[3063]: ClearDebugLogMESA (dynamic) */ + /* _mesa_function_pool[3102]: ClearDebugLogMESA (dynamic) */ "iii\0" "glClearDebugLogMESA\0" "\0" - /* _mesa_function_pool[3088]: ResetHistogram (offset 369) */ + /* _mesa_function_pool[3127]: ResetHistogram (offset 369) */ "i\0" "glResetHistogram\0" "glResetHistogramEXT\0" "\0" - /* _mesa_function_pool[3128]: GetProgramNamedParameterfvNV (will be remapped) */ + /* _mesa_function_pool[3167]: GetProgramNamedParameterfvNV (will be remapped) */ "iipp\0" "glGetProgramNamedParameterfvNV\0" "\0" - /* _mesa_function_pool[3165]: PointParameterfEXT (will be remapped) */ + /* _mesa_function_pool[3204]: PointParameterfEXT (will be remapped) */ "if\0" "glPointParameterf\0" "glPointParameterfARB\0" "glPointParameterfEXT\0" "glPointParameterfSGIS\0" "\0" - /* _mesa_function_pool[3251]: LoadIdentityDeformationMapSGIX (dynamic) */ + /* _mesa_function_pool[3290]: LoadIdentityDeformationMapSGIX (dynamic) */ "i\0" "glLoadIdentityDeformationMapSGIX\0" "\0" - /* _mesa_function_pool[3287]: GenFencesNV (will be remapped) */ + /* _mesa_function_pool[3326]: GenFencesNV (will be remapped) */ "ip\0" "glGenFencesNV\0" "\0" - /* _mesa_function_pool[3305]: ImageTransformParameterfHP (dynamic) */ + /* _mesa_function_pool[3344]: ImageTransformParameterfHP (dynamic) */ "iif\0" "glImageTransformParameterfHP\0" "\0" - /* _mesa_function_pool[3339]: MatrixIndexusvARB (dynamic) */ + /* _mesa_function_pool[3378]: MatrixIndexusvARB (dynamic) */ "ip\0" "glMatrixIndexusvARB\0" "\0" - /* _mesa_function_pool[3363]: DrawElementsBaseVertex (will be remapped) */ + /* _mesa_function_pool[3402]: DrawElementsBaseVertex (will be remapped) */ "iiipi\0" "glDrawElementsBaseVertex\0" "\0" - /* _mesa_function_pool[3395]: DisableVertexAttribArrayARB (will be remapped) */ + /* _mesa_function_pool[3434]: DisableVertexAttribArrayARB (will be remapped) */ "i\0" "glDisableVertexAttribArray\0" "glDisableVertexAttribArrayARB\0" "\0" - /* _mesa_function_pool[3455]: TexCoord2sv (offset 109) */ + /* _mesa_function_pool[3494]: TexCoord2sv (offset 109) */ "p\0" "glTexCoord2sv\0" "\0" - /* _mesa_function_pool[3472]: Vertex4dv (offset 143) */ + /* _mesa_function_pool[3511]: Vertex4dv (offset 143) */ "p\0" "glVertex4dv\0" "\0" - /* _mesa_function_pool[3487]: StencilMaskSeparate (will be remapped) */ + /* _mesa_function_pool[3526]: StencilMaskSeparate (will be remapped) */ "ii\0" "glStencilMaskSeparate\0" "\0" - /* _mesa_function_pool[3513]: ProgramLocalParameter4dARB (will be remapped) */ + /* _mesa_function_pool[3552]: ProgramLocalParameter4dARB (will be remapped) */ "iidddd\0" "glProgramLocalParameter4dARB\0" "\0" - /* _mesa_function_pool[3550]: CompressedTexImage3DARB (will be remapped) */ + /* _mesa_function_pool[3589]: CompressedTexImage3DARB (will be remapped) */ "iiiiiiiip\0" "glCompressedTexImage3D\0" "glCompressedTexImage3DARB\0" "\0" - /* _mesa_function_pool[3610]: Color3sv (offset 18) */ + /* _mesa_function_pool[3649]: Color3sv (offset 18) */ "p\0" "glColor3sv\0" "\0" - /* _mesa_function_pool[3624]: GetConvolutionParameteriv (offset 358) */ + /* _mesa_function_pool[3663]: GetConvolutionParameteriv (offset 358) */ "iip\0" "glGetConvolutionParameteriv\0" "glGetConvolutionParameterivEXT\0" "\0" - /* _mesa_function_pool[3688]: VertexAttrib1fARB (will be remapped) */ + /* _mesa_function_pool[3727]: VertexAttrib1fARB (will be remapped) */ "if\0" "glVertexAttrib1f\0" "glVertexAttrib1fARB\0" "\0" - /* _mesa_function_pool[3729]: Vertex2dv (offset 127) */ + /* _mesa_function_pool[3768]: Vertex2dv (offset 127) */ "p\0" "glVertex2dv\0" "\0" - /* _mesa_function_pool[3744]: TestFenceNV (will be remapped) */ + /* _mesa_function_pool[3783]: TestFenceNV (will be remapped) */ "i\0" "glTestFenceNV\0" "\0" - /* _mesa_function_pool[3761]: MultiTexCoord1fvARB (offset 379) */ + /* _mesa_function_pool[3800]: MultiTexCoord1fvARB (offset 379) */ "ip\0" "glMultiTexCoord1fv\0" "glMultiTexCoord1fvARB\0" "\0" - /* _mesa_function_pool[3806]: TexCoord3iv (offset 115) */ + /* _mesa_function_pool[3845]: TexCoord3iv (offset 115) */ "p\0" "glTexCoord3iv\0" "\0" - /* _mesa_function_pool[3823]: ColorFragmentOp2ATI (will be remapped) */ + /* _mesa_function_pool[3862]: ColorFragmentOp2ATI (will be remapped) */ "iiiiiiiiii\0" "glColorFragmentOp2ATI\0" "\0" - /* _mesa_function_pool[3857]: SecondaryColorPointerListIBM (dynamic) */ + /* _mesa_function_pool[3896]: SecondaryColorPointerListIBM (dynamic) */ "iiipi\0" "glSecondaryColorPointerListIBM\0" "\0" - /* _mesa_function_pool[3895]: GetPixelTexGenParameterivSGIS (will be remapped) */ + /* _mesa_function_pool[3934]: GetPixelTexGenParameterivSGIS (will be remapped) */ "ip\0" "glGetPixelTexGenParameterivSGIS\0" "\0" - /* _mesa_function_pool[3931]: Color3fv (offset 14) */ + /* _mesa_function_pool[3970]: Color3fv (offset 14) */ "p\0" "glColor3fv\0" "\0" - /* _mesa_function_pool[3945]: VertexAttrib4fNV (will be remapped) */ + /* _mesa_function_pool[3984]: VertexAttrib4fNV (will be remapped) */ "iffff\0" "glVertexAttrib4fNV\0" "\0" - /* _mesa_function_pool[3971]: ReplacementCodeubSUN (dynamic) */ + /* _mesa_function_pool[4010]: ReplacementCodeubSUN (dynamic) */ "i\0" "glReplacementCodeubSUN\0" "\0" - /* _mesa_function_pool[3997]: FinishAsyncSGIX (dynamic) */ + /* _mesa_function_pool[4036]: FinishAsyncSGIX (dynamic) */ "p\0" "glFinishAsyncSGIX\0" "\0" - /* _mesa_function_pool[4018]: GetDebugLogMESA (dynamic) */ + /* _mesa_function_pool[4057]: GetDebugLogMESA (dynamic) */ "iiiipp\0" "glGetDebugLogMESA\0" "\0" - /* _mesa_function_pool[4044]: FogCoorddEXT (will be remapped) */ + /* _mesa_function_pool[4083]: FogCoorddEXT (will be remapped) */ "d\0" "glFogCoordd\0" "glFogCoorddEXT\0" "\0" - /* _mesa_function_pool[4074]: BeginConditionalRenderNV (will be remapped) */ + /* _mesa_function_pool[4113]: BeginConditionalRenderNV (will be remapped) */ "ii\0" "glBeginConditionalRenderNV\0" "\0" - /* _mesa_function_pool[4105]: Color4ubVertex3fSUN (dynamic) */ + /* _mesa_function_pool[4144]: Color4ubVertex3fSUN (dynamic) */ "iiiifff\0" "glColor4ubVertex3fSUN\0" "\0" - /* _mesa_function_pool[4136]: FogCoordfEXT (will be remapped) */ + /* _mesa_function_pool[4175]: FogCoordfEXT (will be remapped) */ "f\0" "glFogCoordf\0" "glFogCoordfEXT\0" "\0" - /* _mesa_function_pool[4166]: PointSize (offset 173) */ + /* _mesa_function_pool[4205]: PointSize (offset 173) */ "f\0" "glPointSize\0" "\0" - /* _mesa_function_pool[4181]: TexCoord2fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[4220]: TexCoord2fVertex3fSUN (dynamic) */ "fffff\0" "glTexCoord2fVertex3fSUN\0" "\0" - /* _mesa_function_pool[4212]: PopName (offset 200) */ + /* _mesa_function_pool[4251]: PopName (offset 200) */ "\0" "glPopName\0" "\0" - /* _mesa_function_pool[4224]: GlobalAlphaFactoriSUN (dynamic) */ + /* _mesa_function_pool[4263]: GlobalAlphaFactoriSUN (dynamic) */ "i\0" "glGlobalAlphaFactoriSUN\0" "\0" - /* _mesa_function_pool[4251]: VertexAttrib2dNV (will be remapped) */ + /* _mesa_function_pool[4290]: VertexAttrib2dNV (will be remapped) */ "idd\0" "glVertexAttrib2dNV\0" "\0" - /* _mesa_function_pool[4275]: GetProgramInfoLog (will be remapped) */ + /* _mesa_function_pool[4314]: GetProgramInfoLog (will be remapped) */ "iipp\0" "glGetProgramInfoLog\0" "\0" - /* _mesa_function_pool[4301]: VertexAttrib4NbvARB (will be remapped) */ + /* _mesa_function_pool[4340]: VertexAttrib4NbvARB (will be remapped) */ "ip\0" "glVertexAttrib4Nbv\0" "glVertexAttrib4NbvARB\0" "\0" - /* _mesa_function_pool[4346]: GetActiveAttribARB (will be remapped) */ + /* _mesa_function_pool[4385]: GetActiveAttribARB (will be remapped) */ "iiipppp\0" "glGetActiveAttrib\0" "glGetActiveAttribARB\0" "\0" - /* _mesa_function_pool[4394]: Vertex4sv (offset 149) */ + /* _mesa_function_pool[4433]: Vertex4sv (offset 149) */ "p\0" "glVertex4sv\0" "\0" - /* _mesa_function_pool[4409]: VertexAttrib4ubNV (will be remapped) */ + /* _mesa_function_pool[4448]: VertexAttrib4ubNV (will be remapped) */ "iiiii\0" "glVertexAttrib4ubNV\0" "\0" - /* _mesa_function_pool[4436]: TextureRangeAPPLE (will be remapped) */ + /* _mesa_function_pool[4475]: TextureRangeAPPLE (will be remapped) */ "iip\0" "glTextureRangeAPPLE\0" "\0" - /* _mesa_function_pool[4461]: GetTexEnvfv (offset 276) */ + /* _mesa_function_pool[4500]: GetTexEnvfv (offset 276) */ "iip\0" "glGetTexEnvfv\0" "\0" - /* _mesa_function_pool[4480]: BindTransformFeedback (will be remapped) */ + /* _mesa_function_pool[4519]: BindTransformFeedback (will be remapped) */ "ii\0" "glBindTransformFeedback\0" "\0" - /* _mesa_function_pool[4508]: TexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[4547]: TexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */ "ffffffffffff\0" "glTexCoord2fColor4fNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[4561]: Indexub (offset 315) */ + /* _mesa_function_pool[4600]: Indexub (offset 315) */ "i\0" "glIndexub\0" "\0" - /* _mesa_function_pool[4574]: TexEnvi (offset 186) */ + /* _mesa_function_pool[4613]: ColorMaskIndexedEXT (will be remapped) */ + "iiiii\0" + "glColorMaskIndexedEXT\0" + "\0" + /* _mesa_function_pool[4642]: TexEnvi (offset 186) */ "iii\0" "glTexEnvi\0" "\0" - /* _mesa_function_pool[4589]: GetClipPlane (offset 259) */ + /* _mesa_function_pool[4657]: GetClipPlane (offset 259) */ "ip\0" "glGetClipPlane\0" "\0" - /* _mesa_function_pool[4608]: CombinerParameterfvNV (will be remapped) */ + /* _mesa_function_pool[4676]: CombinerParameterfvNV (will be remapped) */ "ip\0" "glCombinerParameterfvNV\0" "\0" - /* _mesa_function_pool[4636]: VertexAttribs3dvNV (will be remapped) */ + /* _mesa_function_pool[4704]: VertexAttribs3dvNV (will be remapped) */ "iip\0" "glVertexAttribs3dvNV\0" "\0" - /* _mesa_function_pool[4662]: VertexAttribs4fvNV (will be remapped) */ + /* _mesa_function_pool[4730]: VertexAttribs4fvNV (will be remapped) */ "iip\0" "glVertexAttribs4fvNV\0" "\0" - /* _mesa_function_pool[4688]: VertexArrayRangeNV (will be remapped) */ + /* _mesa_function_pool[4756]: VertexArrayRangeNV (will be remapped) */ "ip\0" "glVertexArrayRangeNV\0" "\0" - /* _mesa_function_pool[4713]: FragmentLightiSGIX (dynamic) */ + /* _mesa_function_pool[4781]: FragmentLightiSGIX (dynamic) */ "iii\0" "glFragmentLightiSGIX\0" "\0" - /* _mesa_function_pool[4739]: PolygonOffsetEXT (will be remapped) */ + /* _mesa_function_pool[4807]: PolygonOffsetEXT (will be remapped) */ "ff\0" "glPolygonOffsetEXT\0" "\0" - /* _mesa_function_pool[4762]: PollAsyncSGIX (dynamic) */ + /* _mesa_function_pool[4830]: PollAsyncSGIX (dynamic) */ "p\0" "glPollAsyncSGIX\0" "\0" - /* _mesa_function_pool[4781]: DeleteFragmentShaderATI (will be remapped) */ + /* _mesa_function_pool[4849]: DeleteFragmentShaderATI (will be remapped) */ "i\0" "glDeleteFragmentShaderATI\0" "\0" - /* _mesa_function_pool[4810]: Scaled (offset 301) */ + /* _mesa_function_pool[4878]: Scaled (offset 301) */ "ddd\0" "glScaled\0" "\0" - /* _mesa_function_pool[4824]: ResumeTransformFeedback (will be remapped) */ + /* _mesa_function_pool[4892]: ResumeTransformFeedback (will be remapped) */ "\0" "glResumeTransformFeedback\0" "\0" - /* _mesa_function_pool[4852]: Scalef (offset 302) */ + /* _mesa_function_pool[4920]: Scalef (offset 302) */ "fff\0" "glScalef\0" "\0" - /* _mesa_function_pool[4866]: TexCoord2fNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[4934]: TexCoord2fNormal3fVertex3fvSUN (dynamic) */ "ppp\0" "glTexCoord2fNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[4904]: MultTransposeMatrixdARB (will be remapped) */ + /* _mesa_function_pool[4972]: MultTransposeMatrixdARB (will be remapped) */ "p\0" "glMultTransposeMatrixd\0" "glMultTransposeMatrixdARB\0" "\0" - /* _mesa_function_pool[4956]: ColorMaskIndexedEXT (will be remapped) */ - "iiiii\0" - "glColorMaskIndexedEXT\0" - "\0" - /* _mesa_function_pool[4985]: ObjectUnpurgeableAPPLE (will be remapped) */ + /* _mesa_function_pool[5024]: ObjectUnpurgeableAPPLE (will be remapped) */ "iii\0" "glObjectUnpurgeableAPPLE\0" "\0" - /* _mesa_function_pool[5015]: AlphaFunc (offset 240) */ + /* _mesa_function_pool[5054]: AlphaFunc (offset 240) */ "if\0" "glAlphaFunc\0" "\0" - /* _mesa_function_pool[5031]: WindowPos2svMESA (will be remapped) */ + /* _mesa_function_pool[5070]: WindowPos2svMESA (will be remapped) */ "p\0" "glWindowPos2sv\0" "glWindowPos2svARB\0" "glWindowPos2svMESA\0" "\0" - /* _mesa_function_pool[5086]: EdgeFlag (offset 41) */ + /* _mesa_function_pool[5125]: EdgeFlag (offset 41) */ "i\0" "glEdgeFlag\0" "\0" - /* _mesa_function_pool[5100]: TexCoord2iv (offset 107) */ + /* _mesa_function_pool[5139]: TexCoord2iv (offset 107) */ "p\0" "glTexCoord2iv\0" "\0" - /* _mesa_function_pool[5117]: CompressedTexImage1DARB (will be remapped) */ + /* _mesa_function_pool[5156]: CompressedTexImage1DARB (will be remapped) */ "iiiiiip\0" "glCompressedTexImage1D\0" "glCompressedTexImage1DARB\0" "\0" - /* _mesa_function_pool[5175]: Rotated (offset 299) */ + /* _mesa_function_pool[5214]: Rotated (offset 299) */ "dddd\0" "glRotated\0" "\0" - /* _mesa_function_pool[5191]: VertexAttrib2sNV (will be remapped) */ + /* _mesa_function_pool[5230]: VertexAttrib2sNV (will be remapped) */ "iii\0" "glVertexAttrib2sNV\0" "\0" - /* _mesa_function_pool[5215]: ReadPixels (offset 256) */ + /* _mesa_function_pool[5254]: ReadPixels (offset 256) */ "iiiiiip\0" "glReadPixels\0" "\0" - /* _mesa_function_pool[5237]: EdgeFlagv (offset 42) */ + /* _mesa_function_pool[5276]: EdgeFlagv (offset 42) */ "p\0" "glEdgeFlagv\0" "\0" - /* _mesa_function_pool[5252]: NormalPointerListIBM (dynamic) */ + /* _mesa_function_pool[5291]: NormalPointerListIBM (dynamic) */ "iipi\0" "glNormalPointerListIBM\0" "\0" - /* _mesa_function_pool[5281]: IndexPointerEXT (will be remapped) */ + /* _mesa_function_pool[5320]: IndexPointerEXT (will be remapped) */ "iiip\0" "glIndexPointerEXT\0" "\0" - /* _mesa_function_pool[5305]: Color4iv (offset 32) */ + /* _mesa_function_pool[5344]: Color4iv (offset 32) */ "p\0" "glColor4iv\0" "\0" - /* _mesa_function_pool[5319]: TexParameterf (offset 178) */ + /* _mesa_function_pool[5358]: TexParameterf (offset 178) */ "iif\0" "glTexParameterf\0" "\0" - /* _mesa_function_pool[5340]: TexParameteri (offset 180) */ + /* _mesa_function_pool[5379]: TexParameteri (offset 180) */ "iii\0" "glTexParameteri\0" "\0" - /* _mesa_function_pool[5361]: NormalPointerEXT (will be remapped) */ + /* _mesa_function_pool[5400]: NormalPointerEXT (will be remapped) */ "iiip\0" "glNormalPointerEXT\0" "\0" - /* _mesa_function_pool[5386]: MultiTexCoord3dARB (offset 392) */ + /* _mesa_function_pool[5425]: MultiTexCoord3dARB (offset 392) */ "iddd\0" "glMultiTexCoord3d\0" "glMultiTexCoord3dARB\0" "\0" - /* _mesa_function_pool[5431]: MultiTexCoord2iARB (offset 388) */ + /* _mesa_function_pool[5470]: MultiTexCoord2iARB (offset 388) */ "iii\0" "glMultiTexCoord2i\0" "glMultiTexCoord2iARB\0" "\0" - /* _mesa_function_pool[5475]: DrawPixels (offset 257) */ + /* _mesa_function_pool[5514]: DrawPixels (offset 257) */ "iiiip\0" "glDrawPixels\0" "\0" - /* _mesa_function_pool[5495]: ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[5534]: ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (dynamic) */ "iffffffff\0" "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[5555]: MultiTexCoord2svARB (offset 391) */ + /* _mesa_function_pool[5594]: MultiTexCoord2svARB (offset 391) */ "ip\0" "glMultiTexCoord2sv\0" "glMultiTexCoord2svARB\0" "\0" - /* _mesa_function_pool[5600]: ReplacementCodeubvSUN (dynamic) */ + /* _mesa_function_pool[5639]: ReplacementCodeubvSUN (dynamic) */ "p\0" "glReplacementCodeubvSUN\0" "\0" - /* _mesa_function_pool[5627]: Uniform3iARB (will be remapped) */ + /* _mesa_function_pool[5666]: Uniform3iARB (will be remapped) */ "iiii\0" "glUniform3i\0" "glUniform3iARB\0" "\0" - /* _mesa_function_pool[5660]: DrawTransformFeedback (will be remapped) */ + /* _mesa_function_pool[5699]: DrawTransformFeedback (will be remapped) */ "ii\0" "glDrawTransformFeedback\0" "\0" - /* _mesa_function_pool[5688]: GetFragmentMaterialfvSGIX (dynamic) */ + /* _mesa_function_pool[5727]: GetFragmentMaterialfvSGIX (dynamic) */ "iip\0" "glGetFragmentMaterialfvSGIX\0" "\0" - /* _mesa_function_pool[5721]: GetShaderInfoLog (will be remapped) */ + /* _mesa_function_pool[5760]: GetShaderInfoLog (will be remapped) */ "iipp\0" "glGetShaderInfoLog\0" "\0" - /* _mesa_function_pool[5746]: WeightivARB (dynamic) */ + /* _mesa_function_pool[5785]: WeightivARB (dynamic) */ "ip\0" "glWeightivARB\0" "\0" - /* _mesa_function_pool[5764]: PollInstrumentsSGIX (dynamic) */ + /* _mesa_function_pool[5803]: PollInstrumentsSGIX (dynamic) */ "p\0" "glPollInstrumentsSGIX\0" "\0" - /* _mesa_function_pool[5789]: GlobalAlphaFactordSUN (dynamic) */ + /* _mesa_function_pool[5828]: GlobalAlphaFactordSUN (dynamic) */ "d\0" "glGlobalAlphaFactordSUN\0" "\0" - /* _mesa_function_pool[5816]: GetFinalCombinerInputParameterfvNV (will be remapped) */ + /* _mesa_function_pool[5855]: GetFinalCombinerInputParameterfvNV (will be remapped) */ "iip\0" "glGetFinalCombinerInputParameterfvNV\0" "\0" - /* _mesa_function_pool[5858]: GenerateMipmapEXT (will be remapped) */ + /* _mesa_function_pool[5897]: GenerateMipmapEXT (will be remapped) */ "i\0" "glGenerateMipmap\0" "glGenerateMipmapEXT\0" "\0" - /* _mesa_function_pool[5898]: GenLists (offset 5) */ + /* _mesa_function_pool[5937]: GenLists (offset 5) */ "i\0" "glGenLists\0" "\0" - /* _mesa_function_pool[5912]: SetFragmentShaderConstantATI (will be remapped) */ + /* _mesa_function_pool[5951]: SetFragmentShaderConstantATI (will be remapped) */ "ip\0" "glSetFragmentShaderConstantATI\0" "\0" - /* _mesa_function_pool[5947]: GetMapAttribParameterivNV (dynamic) */ + /* _mesa_function_pool[5986]: GetMapAttribParameterivNV (dynamic) */ "iiip\0" "glGetMapAttribParameterivNV\0" "\0" - /* _mesa_function_pool[5981]: CreateShaderObjectARB (will be remapped) */ + /* _mesa_function_pool[6020]: CreateShaderObjectARB (will be remapped) */ "i\0" "glCreateShaderObjectARB\0" "\0" - /* _mesa_function_pool[6008]: GetSharpenTexFuncSGIS (dynamic) */ + /* _mesa_function_pool[6047]: GetSharpenTexFuncSGIS (dynamic) */ "ip\0" "glGetSharpenTexFuncSGIS\0" "\0" - /* _mesa_function_pool[6036]: BufferDataARB (will be remapped) */ + /* _mesa_function_pool[6075]: BufferDataARB (will be remapped) */ "iipi\0" "glBufferData\0" "glBufferDataARB\0" "\0" - /* _mesa_function_pool[6071]: FlushVertexArrayRangeNV (will be remapped) */ + /* _mesa_function_pool[6110]: FlushVertexArrayRangeNV (will be remapped) */ "\0" "glFlushVertexArrayRangeNV\0" "\0" - /* _mesa_function_pool[6099]: MapGrid2d (offset 226) */ + /* _mesa_function_pool[6138]: MapGrid2d (offset 226) */ "iddidd\0" "glMapGrid2d\0" "\0" - /* _mesa_function_pool[6119]: MapGrid2f (offset 227) */ + /* _mesa_function_pool[6158]: MapGrid2f (offset 227) */ "iffiff\0" "glMapGrid2f\0" "\0" - /* _mesa_function_pool[6139]: SampleMapATI (will be remapped) */ + /* _mesa_function_pool[6178]: SampleMapATI (will be remapped) */ "iii\0" "glSampleMapATI\0" "\0" - /* _mesa_function_pool[6159]: VertexPointerEXT (will be remapped) */ + /* _mesa_function_pool[6198]: VertexPointerEXT (will be remapped) */ "iiiip\0" "glVertexPointerEXT\0" "\0" - /* _mesa_function_pool[6185]: GetTexFilterFuncSGIS (dynamic) */ + /* _mesa_function_pool[6224]: GetTexFilterFuncSGIS (dynamic) */ "iip\0" "glGetTexFilterFuncSGIS\0" "\0" - /* _mesa_function_pool[6213]: Scissor (offset 176) */ + /* _mesa_function_pool[6252]: Scissor (offset 176) */ "iiii\0" "glScissor\0" "\0" - /* _mesa_function_pool[6229]: Fogf (offset 153) */ + /* _mesa_function_pool[6268]: Fogf (offset 153) */ "if\0" "glFogf\0" "\0" - /* _mesa_function_pool[6240]: ReplacementCodeuiColor4ubVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[6279]: ReplacementCodeuiColor4ubVertex3fvSUN (dynamic) */ "ppp\0" "glReplacementCodeuiColor4ubVertex3fvSUN\0" "\0" - /* _mesa_function_pool[6285]: TexSubImage1D (offset 332) */ + /* _mesa_function_pool[6324]: TexSubImage1D (offset 332) */ "iiiiiip\0" "glTexSubImage1D\0" "glTexSubImage1DEXT\0" "\0" - /* _mesa_function_pool[6329]: VertexAttrib1sARB (will be remapped) */ + /* _mesa_function_pool[6368]: VertexAttrib1sARB (will be remapped) */ "ii\0" "glVertexAttrib1s\0" "glVertexAttrib1sARB\0" "\0" - /* _mesa_function_pool[6370]: FenceSync (will be remapped) */ + /* _mesa_function_pool[6409]: FenceSync (will be remapped) */ "ii\0" "glFenceSync\0" "\0" - /* _mesa_function_pool[6386]: Color4usv (offset 40) */ + /* _mesa_function_pool[6425]: Color4usv (offset 40) */ "p\0" "glColor4usv\0" "\0" - /* _mesa_function_pool[6401]: Fogi (offset 155) */ + /* _mesa_function_pool[6440]: Fogi (offset 155) */ "ii\0" "glFogi\0" "\0" - /* _mesa_function_pool[6412]: DepthRange (offset 288) */ + /* _mesa_function_pool[6451]: DepthRange (offset 288) */ "dd\0" "glDepthRange\0" "\0" - /* _mesa_function_pool[6429]: RasterPos3iv (offset 75) */ + /* _mesa_function_pool[6468]: RasterPos3iv (offset 75) */ "p\0" "glRasterPos3iv\0" "\0" - /* _mesa_function_pool[6447]: FinalCombinerInputNV (will be remapped) */ + /* _mesa_function_pool[6486]: FinalCombinerInputNV (will be remapped) */ "iiii\0" "glFinalCombinerInputNV\0" "\0" - /* _mesa_function_pool[6476]: TexCoord2i (offset 106) */ + /* _mesa_function_pool[6515]: TexCoord2i (offset 106) */ "ii\0" "glTexCoord2i\0" "\0" - /* _mesa_function_pool[6493]: PixelMapfv (offset 251) */ + /* _mesa_function_pool[6532]: PixelMapfv (offset 251) */ "iip\0" "glPixelMapfv\0" "\0" - /* _mesa_function_pool[6511]: Color4ui (offset 37) */ + /* _mesa_function_pool[6550]: Color4ui (offset 37) */ "iiii\0" "glColor4ui\0" "\0" - /* _mesa_function_pool[6528]: RasterPos3s (offset 76) */ + /* _mesa_function_pool[6567]: RasterPos3s (offset 76) */ "iii\0" "glRasterPos3s\0" "\0" - /* _mesa_function_pool[6547]: Color3usv (offset 24) */ + /* _mesa_function_pool[6586]: Color3usv (offset 24) */ "p\0" "glColor3usv\0" "\0" - /* _mesa_function_pool[6562]: FlushRasterSGIX (dynamic) */ + /* _mesa_function_pool[6601]: FlushRasterSGIX (dynamic) */ "\0" "glFlushRasterSGIX\0" "\0" - /* _mesa_function_pool[6582]: TexCoord2f (offset 104) */ + /* _mesa_function_pool[6621]: TexCoord2f (offset 104) */ "ff\0" "glTexCoord2f\0" "\0" - /* _mesa_function_pool[6599]: ReplacementCodeuiTexCoord2fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[6638]: ReplacementCodeuiTexCoord2fVertex3fSUN (dynamic) */ "ifffff\0" "glReplacementCodeuiTexCoord2fVertex3fSUN\0" "\0" - /* _mesa_function_pool[6648]: TexCoord2d (offset 102) */ + /* _mesa_function_pool[6687]: TexCoord2d (offset 102) */ "dd\0" "glTexCoord2d\0" "\0" - /* _mesa_function_pool[6665]: RasterPos3d (offset 70) */ + /* _mesa_function_pool[6704]: RasterPos3d (offset 70) */ "ddd\0" "glRasterPos3d\0" "\0" - /* _mesa_function_pool[6684]: RasterPos3f (offset 72) */ + /* _mesa_function_pool[6723]: RasterPos3f (offset 72) */ "fff\0" "glRasterPos3f\0" "\0" - /* _mesa_function_pool[6703]: Uniform1fARB (will be remapped) */ + /* _mesa_function_pool[6742]: Uniform1fARB (will be remapped) */ "if\0" "glUniform1f\0" "glUniform1fARB\0" "\0" - /* _mesa_function_pool[6734]: AreTexturesResident (offset 322) */ + /* _mesa_function_pool[6773]: AreTexturesResident (offset 322) */ "ipp\0" "glAreTexturesResident\0" "glAreTexturesResidentEXT\0" "\0" - /* _mesa_function_pool[6786]: TexCoord2s (offset 108) */ + /* _mesa_function_pool[6825]: TexCoord2s (offset 108) */ "ii\0" "glTexCoord2s\0" "\0" - /* _mesa_function_pool[6803]: StencilOpSeparate (will be remapped) */ + /* _mesa_function_pool[6842]: StencilOpSeparate (will be remapped) */ "iiii\0" "glStencilOpSeparate\0" "glStencilOpSeparateATI\0" "\0" - /* _mesa_function_pool[6852]: ColorTableParameteriv (offset 341) */ + /* _mesa_function_pool[6891]: ColorTableParameteriv (offset 341) */ "iip\0" "glColorTableParameteriv\0" "glColorTableParameterivSGI\0" "\0" - /* _mesa_function_pool[6908]: FogCoordPointerListIBM (dynamic) */ + /* _mesa_function_pool[6947]: FogCoordPointerListIBM (dynamic) */ "iipi\0" "glFogCoordPointerListIBM\0" "\0" - /* _mesa_function_pool[6939]: WindowPos3dMESA (will be remapped) */ + /* _mesa_function_pool[6978]: WindowPos3dMESA (will be remapped) */ "ddd\0" "glWindowPos3d\0" "glWindowPos3dARB\0" "glWindowPos3dMESA\0" "\0" - /* _mesa_function_pool[6993]: Color4us (offset 39) */ + /* _mesa_function_pool[7032]: Color4us (offset 39) */ "iiii\0" "glColor4us\0" "\0" - /* _mesa_function_pool[7010]: PointParameterfvEXT (will be remapped) */ + /* _mesa_function_pool[7049]: PointParameterfvEXT (will be remapped) */ "ip\0" "glPointParameterfv\0" "glPointParameterfvARB\0" "glPointParameterfvEXT\0" "glPointParameterfvSGIS\0" "\0" - /* _mesa_function_pool[7100]: Color3bv (offset 10) */ + /* _mesa_function_pool[7139]: Color3bv (offset 10) */ "p\0" "glColor3bv\0" "\0" - /* _mesa_function_pool[7114]: WindowPos2fvMESA (will be remapped) */ + /* _mesa_function_pool[7153]: WindowPos2fvMESA (will be remapped) */ "p\0" "glWindowPos2fv\0" "glWindowPos2fvARB\0" "glWindowPos2fvMESA\0" "\0" - /* _mesa_function_pool[7169]: SecondaryColor3bvEXT (will be remapped) */ + /* _mesa_function_pool[7208]: SecondaryColor3bvEXT (will be remapped) */ "p\0" "glSecondaryColor3bv\0" "glSecondaryColor3bvEXT\0" "\0" - /* _mesa_function_pool[7215]: VertexPointerListIBM (dynamic) */ + /* _mesa_function_pool[7254]: VertexPointerListIBM (dynamic) */ "iiipi\0" "glVertexPointerListIBM\0" "\0" - /* _mesa_function_pool[7245]: GetProgramLocalParameterfvARB (will be remapped) */ + /* _mesa_function_pool[7284]: GetProgramLocalParameterfvARB (will be remapped) */ "iip\0" "glGetProgramLocalParameterfvARB\0" "\0" - /* _mesa_function_pool[7282]: FragmentMaterialfSGIX (dynamic) */ + /* _mesa_function_pool[7321]: FragmentMaterialfSGIX (dynamic) */ "iif\0" "glFragmentMaterialfSGIX\0" "\0" - /* _mesa_function_pool[7311]: TexCoord2fNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[7350]: TexCoord2fNormal3fVertex3fSUN (dynamic) */ "ffffffff\0" "glTexCoord2fNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[7353]: RenderbufferStorageEXT (will be remapped) */ + /* _mesa_function_pool[7392]: RenderbufferStorageEXT (will be remapped) */ "iiii\0" "glRenderbufferStorage\0" "glRenderbufferStorageEXT\0" "\0" - /* _mesa_function_pool[7406]: IsFenceNV (will be remapped) */ + /* _mesa_function_pool[7445]: IsFenceNV (will be remapped) */ "i\0" "glIsFenceNV\0" "\0" - /* _mesa_function_pool[7421]: AttachObjectARB (will be remapped) */ + /* _mesa_function_pool[7460]: AttachObjectARB (will be remapped) */ "ii\0" "glAttachObjectARB\0" "\0" - /* _mesa_function_pool[7443]: GetFragmentLightivSGIX (dynamic) */ + /* _mesa_function_pool[7482]: GetFragmentLightivSGIX (dynamic) */ "iip\0" "glGetFragmentLightivSGIX\0" "\0" - /* _mesa_function_pool[7473]: UniformMatrix2fvARB (will be remapped) */ + /* _mesa_function_pool[7512]: UniformMatrix2fvARB (will be remapped) */ "iiip\0" "glUniformMatrix2fv\0" "glUniformMatrix2fvARB\0" "\0" - /* _mesa_function_pool[7520]: MultiTexCoord2fARB (offset 386) */ + /* _mesa_function_pool[7559]: MultiTexCoord2fARB (offset 386) */ "iff\0" "glMultiTexCoord2f\0" "glMultiTexCoord2fARB\0" "\0" - /* _mesa_function_pool[7564]: ColorTable (offset 339) */ + /* _mesa_function_pool[7603]: ColorTable (offset 339) */ "iiiiip\0" "glColorTable\0" "glColorTableSGI\0" "glColorTableEXT\0" "\0" - /* _mesa_function_pool[7617]: IndexPointer (offset 314) */ + /* _mesa_function_pool[7656]: IndexPointer (offset 314) */ "iip\0" "glIndexPointer\0" "\0" - /* _mesa_function_pool[7637]: Accum (offset 213) */ + /* _mesa_function_pool[7676]: Accum (offset 213) */ "if\0" "glAccum\0" "\0" - /* _mesa_function_pool[7649]: GetTexImage (offset 281) */ + /* _mesa_function_pool[7688]: GetTexImage (offset 281) */ "iiiip\0" "glGetTexImage\0" "\0" - /* _mesa_function_pool[7670]: MapControlPointsNV (dynamic) */ + /* _mesa_function_pool[7709]: MapControlPointsNV (dynamic) */ "iiiiiiiip\0" "glMapControlPointsNV\0" "\0" - /* _mesa_function_pool[7702]: ConvolutionFilter2D (offset 349) */ + /* _mesa_function_pool[7741]: ConvolutionFilter2D (offset 349) */ "iiiiiip\0" "glConvolutionFilter2D\0" "glConvolutionFilter2DEXT\0" "\0" - /* _mesa_function_pool[7758]: Finish (offset 216) */ + /* _mesa_function_pool[7797]: Finish (offset 216) */ "\0" "glFinish\0" "\0" - /* _mesa_function_pool[7769]: MapParameterfvNV (dynamic) */ + /* _mesa_function_pool[7808]: MapParameterfvNV (dynamic) */ "iip\0" "glMapParameterfvNV\0" "\0" - /* _mesa_function_pool[7793]: ClearStencil (offset 207) */ + /* _mesa_function_pool[7832]: ClearStencil (offset 207) */ "i\0" "glClearStencil\0" "\0" - /* _mesa_function_pool[7811]: VertexAttrib3dvARB (will be remapped) */ + /* _mesa_function_pool[7850]: VertexAttrib3dvARB (will be remapped) */ "ip\0" "glVertexAttrib3dv\0" "glVertexAttrib3dvARB\0" "\0" - /* _mesa_function_pool[7854]: HintPGI (dynamic) */ + /* _mesa_function_pool[7893]: HintPGI (dynamic) */ "ii\0" "glHintPGI\0" "\0" - /* _mesa_function_pool[7868]: ConvolutionParameteriv (offset 353) */ + /* _mesa_function_pool[7907]: ConvolutionParameteriv (offset 353) */ "iip\0" "glConvolutionParameteriv\0" "glConvolutionParameterivEXT\0" "\0" - /* _mesa_function_pool[7926]: Color4s (offset 33) */ + /* _mesa_function_pool[7965]: Color4s (offset 33) */ "iiii\0" "glColor4s\0" "\0" - /* _mesa_function_pool[7942]: InterleavedArrays (offset 317) */ + /* _mesa_function_pool[7981]: InterleavedArrays (offset 317) */ "iip\0" "glInterleavedArrays\0" "\0" - /* _mesa_function_pool[7967]: RasterPos2fv (offset 65) */ + /* _mesa_function_pool[8006]: RasterPos2fv (offset 65) */ "p\0" "glRasterPos2fv\0" "\0" - /* _mesa_function_pool[7985]: TexCoord1fv (offset 97) */ + /* _mesa_function_pool[8024]: TexCoord1fv (offset 97) */ "p\0" "glTexCoord1fv\0" "\0" - /* _mesa_function_pool[8002]: Vertex2d (offset 126) */ + /* _mesa_function_pool[8041]: Vertex2d (offset 126) */ "dd\0" "glVertex2d\0" "\0" - /* _mesa_function_pool[8017]: CullParameterdvEXT (will be remapped) */ + /* _mesa_function_pool[8056]: CullParameterdvEXT (will be remapped) */ "ip\0" "glCullParameterdvEXT\0" "\0" - /* _mesa_function_pool[8042]: ProgramNamedParameter4fNV (will be remapped) */ + /* _mesa_function_pool[8081]: ProgramNamedParameter4fNV (will be remapped) */ "iipffff\0" "glProgramNamedParameter4fNV\0" "\0" - /* _mesa_function_pool[8079]: Color3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[8118]: Color3fVertex3fSUN (dynamic) */ "ffffff\0" "glColor3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[8108]: ProgramEnvParameter4fvARB (will be remapped) */ + /* _mesa_function_pool[8147]: ProgramEnvParameter4fvARB (will be remapped) */ "iip\0" "glProgramEnvParameter4fvARB\0" "glProgramParameter4fvNV\0" "\0" - /* _mesa_function_pool[8165]: Color4i (offset 31) */ + /* _mesa_function_pool[8204]: Color4i (offset 31) */ "iiii\0" "glColor4i\0" "\0" - /* _mesa_function_pool[8181]: Color4f (offset 29) */ + /* _mesa_function_pool[8220]: Color4f (offset 29) */ "ffff\0" "glColor4f\0" "\0" - /* _mesa_function_pool[8197]: RasterPos4fv (offset 81) */ + /* _mesa_function_pool[8236]: RasterPos4fv (offset 81) */ "p\0" "glRasterPos4fv\0" "\0" - /* _mesa_function_pool[8215]: Color4d (offset 27) */ + /* _mesa_function_pool[8254]: Color4d (offset 27) */ "dddd\0" "glColor4d\0" "\0" - /* _mesa_function_pool[8231]: ClearIndex (offset 205) */ + /* _mesa_function_pool[8270]: ClearIndex (offset 205) */ "f\0" "glClearIndex\0" "\0" - /* _mesa_function_pool[8247]: Color4b (offset 25) */ + /* _mesa_function_pool[8286]: Color4b (offset 25) */ "iiii\0" "glColor4b\0" "\0" - /* _mesa_function_pool[8263]: LoadMatrixd (offset 292) */ + /* _mesa_function_pool[8302]: LoadMatrixd (offset 292) */ "p\0" "glLoadMatrixd\0" "\0" - /* _mesa_function_pool[8280]: FragmentLightModeliSGIX (dynamic) */ + /* _mesa_function_pool[8319]: FragmentLightModeliSGIX (dynamic) */ "ii\0" "glFragmentLightModeliSGIX\0" "\0" - /* _mesa_function_pool[8310]: RasterPos2dv (offset 63) */ + /* _mesa_function_pool[8349]: RasterPos2dv (offset 63) */ "p\0" "glRasterPos2dv\0" "\0" - /* _mesa_function_pool[8328]: ConvolutionParameterfv (offset 351) */ + /* _mesa_function_pool[8367]: ConvolutionParameterfv (offset 351) */ "iip\0" "glConvolutionParameterfv\0" "glConvolutionParameterfvEXT\0" "\0" - /* _mesa_function_pool[8386]: TbufferMask3DFX (dynamic) */ + /* _mesa_function_pool[8425]: TbufferMask3DFX (dynamic) */ "i\0" "glTbufferMask3DFX\0" "\0" - /* _mesa_function_pool[8407]: GetTexGendv (offset 278) */ + /* _mesa_function_pool[8446]: GetTexGendv (offset 278) */ "iip\0" "glGetTexGendv\0" "\0" - /* _mesa_function_pool[8426]: GetVertexAttribfvNV (will be remapped) */ + /* _mesa_function_pool[8465]: GetVertexAttribfvNV (will be remapped) */ "iip\0" "glGetVertexAttribfvNV\0" "\0" - /* _mesa_function_pool[8453]: BeginTransformFeedbackEXT (will be remapped) */ + /* _mesa_function_pool[8492]: BeginTransformFeedbackEXT (will be remapped) */ "i\0" "glBeginTransformFeedbackEXT\0" "glBeginTransformFeedback\0" "\0" - /* _mesa_function_pool[8509]: LoadProgramNV (will be remapped) */ + /* _mesa_function_pool[8548]: LoadProgramNV (will be remapped) */ "iiip\0" "glLoadProgramNV\0" "\0" - /* _mesa_function_pool[8531]: WaitSync (will be remapped) */ + /* _mesa_function_pool[8570]: WaitSync (will be remapped) */ "iii\0" "glWaitSync\0" "\0" - /* _mesa_function_pool[8547]: EndList (offset 1) */ + /* _mesa_function_pool[8586]: EndList (offset 1) */ "\0" "glEndList\0" "\0" - /* _mesa_function_pool[8559]: VertexAttrib4fvNV (will be remapped) */ + /* _mesa_function_pool[8598]: VertexAttrib4fvNV (will be remapped) */ "ip\0" "glVertexAttrib4fvNV\0" "\0" - /* _mesa_function_pool[8583]: GetAttachedObjectsARB (will be remapped) */ + /* _mesa_function_pool[8622]: GetAttachedObjectsARB (will be remapped) */ "iipp\0" "glGetAttachedObjectsARB\0" "\0" - /* _mesa_function_pool[8613]: Uniform3fvARB (will be remapped) */ + /* _mesa_function_pool[8652]: Uniform3fvARB (will be remapped) */ "iip\0" "glUniform3fv\0" "glUniform3fvARB\0" "\0" - /* _mesa_function_pool[8647]: EvalCoord1fv (offset 231) */ + /* _mesa_function_pool[8686]: EvalCoord1fv (offset 231) */ "p\0" "glEvalCoord1fv\0" "\0" - /* _mesa_function_pool[8665]: DrawRangeElements (offset 338) */ + /* _mesa_function_pool[8704]: DrawRangeElements (offset 338) */ "iiiiip\0" "glDrawRangeElements\0" "glDrawRangeElementsEXT\0" "\0" - /* _mesa_function_pool[8716]: EvalMesh2 (offset 238) */ + /* _mesa_function_pool[8755]: EvalMesh2 (offset 238) */ "iiiii\0" "glEvalMesh2\0" "\0" - /* _mesa_function_pool[8735]: Vertex4fv (offset 145) */ + /* _mesa_function_pool[8774]: Vertex4fv (offset 145) */ "p\0" "glVertex4fv\0" "\0" - /* _mesa_function_pool[8750]: GenTransformFeedbacks (will be remapped) */ + /* _mesa_function_pool[8789]: GenTransformFeedbacks (will be remapped) */ "ip\0" "glGenTransformFeedbacks\0" "\0" - /* _mesa_function_pool[8778]: SpriteParameterfvSGIX (dynamic) */ + /* _mesa_function_pool[8817]: SpriteParameterfvSGIX (dynamic) */ "ip\0" "glSpriteParameterfvSGIX\0" "\0" - /* _mesa_function_pool[8806]: CheckFramebufferStatusEXT (will be remapped) */ + /* _mesa_function_pool[8845]: CheckFramebufferStatusEXT (will be remapped) */ "i\0" "glCheckFramebufferStatus\0" "glCheckFramebufferStatusEXT\0" "\0" - /* _mesa_function_pool[8862]: GlobalAlphaFactoruiSUN (dynamic) */ + /* _mesa_function_pool[8901]: GlobalAlphaFactoruiSUN (dynamic) */ "i\0" "glGlobalAlphaFactoruiSUN\0" "\0" - /* _mesa_function_pool[8890]: GetHandleARB (will be remapped) */ + /* _mesa_function_pool[8929]: GetHandleARB (will be remapped) */ "i\0" "glGetHandleARB\0" "\0" - /* _mesa_function_pool[8908]: GetVertexAttribivARB (will be remapped) */ + /* _mesa_function_pool[8947]: GetVertexAttribivARB (will be remapped) */ "iip\0" "glGetVertexAttribiv\0" "glGetVertexAttribivARB\0" "\0" - /* _mesa_function_pool[8956]: GetCombinerInputParameterfvNV (will be remapped) */ + /* _mesa_function_pool[8995]: GetCombinerInputParameterfvNV (will be remapped) */ "iiiip\0" "glGetCombinerInputParameterfvNV\0" "\0" - /* _mesa_function_pool[8995]: CreateProgram (will be remapped) */ + /* _mesa_function_pool[9034]: CreateProgram (will be remapped) */ "\0" "glCreateProgram\0" "\0" - /* _mesa_function_pool[9013]: LoadTransposeMatrixdARB (will be remapped) */ + /* _mesa_function_pool[9052]: LoadTransposeMatrixdARB (will be remapped) */ "p\0" "glLoadTransposeMatrixd\0" "glLoadTransposeMatrixdARB\0" "\0" - /* _mesa_function_pool[9065]: GetMinmax (offset 364) */ + /* _mesa_function_pool[9104]: GetMinmax (offset 364) */ "iiiip\0" "glGetMinmax\0" "glGetMinmaxEXT\0" "\0" - /* _mesa_function_pool[9099]: StencilFuncSeparate (will be remapped) */ + /* _mesa_function_pool[9138]: StencilFuncSeparate (will be remapped) */ "iiii\0" "glStencilFuncSeparate\0" "\0" - /* _mesa_function_pool[9127]: SecondaryColor3sEXT (will be remapped) */ + /* _mesa_function_pool[9166]: SecondaryColor3sEXT (will be remapped) */ "iii\0" "glSecondaryColor3s\0" "glSecondaryColor3sEXT\0" "\0" - /* _mesa_function_pool[9173]: Color3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[9212]: Color3fVertex3fvSUN (dynamic) */ "pp\0" "glColor3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[9199]: Normal3fv (offset 57) */ + /* _mesa_function_pool[9238]: Normal3fv (offset 57) */ "p\0" "glNormal3fv\0" "\0" - /* _mesa_function_pool[9214]: GlobalAlphaFactorbSUN (dynamic) */ + /* _mesa_function_pool[9253]: GlobalAlphaFactorbSUN (dynamic) */ "i\0" "glGlobalAlphaFactorbSUN\0" "\0" - /* _mesa_function_pool[9241]: Color3us (offset 23) */ + /* _mesa_function_pool[9280]: Color3us (offset 23) */ "iii\0" "glColor3us\0" "\0" - /* _mesa_function_pool[9257]: ImageTransformParameterfvHP (dynamic) */ + /* _mesa_function_pool[9296]: ImageTransformParameterfvHP (dynamic) */ "iip\0" "glImageTransformParameterfvHP\0" "\0" - /* _mesa_function_pool[9292]: VertexAttrib4ivARB (will be remapped) */ + /* _mesa_function_pool[9331]: VertexAttrib4ivARB (will be remapped) */ "ip\0" "glVertexAttrib4iv\0" "glVertexAttrib4ivARB\0" "\0" - /* _mesa_function_pool[9335]: End (offset 43) */ + /* _mesa_function_pool[9374]: End (offset 43) */ "\0" "glEnd\0" "\0" - /* _mesa_function_pool[9343]: VertexAttrib3fNV (will be remapped) */ + /* _mesa_function_pool[9382]: VertexAttrib3fNV (will be remapped) */ "ifff\0" "glVertexAttrib3fNV\0" "\0" - /* _mesa_function_pool[9368]: VertexAttribs2dvNV (will be remapped) */ + /* _mesa_function_pool[9407]: VertexAttribs2dvNV (will be remapped) */ "iip\0" "glVertexAttribs2dvNV\0" "\0" - /* _mesa_function_pool[9394]: GetQueryObjectui64vEXT (will be remapped) */ + /* _mesa_function_pool[9433]: GetQueryObjectui64vEXT (will be remapped) */ "iip\0" "glGetQueryObjectui64vEXT\0" "\0" - /* _mesa_function_pool[9424]: MultiTexCoord3fvARB (offset 395) */ + /* _mesa_function_pool[9463]: MultiTexCoord3fvARB (offset 395) */ "ip\0" "glMultiTexCoord3fv\0" "glMultiTexCoord3fvARB\0" "\0" - /* _mesa_function_pool[9469]: SecondaryColor3dEXT (will be remapped) */ + /* _mesa_function_pool[9508]: SecondaryColor3dEXT (will be remapped) */ "ddd\0" "glSecondaryColor3d\0" "glSecondaryColor3dEXT\0" "\0" - /* _mesa_function_pool[9515]: Color3ub (offset 19) */ + /* _mesa_function_pool[9554]: Color3ub (offset 19) */ "iii\0" "glColor3ub\0" "\0" - /* _mesa_function_pool[9531]: GetProgramParameterfvNV (will be remapped) */ + /* _mesa_function_pool[9570]: GetProgramParameterfvNV (will be remapped) */ "iiip\0" "glGetProgramParameterfvNV\0" "\0" - /* _mesa_function_pool[9563]: TangentPointerEXT (dynamic) */ + /* _mesa_function_pool[9602]: TangentPointerEXT (dynamic) */ "iip\0" "glTangentPointerEXT\0" "\0" - /* _mesa_function_pool[9588]: Color4fNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[9627]: Color4fNormal3fVertex3fvSUN (dynamic) */ "ppp\0" "glColor4fNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[9623]: GetInstrumentsSGIX (dynamic) */ + /* _mesa_function_pool[9662]: GetInstrumentsSGIX (dynamic) */ "\0" "glGetInstrumentsSGIX\0" "\0" - /* _mesa_function_pool[9646]: Color3ui (offset 21) */ + /* _mesa_function_pool[9685]: Color3ui (offset 21) */ "iii\0" "glColor3ui\0" "\0" - /* _mesa_function_pool[9662]: EvalMapsNV (dynamic) */ + /* _mesa_function_pool[9701]: EvalMapsNV (dynamic) */ "ii\0" "glEvalMapsNV\0" "\0" - /* _mesa_function_pool[9679]: TexSubImage2D (offset 333) */ + /* _mesa_function_pool[9718]: TexSubImage2D (offset 333) */ "iiiiiiiip\0" "glTexSubImage2D\0" "glTexSubImage2DEXT\0" "\0" - /* _mesa_function_pool[9725]: FragmentLightivSGIX (dynamic) */ + /* _mesa_function_pool[9764]: FragmentLightivSGIX (dynamic) */ "iip\0" "glFragmentLightivSGIX\0" "\0" - /* _mesa_function_pool[9752]: GetTexParameterPointervAPPLE (will be remapped) */ + /* _mesa_function_pool[9791]: GetTexParameterPointervAPPLE (will be remapped) */ "iip\0" "glGetTexParameterPointervAPPLE\0" "\0" - /* _mesa_function_pool[9788]: TexGenfv (offset 191) */ + /* _mesa_function_pool[9827]: TexGenfv (offset 191) */ "iip\0" "glTexGenfv\0" "\0" - /* _mesa_function_pool[9804]: GetTransformFeedbackVaryingEXT (will be remapped) */ + /* _mesa_function_pool[9843]: GetTransformFeedbackVaryingEXT (will be remapped) */ "iiipppp\0" "glGetTransformFeedbackVaryingEXT\0" "glGetTransformFeedbackVarying\0" "\0" - /* _mesa_function_pool[9876]: VertexAttrib4bvARB (will be remapped) */ + /* _mesa_function_pool[9915]: VertexAttrib4bvARB (will be remapped) */ "ip\0" "glVertexAttrib4bv\0" "glVertexAttrib4bvARB\0" "\0" - /* _mesa_function_pool[9919]: AlphaFragmentOp2ATI (will be remapped) */ + /* _mesa_function_pool[9958]: AlphaFragmentOp2ATI (will be remapped) */ "iiiiiiiii\0" "glAlphaFragmentOp2ATI\0" "\0" - /* _mesa_function_pool[9952]: GetIntegerIndexedvEXT (will be remapped) */ + /* _mesa_function_pool[9991]: GetIntegerIndexedvEXT (will be remapped) */ "iip\0" "glGetIntegerIndexedvEXT\0" "\0" - /* _mesa_function_pool[9981]: MultiTexCoord4sARB (offset 406) */ + /* _mesa_function_pool[10020]: MultiTexCoord4sARB (offset 406) */ "iiiii\0" "glMultiTexCoord4s\0" "glMultiTexCoord4sARB\0" "\0" - /* _mesa_function_pool[10027]: GetFragmentMaterialivSGIX (dynamic) */ + /* _mesa_function_pool[10066]: GetFragmentMaterialivSGIX (dynamic) */ "iip\0" "glGetFragmentMaterialivSGIX\0" "\0" - /* _mesa_function_pool[10060]: WindowPos4dMESA (will be remapped) */ + /* _mesa_function_pool[10099]: WindowPos4dMESA (will be remapped) */ "dddd\0" "glWindowPos4dMESA\0" "\0" - /* _mesa_function_pool[10084]: WeightPointerARB (dynamic) */ + /* _mesa_function_pool[10123]: WeightPointerARB (dynamic) */ "iiip\0" "glWeightPointerARB\0" "\0" - /* _mesa_function_pool[10109]: WindowPos2dMESA (will be remapped) */ + /* _mesa_function_pool[10148]: WindowPos2dMESA (will be remapped) */ "dd\0" "glWindowPos2d\0" "glWindowPos2dARB\0" "glWindowPos2dMESA\0" "\0" - /* _mesa_function_pool[10162]: FramebufferTexture3DEXT (will be remapped) */ + /* _mesa_function_pool[10201]: FramebufferTexture3DEXT (will be remapped) */ "iiiiii\0" "glFramebufferTexture3D\0" "glFramebufferTexture3DEXT\0" "\0" - /* _mesa_function_pool[10219]: BlendEquation (offset 337) */ + /* _mesa_function_pool[10258]: BlendEquation (offset 337) */ "i\0" "glBlendEquation\0" "glBlendEquationEXT\0" "\0" - /* _mesa_function_pool[10257]: VertexAttrib3dNV (will be remapped) */ + /* _mesa_function_pool[10296]: VertexAttrib3dNV (will be remapped) */ "iddd\0" "glVertexAttrib3dNV\0" "\0" - /* _mesa_function_pool[10282]: VertexAttrib3dARB (will be remapped) */ + /* _mesa_function_pool[10321]: VertexAttrib3dARB (will be remapped) */ "iddd\0" "glVertexAttrib3d\0" "glVertexAttrib3dARB\0" "\0" - /* _mesa_function_pool[10325]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[10364]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */ "ppppp\0" "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[10389]: VertexAttrib4fARB (will be remapped) */ + /* _mesa_function_pool[10428]: VertexAttrib4fARB (will be remapped) */ "iffff\0" "glVertexAttrib4f\0" "glVertexAttrib4fARB\0" "\0" - /* _mesa_function_pool[10433]: GetError (offset 261) */ + /* _mesa_function_pool[10472]: GetError (offset 261) */ "\0" "glGetError\0" "\0" - /* _mesa_function_pool[10446]: IndexFuncEXT (dynamic) */ + /* _mesa_function_pool[10485]: IndexFuncEXT (dynamic) */ "if\0" "glIndexFuncEXT\0" "\0" - /* _mesa_function_pool[10465]: TexCoord3dv (offset 111) */ + /* _mesa_function_pool[10504]: TexCoord3dv (offset 111) */ "p\0" "glTexCoord3dv\0" "\0" - /* _mesa_function_pool[10482]: Indexdv (offset 45) */ + /* _mesa_function_pool[10521]: Indexdv (offset 45) */ "p\0" "glIndexdv\0" "\0" - /* _mesa_function_pool[10495]: FramebufferTexture2DEXT (will be remapped) */ + /* _mesa_function_pool[10534]: FramebufferTexture2DEXT (will be remapped) */ "iiiii\0" "glFramebufferTexture2D\0" "glFramebufferTexture2DEXT\0" "\0" - /* _mesa_function_pool[10551]: Normal3s (offset 60) */ + /* _mesa_function_pool[10590]: Normal3s (offset 60) */ "iii\0" "glNormal3s\0" "\0" - /* _mesa_function_pool[10567]: GetObjectParameterivAPPLE (will be remapped) */ + /* _mesa_function_pool[10606]: GetObjectParameterivAPPLE (will be remapped) */ "iiip\0" "glGetObjectParameterivAPPLE\0" "\0" - /* _mesa_function_pool[10601]: PushName (offset 201) */ + /* _mesa_function_pool[10640]: PushName (offset 201) */ "i\0" "glPushName\0" "\0" - /* _mesa_function_pool[10615]: MultiTexCoord2dvARB (offset 385) */ + /* _mesa_function_pool[10654]: MultiTexCoord2dvARB (offset 385) */ "ip\0" "glMultiTexCoord2dv\0" "glMultiTexCoord2dvARB\0" "\0" - /* _mesa_function_pool[10660]: CullParameterfvEXT (will be remapped) */ + /* _mesa_function_pool[10699]: CullParameterfvEXT (will be remapped) */ "ip\0" "glCullParameterfvEXT\0" "\0" - /* _mesa_function_pool[10685]: Normal3i (offset 58) */ + /* _mesa_function_pool[10724]: Normal3i (offset 58) */ "iii\0" "glNormal3i\0" "\0" - /* _mesa_function_pool[10701]: ProgramNamedParameter4fvNV (will be remapped) */ + /* _mesa_function_pool[10740]: ProgramNamedParameter4fvNV (will be remapped) */ "iipp\0" "glProgramNamedParameter4fvNV\0" "\0" - /* _mesa_function_pool[10736]: SecondaryColorPointerEXT (will be remapped) */ + /* _mesa_function_pool[10775]: SecondaryColorPointerEXT (will be remapped) */ "iiip\0" "glSecondaryColorPointer\0" "glSecondaryColorPointerEXT\0" "\0" - /* _mesa_function_pool[10793]: VertexAttrib4fvARB (will be remapped) */ + /* _mesa_function_pool[10832]: VertexAttrib4fvARB (will be remapped) */ "ip\0" "glVertexAttrib4fv\0" "glVertexAttrib4fvARB\0" "\0" - /* _mesa_function_pool[10836]: ColorPointerListIBM (dynamic) */ + /* _mesa_function_pool[10875]: ColorPointerListIBM (dynamic) */ "iiipi\0" "glColorPointerListIBM\0" "\0" - /* _mesa_function_pool[10865]: GetActiveUniformARB (will be remapped) */ + /* _mesa_function_pool[10904]: GetActiveUniformARB (will be remapped) */ "iiipppp\0" "glGetActiveUniform\0" "glGetActiveUniformARB\0" "\0" - /* _mesa_function_pool[10915]: ImageTransformParameteriHP (dynamic) */ + /* _mesa_function_pool[10954]: ImageTransformParameteriHP (dynamic) */ "iii\0" "glImageTransformParameteriHP\0" "\0" - /* _mesa_function_pool[10949]: Normal3b (offset 52) */ + /* _mesa_function_pool[10988]: Normal3b (offset 52) */ "iii\0" "glNormal3b\0" "\0" - /* _mesa_function_pool[10965]: Normal3d (offset 54) */ + /* _mesa_function_pool[11004]: Normal3d (offset 54) */ "ddd\0" "glNormal3d\0" "\0" - /* _mesa_function_pool[10981]: Normal3f (offset 56) */ + /* _mesa_function_pool[11020]: Normal3f (offset 56) */ "fff\0" "glNormal3f\0" "\0" - /* _mesa_function_pool[10997]: MultiTexCoord1svARB (offset 383) */ + /* _mesa_function_pool[11036]: MultiTexCoord1svARB (offset 383) */ "ip\0" "glMultiTexCoord1sv\0" "glMultiTexCoord1svARB\0" "\0" - /* _mesa_function_pool[11042]: Indexi (offset 48) */ + /* _mesa_function_pool[11081]: Indexi (offset 48) */ "i\0" "glIndexi\0" "\0" - /* _mesa_function_pool[11054]: EGLImageTargetTexture2DOES (will be remapped) */ + /* _mesa_function_pool[11093]: EGLImageTargetTexture2DOES (will be remapped) */ "ip\0" "glEGLImageTargetTexture2DOES\0" "\0" - /* _mesa_function_pool[11087]: EndQueryARB (will be remapped) */ + /* _mesa_function_pool[11126]: EndQueryARB (will be remapped) */ "i\0" "glEndQuery\0" "glEndQueryARB\0" "\0" - /* _mesa_function_pool[11115]: DeleteFencesNV (will be remapped) */ + /* _mesa_function_pool[11154]: DeleteFencesNV (will be remapped) */ "ip\0" "glDeleteFencesNV\0" "\0" - /* _mesa_function_pool[11136]: BindBufferRangeEXT (will be remapped) */ + /* _mesa_function_pool[11175]: DeformationMap3dSGIX (dynamic) */ + "iddiiddiiddiip\0" + "glDeformationMap3dSGIX\0" + "\0" + /* _mesa_function_pool[11214]: BindBufferRangeEXT (will be remapped) */ "iiiii\0" "glBindBufferRangeEXT\0" "glBindBufferRange\0" "\0" - /* _mesa_function_pool[11182]: DepthMask (offset 211) */ + /* _mesa_function_pool[11260]: DepthMask (offset 211) */ "i\0" "glDepthMask\0" "\0" - /* _mesa_function_pool[11197]: IsShader (will be remapped) */ + /* _mesa_function_pool[11275]: IsShader (will be remapped) */ "i\0" "glIsShader\0" "\0" - /* _mesa_function_pool[11211]: Indexf (offset 46) */ + /* _mesa_function_pool[11289]: Indexf (offset 46) */ "f\0" "glIndexf\0" "\0" - /* _mesa_function_pool[11223]: GetImageTransformParameterivHP (dynamic) */ + /* _mesa_function_pool[11301]: GetImageTransformParameterivHP (dynamic) */ "iip\0" "glGetImageTransformParameterivHP\0" "\0" - /* _mesa_function_pool[11261]: Indexd (offset 44) */ + /* _mesa_function_pool[11339]: Indexd (offset 44) */ "d\0" "glIndexd\0" "\0" - /* _mesa_function_pool[11273]: GetMaterialiv (offset 270) */ + /* _mesa_function_pool[11351]: GetMaterialiv (offset 270) */ "iip\0" "glGetMaterialiv\0" "\0" - /* _mesa_function_pool[11294]: StencilOp (offset 244) */ + /* _mesa_function_pool[11372]: StencilOp (offset 244) */ "iii\0" "glStencilOp\0" "\0" - /* _mesa_function_pool[11311]: WindowPos4ivMESA (will be remapped) */ + /* _mesa_function_pool[11389]: WindowPos4ivMESA (will be remapped) */ "p\0" "glWindowPos4ivMESA\0" "\0" - /* _mesa_function_pool[11333]: FramebufferTextureLayer (dynamic) */ + /* _mesa_function_pool[11411]: FramebufferTextureLayer (dynamic) */ "iiiii\0" "glFramebufferTextureLayerARB\0" "\0" - /* _mesa_function_pool[11369]: MultiTexCoord3svARB (offset 399) */ + /* _mesa_function_pool[11447]: MultiTexCoord3svARB (offset 399) */ "ip\0" "glMultiTexCoord3sv\0" "glMultiTexCoord3svARB\0" "\0" - /* _mesa_function_pool[11414]: TexEnvfv (offset 185) */ + /* _mesa_function_pool[11492]: TexEnvfv (offset 185) */ "iip\0" "glTexEnvfv\0" "\0" - /* _mesa_function_pool[11430]: MultiTexCoord4iARB (offset 404) */ + /* _mesa_function_pool[11508]: MultiTexCoord4iARB (offset 404) */ "iiiii\0" "glMultiTexCoord4i\0" "glMultiTexCoord4iARB\0" "\0" - /* _mesa_function_pool[11476]: Indexs (offset 50) */ + /* _mesa_function_pool[11554]: Indexs (offset 50) */ "i\0" "glIndexs\0" "\0" - /* _mesa_function_pool[11488]: Binormal3ivEXT (dynamic) */ + /* _mesa_function_pool[11566]: Binormal3ivEXT (dynamic) */ "p\0" "glBinormal3ivEXT\0" "\0" - /* _mesa_function_pool[11508]: ResizeBuffersMESA (will be remapped) */ + /* _mesa_function_pool[11586]: ResizeBuffersMESA (will be remapped) */ "\0" "glResizeBuffersMESA\0" "\0" - /* _mesa_function_pool[11530]: GetUniformivARB (will be remapped) */ + /* _mesa_function_pool[11608]: GetUniformivARB (will be remapped) */ "iip\0" "glGetUniformiv\0" "glGetUniformivARB\0" "\0" - /* _mesa_function_pool[11568]: PixelTexGenParameteriSGIS (will be remapped) */ + /* _mesa_function_pool[11646]: PixelTexGenParameteriSGIS (will be remapped) */ "ii\0" "glPixelTexGenParameteriSGIS\0" "\0" - /* _mesa_function_pool[11600]: VertexPointervINTEL (dynamic) */ + /* _mesa_function_pool[11678]: VertexPointervINTEL (dynamic) */ "iip\0" "glVertexPointervINTEL\0" "\0" - /* _mesa_function_pool[11627]: Vertex2i (offset 130) */ + /* _mesa_function_pool[11705]: Vertex2i (offset 130) */ "ii\0" "glVertex2i\0" "\0" - /* _mesa_function_pool[11642]: LoadMatrixf (offset 291) */ + /* _mesa_function_pool[11720]: LoadMatrixf (offset 291) */ "p\0" "glLoadMatrixf\0" "\0" - /* _mesa_function_pool[11659]: Vertex2f (offset 128) */ + /* _mesa_function_pool[11737]: Vertex2f (offset 128) */ "ff\0" "glVertex2f\0" "\0" - /* _mesa_function_pool[11674]: ReplacementCodeuiColor4fNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[11752]: ReplacementCodeuiColor4fNormal3fVertex3fvSUN (dynamic) */ "pppp\0" "glReplacementCodeuiColor4fNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[11727]: Color4bv (offset 26) */ + /* _mesa_function_pool[11805]: Color4bv (offset 26) */ "p\0" "glColor4bv\0" "\0" - /* _mesa_function_pool[11741]: VertexPointer (offset 321) */ + /* _mesa_function_pool[11819]: VertexPointer (offset 321) */ "iiip\0" "glVertexPointer\0" "\0" - /* _mesa_function_pool[11763]: SecondaryColor3uiEXT (will be remapped) */ + /* _mesa_function_pool[11841]: SecondaryColor3uiEXT (will be remapped) */ "iii\0" "glSecondaryColor3ui\0" "glSecondaryColor3uiEXT\0" "\0" - /* _mesa_function_pool[11811]: StartInstrumentsSGIX (dynamic) */ + /* _mesa_function_pool[11889]: StartInstrumentsSGIX (dynamic) */ "\0" "glStartInstrumentsSGIX\0" "\0" - /* _mesa_function_pool[11836]: SecondaryColor3usvEXT (will be remapped) */ + /* _mesa_function_pool[11914]: SecondaryColor3usvEXT (will be remapped) */ "p\0" "glSecondaryColor3usv\0" "glSecondaryColor3usvEXT\0" "\0" - /* _mesa_function_pool[11884]: VertexAttrib2fvNV (will be remapped) */ + /* _mesa_function_pool[11962]: VertexAttrib2fvNV (will be remapped) */ "ip\0" "glVertexAttrib2fvNV\0" "\0" - /* _mesa_function_pool[11908]: ProgramLocalParameter4dvARB (will be remapped) */ + /* _mesa_function_pool[11986]: ProgramLocalParameter4dvARB (will be remapped) */ "iip\0" "glProgramLocalParameter4dvARB\0" "\0" - /* _mesa_function_pool[11943]: DeleteLists (offset 4) */ + /* _mesa_function_pool[12021]: DeleteLists (offset 4) */ "ii\0" "glDeleteLists\0" "\0" - /* _mesa_function_pool[11961]: LogicOp (offset 242) */ + /* _mesa_function_pool[12039]: LogicOp (offset 242) */ "i\0" "glLogicOp\0" "\0" - /* _mesa_function_pool[11974]: MatrixIndexuivARB (dynamic) */ + /* _mesa_function_pool[12052]: MatrixIndexuivARB (dynamic) */ "ip\0" "glMatrixIndexuivARB\0" "\0" - /* _mesa_function_pool[11998]: Vertex2s (offset 132) */ + /* _mesa_function_pool[12076]: Vertex2s (offset 132) */ "ii\0" "glVertex2s\0" "\0" - /* _mesa_function_pool[12013]: RenderbufferStorageMultisample (will be remapped) */ + /* _mesa_function_pool[12091]: RenderbufferStorageMultisample (will be remapped) */ "iiiii\0" "glRenderbufferStorageMultisample\0" "glRenderbufferStorageMultisampleEXT\0" "\0" - /* _mesa_function_pool[12089]: TexCoord4fv (offset 121) */ + /* _mesa_function_pool[12167]: TexCoord4fv (offset 121) */ "p\0" "glTexCoord4fv\0" "\0" - /* _mesa_function_pool[12106]: Tangent3sEXT (dynamic) */ + /* _mesa_function_pool[12184]: Tangent3sEXT (dynamic) */ "iii\0" "glTangent3sEXT\0" "\0" - /* _mesa_function_pool[12126]: GlobalAlphaFactorfSUN (dynamic) */ + /* _mesa_function_pool[12204]: GlobalAlphaFactorfSUN (dynamic) */ "f\0" "glGlobalAlphaFactorfSUN\0" "\0" - /* _mesa_function_pool[12153]: MultiTexCoord3iARB (offset 396) */ + /* _mesa_function_pool[12231]: MultiTexCoord3iARB (offset 396) */ "iiii\0" "glMultiTexCoord3i\0" "glMultiTexCoord3iARB\0" "\0" - /* _mesa_function_pool[12198]: IsProgram (will be remapped) */ + /* _mesa_function_pool[12276]: IsProgram (will be remapped) */ "i\0" "glIsProgram\0" "\0" - /* _mesa_function_pool[12213]: TexCoordPointerListIBM (dynamic) */ + /* _mesa_function_pool[12291]: TexCoordPointerListIBM (dynamic) */ "iiipi\0" "glTexCoordPointerListIBM\0" "\0" - /* _mesa_function_pool[12245]: GlobalAlphaFactorusSUN (dynamic) */ + /* _mesa_function_pool[12323]: GlobalAlphaFactorusSUN (dynamic) */ "i\0" "glGlobalAlphaFactorusSUN\0" "\0" - /* _mesa_function_pool[12273]: VertexAttrib2dvNV (will be remapped) */ + /* _mesa_function_pool[12351]: VertexAttrib2dvNV (will be remapped) */ "ip\0" "glVertexAttrib2dvNV\0" "\0" - /* _mesa_function_pool[12297]: FramebufferRenderbufferEXT (will be remapped) */ + /* _mesa_function_pool[12375]: FramebufferRenderbufferEXT (will be remapped) */ "iiii\0" "glFramebufferRenderbuffer\0" "glFramebufferRenderbufferEXT\0" "\0" - /* _mesa_function_pool[12358]: VertexAttrib1dvNV (will be remapped) */ + /* _mesa_function_pool[12436]: VertexAttrib1dvNV (will be remapped) */ "ip\0" "glVertexAttrib1dvNV\0" "\0" - /* _mesa_function_pool[12382]: GenTextures (offset 328) */ + /* _mesa_function_pool[12460]: GenTextures (offset 328) */ "ip\0" "glGenTextures\0" "glGenTexturesEXT\0" "\0" - /* _mesa_function_pool[12417]: FramebufferTextureARB (will be remapped) */ + /* _mesa_function_pool[12495]: FramebufferTextureARB (will be remapped) */ "iiii\0" "glFramebufferTextureARB\0" "\0" - /* _mesa_function_pool[12447]: SetFenceNV (will be remapped) */ + /* _mesa_function_pool[12525]: SetFenceNV (will be remapped) */ "ii\0" "glSetFenceNV\0" "\0" - /* _mesa_function_pool[12464]: FramebufferTexture1DEXT (will be remapped) */ + /* _mesa_function_pool[12542]: FramebufferTexture1DEXT (will be remapped) */ "iiiii\0" "glFramebufferTexture1D\0" "glFramebufferTexture1DEXT\0" "\0" - /* _mesa_function_pool[12520]: GetCombinerOutputParameterivNV (will be remapped) */ + /* _mesa_function_pool[12598]: GetCombinerOutputParameterivNV (will be remapped) */ "iiip\0" "glGetCombinerOutputParameterivNV\0" "\0" - /* _mesa_function_pool[12559]: MultiModeDrawArraysIBM (will be remapped) */ - "pppii\0" - "glMultiModeDrawArraysIBM\0" - "\0" - /* _mesa_function_pool[12591]: PixelTexGenParameterivSGIS (will be remapped) */ + /* _mesa_function_pool[12637]: PixelTexGenParameterivSGIS (will be remapped) */ "ip\0" "glPixelTexGenParameterivSGIS\0" "\0" - /* _mesa_function_pool[12624]: TextureNormalEXT (dynamic) */ + /* _mesa_function_pool[12670]: TextureNormalEXT (dynamic) */ "i\0" "glTextureNormalEXT\0" "\0" - /* _mesa_function_pool[12646]: IndexPointerListIBM (dynamic) */ + /* _mesa_function_pool[12692]: IndexPointerListIBM (dynamic) */ "iipi\0" "glIndexPointerListIBM\0" "\0" - /* _mesa_function_pool[12674]: WeightfvARB (dynamic) */ + /* _mesa_function_pool[12720]: WeightfvARB (dynamic) */ "ip\0" "glWeightfvARB\0" "\0" - /* _mesa_function_pool[12692]: GetCombinerOutputParameterfvNV (will be remapped) */ - "iiip\0" - "glGetCombinerOutputParameterfvNV\0" - "\0" - /* _mesa_function_pool[12731]: RasterPos2sv (offset 69) */ + /* _mesa_function_pool[12738]: RasterPos2sv (offset 69) */ "p\0" "glRasterPos2sv\0" "\0" - /* _mesa_function_pool[12749]: Color4ubv (offset 36) */ + /* _mesa_function_pool[12756]: Color4ubv (offset 36) */ "p\0" "glColor4ubv\0" "\0" - /* _mesa_function_pool[12764]: DrawBuffer (offset 202) */ + /* _mesa_function_pool[12771]: DrawBuffer (offset 202) */ "i\0" "glDrawBuffer\0" "\0" - /* _mesa_function_pool[12780]: TexCoord2fv (offset 105) */ + /* _mesa_function_pool[12787]: TexCoord2fv (offset 105) */ "p\0" "glTexCoord2fv\0" "\0" - /* _mesa_function_pool[12797]: WindowPos4fMESA (will be remapped) */ + /* _mesa_function_pool[12804]: WindowPos4fMESA (will be remapped) */ "ffff\0" "glWindowPos4fMESA\0" "\0" - /* _mesa_function_pool[12821]: TexCoord1sv (offset 101) */ + /* _mesa_function_pool[12828]: TexCoord1sv (offset 101) */ "p\0" "glTexCoord1sv\0" "\0" - /* _mesa_function_pool[12838]: WindowPos3dvMESA (will be remapped) */ + /* _mesa_function_pool[12845]: WindowPos3dvMESA (will be remapped) */ "p\0" "glWindowPos3dv\0" "glWindowPos3dvARB\0" "glWindowPos3dvMESA\0" "\0" - /* _mesa_function_pool[12893]: DepthFunc (offset 245) */ + /* _mesa_function_pool[12900]: DepthFunc (offset 245) */ "i\0" "glDepthFunc\0" "\0" - /* _mesa_function_pool[12908]: PixelMapusv (offset 253) */ + /* _mesa_function_pool[12915]: PixelMapusv (offset 253) */ "iip\0" "glPixelMapusv\0" "\0" - /* _mesa_function_pool[12927]: GetQueryObjecti64vEXT (will be remapped) */ + /* _mesa_function_pool[12934]: GetQueryObjecti64vEXT (will be remapped) */ "iip\0" "glGetQueryObjecti64vEXT\0" "\0" - /* _mesa_function_pool[12956]: MultiTexCoord1dARB (offset 376) */ + /* _mesa_function_pool[12963]: MultiTexCoord1dARB (offset 376) */ "id\0" "glMultiTexCoord1d\0" "glMultiTexCoord1dARB\0" "\0" - /* _mesa_function_pool[12999]: PointParameterivNV (will be remapped) */ + /* _mesa_function_pool[13006]: PointParameterivNV (will be remapped) */ "ip\0" "glPointParameteriv\0" "glPointParameterivNV\0" "\0" - /* _mesa_function_pool[13043]: BlendFunc (offset 241) */ + /* _mesa_function_pool[13050]: BlendFunc (offset 241) */ "ii\0" "glBlendFunc\0" "\0" - /* _mesa_function_pool[13059]: EndTransformFeedbackEXT (will be remapped) */ + /* _mesa_function_pool[13066]: EndTransformFeedbackEXT (will be remapped) */ "\0" "glEndTransformFeedbackEXT\0" "glEndTransformFeedback\0" "\0" - /* _mesa_function_pool[13110]: Uniform2fvARB (will be remapped) */ + /* _mesa_function_pool[13117]: Uniform2fvARB (will be remapped) */ "iip\0" "glUniform2fv\0" "glUniform2fvARB\0" "\0" - /* _mesa_function_pool[13144]: BufferParameteriAPPLE (will be remapped) */ + /* _mesa_function_pool[13151]: BufferParameteriAPPLE (will be remapped) */ "iii\0" "glBufferParameteriAPPLE\0" "\0" - /* _mesa_function_pool[13173]: MultiTexCoord3dvARB (offset 393) */ + /* _mesa_function_pool[13180]: MultiTexCoord3dvARB (offset 393) */ "ip\0" "glMultiTexCoord3dv\0" "glMultiTexCoord3dvARB\0" "\0" - /* _mesa_function_pool[13218]: ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[13225]: ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (dynamic) */ "pppp\0" "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[13274]: DeleteObjectARB (will be remapped) */ + /* _mesa_function_pool[13281]: DeleteObjectARB (will be remapped) */ "i\0" "glDeleteObjectARB\0" "\0" - /* _mesa_function_pool[13295]: MatrixIndexPointerARB (dynamic) */ + /* _mesa_function_pool[13302]: MatrixIndexPointerARB (dynamic) */ "iiip\0" "glMatrixIndexPointerARB\0" "\0" - /* _mesa_function_pool[13325]: ProgramNamedParameter4dvNV (will be remapped) */ + /* _mesa_function_pool[13332]: ProgramNamedParameter4dvNV (will be remapped) */ "iipp\0" "glProgramNamedParameter4dvNV\0" "\0" - /* _mesa_function_pool[13360]: Tangent3fvEXT (dynamic) */ + /* _mesa_function_pool[13367]: Tangent3fvEXT (dynamic) */ "p\0" "glTangent3fvEXT\0" "\0" - /* _mesa_function_pool[13379]: Flush (offset 217) */ + /* _mesa_function_pool[13386]: Flush (offset 217) */ "\0" "glFlush\0" "\0" - /* _mesa_function_pool[13389]: Color4uiv (offset 38) */ + /* _mesa_function_pool[13396]: Color4uiv (offset 38) */ "p\0" "glColor4uiv\0" "\0" - /* _mesa_function_pool[13404]: GenVertexArrays (will be remapped) */ + /* _mesa_function_pool[13411]: GenVertexArrays (will be remapped) */ "ip\0" "glGenVertexArrays\0" "\0" - /* _mesa_function_pool[13426]: RasterPos3sv (offset 77) */ + /* _mesa_function_pool[13433]: RasterPos3sv (offset 77) */ "p\0" "glRasterPos3sv\0" "\0" - /* _mesa_function_pool[13444]: BindFramebufferEXT (will be remapped) */ + /* _mesa_function_pool[13451]: BindFramebufferEXT (will be remapped) */ "ii\0" "glBindFramebuffer\0" "glBindFramebufferEXT\0" "\0" - /* _mesa_function_pool[13487]: ReferencePlaneSGIX (dynamic) */ + /* _mesa_function_pool[13494]: ReferencePlaneSGIX (dynamic) */ "p\0" "glReferencePlaneSGIX\0" "\0" - /* _mesa_function_pool[13511]: PushAttrib (offset 219) */ + /* _mesa_function_pool[13518]: PushAttrib (offset 219) */ "i\0" "glPushAttrib\0" "\0" - /* _mesa_function_pool[13527]: RasterPos2i (offset 66) */ + /* _mesa_function_pool[13534]: RasterPos2i (offset 66) */ "ii\0" "glRasterPos2i\0" "\0" - /* _mesa_function_pool[13545]: ValidateProgramARB (will be remapped) */ + /* _mesa_function_pool[13552]: ValidateProgramARB (will be remapped) */ "i\0" "glValidateProgram\0" "glValidateProgramARB\0" "\0" - /* _mesa_function_pool[13587]: TexParameteriv (offset 181) */ + /* _mesa_function_pool[13594]: TexParameteriv (offset 181) */ "iip\0" "glTexParameteriv\0" "\0" - /* _mesa_function_pool[13609]: UnlockArraysEXT (will be remapped) */ + /* _mesa_function_pool[13616]: UnlockArraysEXT (will be remapped) */ "\0" "glUnlockArraysEXT\0" "\0" - /* _mesa_function_pool[13629]: TexCoord2fColor3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[13636]: TexCoord2fColor3fVertex3fSUN (dynamic) */ "ffffffff\0" "glTexCoord2fColor3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[13670]: WindowPos3fvMESA (will be remapped) */ + /* _mesa_function_pool[13677]: WindowPos3fvMESA (will be remapped) */ "p\0" "glWindowPos3fv\0" "glWindowPos3fvARB\0" "glWindowPos3fvMESA\0" "\0" - /* _mesa_function_pool[13725]: RasterPos2f (offset 64) */ + /* _mesa_function_pool[13732]: RasterPos2f (offset 64) */ "ff\0" "glRasterPos2f\0" "\0" - /* _mesa_function_pool[13743]: VertexAttrib1svNV (will be remapped) */ + /* _mesa_function_pool[13750]: VertexAttrib1svNV (will be remapped) */ "ip\0" "glVertexAttrib1svNV\0" "\0" - /* _mesa_function_pool[13767]: RasterPos2d (offset 62) */ + /* _mesa_function_pool[13774]: RasterPos2d (offset 62) */ "dd\0" "glRasterPos2d\0" "\0" - /* _mesa_function_pool[13785]: RasterPos3fv (offset 73) */ + /* _mesa_function_pool[13792]: RasterPos3fv (offset 73) */ "p\0" "glRasterPos3fv\0" "\0" - /* _mesa_function_pool[13803]: CopyTexSubImage3D (offset 373) */ + /* _mesa_function_pool[13810]: CopyTexSubImage3D (offset 373) */ "iiiiiiiii\0" "glCopyTexSubImage3D\0" "glCopyTexSubImage3DEXT\0" "\0" - /* _mesa_function_pool[13857]: VertexAttrib2dARB (will be remapped) */ + /* _mesa_function_pool[13864]: VertexAttrib2dARB (will be remapped) */ "idd\0" "glVertexAttrib2d\0" "glVertexAttrib2dARB\0" "\0" - /* _mesa_function_pool[13899]: Color4ub (offset 35) */ + /* _mesa_function_pool[13906]: Color4ub (offset 35) */ "iiii\0" "glColor4ub\0" "\0" - /* _mesa_function_pool[13916]: GetInteger64v (will be remapped) */ + /* _mesa_function_pool[13923]: GetInteger64v (will be remapped) */ "ip\0" "glGetInteger64v\0" "\0" - /* _mesa_function_pool[13936]: TextureColorMaskSGIS (dynamic) */ + /* _mesa_function_pool[13943]: TextureColorMaskSGIS (dynamic) */ "iiii\0" "glTextureColorMaskSGIS\0" "\0" - /* _mesa_function_pool[13965]: RasterPos2s (offset 68) */ + /* _mesa_function_pool[13972]: RasterPos2s (offset 68) */ "ii\0" "glRasterPos2s\0" "\0" - /* _mesa_function_pool[13983]: GetColorTable (offset 343) */ + /* _mesa_function_pool[13990]: GetColorTable (offset 343) */ "iiip\0" "glGetColorTable\0" "glGetColorTableSGI\0" "glGetColorTableEXT\0" "\0" - /* _mesa_function_pool[14043]: SelectBuffer (offset 195) */ + /* _mesa_function_pool[14050]: SelectBuffer (offset 195) */ "ip\0" "glSelectBuffer\0" "\0" - /* _mesa_function_pool[14062]: Indexiv (offset 49) */ + /* _mesa_function_pool[14069]: Indexiv (offset 49) */ "p\0" "glIndexiv\0" "\0" - /* _mesa_function_pool[14075]: TexCoord3i (offset 114) */ + /* _mesa_function_pool[14082]: TexCoord3i (offset 114) */ "iii\0" "glTexCoord3i\0" "\0" - /* _mesa_function_pool[14093]: CopyColorTable (offset 342) */ + /* _mesa_function_pool[14100]: CopyColorTable (offset 342) */ "iiiii\0" "glCopyColorTable\0" "glCopyColorTableSGI\0" "\0" - /* _mesa_function_pool[14137]: GetHistogramParameterfv (offset 362) */ + /* _mesa_function_pool[14144]: GetHistogramParameterfv (offset 362) */ "iip\0" "glGetHistogramParameterfv\0" "glGetHistogramParameterfvEXT\0" "\0" - /* _mesa_function_pool[14197]: Frustum (offset 289) */ + /* _mesa_function_pool[14204]: Frustum (offset 289) */ "dddddd\0" "glFrustum\0" "\0" - /* _mesa_function_pool[14215]: GetString (offset 275) */ + /* _mesa_function_pool[14222]: GetString (offset 275) */ "i\0" "glGetString\0" "\0" - /* _mesa_function_pool[14230]: ColorPointervINTEL (dynamic) */ + /* _mesa_function_pool[14237]: ColorPointervINTEL (dynamic) */ "iip\0" "glColorPointervINTEL\0" "\0" - /* _mesa_function_pool[14256]: TexEnvf (offset 184) */ + /* _mesa_function_pool[14263]: TexEnvf (offset 184) */ "iif\0" "glTexEnvf\0" "\0" - /* _mesa_function_pool[14271]: TexCoord3d (offset 110) */ + /* _mesa_function_pool[14278]: TexCoord3d (offset 110) */ "ddd\0" "glTexCoord3d\0" "\0" - /* _mesa_function_pool[14289]: AlphaFragmentOp1ATI (will be remapped) */ + /* _mesa_function_pool[14296]: AlphaFragmentOp1ATI (will be remapped) */ "iiiiii\0" "glAlphaFragmentOp1ATI\0" "\0" - /* _mesa_function_pool[14319]: TexCoord3f (offset 112) */ + /* _mesa_function_pool[14326]: TexCoord3f (offset 112) */ "fff\0" "glTexCoord3f\0" "\0" - /* _mesa_function_pool[14337]: MultiTexCoord3ivARB (offset 397) */ + /* _mesa_function_pool[14344]: MultiTexCoord3ivARB (offset 397) */ "ip\0" "glMultiTexCoord3iv\0" "glMultiTexCoord3ivARB\0" "\0" - /* _mesa_function_pool[14382]: MultiTexCoord2sARB (offset 390) */ + /* _mesa_function_pool[14389]: MultiTexCoord2sARB (offset 390) */ "iii\0" "glMultiTexCoord2s\0" "glMultiTexCoord2sARB\0" "\0" - /* _mesa_function_pool[14426]: VertexAttrib1dvARB (will be remapped) */ + /* _mesa_function_pool[14433]: VertexAttrib1dvARB (will be remapped) */ "ip\0" "glVertexAttrib1dv\0" "glVertexAttrib1dvARB\0" "\0" - /* _mesa_function_pool[14469]: DeleteTextures (offset 327) */ + /* _mesa_function_pool[14476]: DeleteTextures (offset 327) */ "ip\0" "glDeleteTextures\0" "glDeleteTexturesEXT\0" "\0" - /* _mesa_function_pool[14510]: TexCoordPointerEXT (will be remapped) */ + /* _mesa_function_pool[14517]: TexCoordPointerEXT (will be remapped) */ "iiiip\0" "glTexCoordPointerEXT\0" "\0" - /* _mesa_function_pool[14538]: TexSubImage4DSGIS (dynamic) */ + /* _mesa_function_pool[14545]: TexSubImage4DSGIS (dynamic) */ "iiiiiiiiiiiip\0" "glTexSubImage4DSGIS\0" "\0" - /* _mesa_function_pool[14573]: TexCoord3s (offset 116) */ + /* _mesa_function_pool[14580]: TexCoord3s (offset 116) */ "iii\0" "glTexCoord3s\0" "\0" - /* _mesa_function_pool[14591]: GetTexLevelParameteriv (offset 285) */ + /* _mesa_function_pool[14598]: GetTexLevelParameteriv (offset 285) */ "iiip\0" "glGetTexLevelParameteriv\0" "\0" - /* _mesa_function_pool[14622]: DrawArraysInstanced (will be remapped) */ + /* _mesa_function_pool[14629]: DrawArraysInstanced (will be remapped) */ "iiii\0" "glDrawArraysInstanced\0" "glDrawArraysInstancedARB\0" "glDrawArraysInstancedEXT\0" "\0" - /* _mesa_function_pool[14700]: CombinerStageParameterfvNV (dynamic) */ + /* _mesa_function_pool[14707]: CombinerStageParameterfvNV (dynamic) */ "iip\0" "glCombinerStageParameterfvNV\0" "\0" - /* _mesa_function_pool[14734]: StopInstrumentsSGIX (dynamic) */ + /* _mesa_function_pool[14741]: StopInstrumentsSGIX (dynamic) */ "i\0" "glStopInstrumentsSGIX\0" "\0" - /* _mesa_function_pool[14759]: TexCoord4fColor4fNormal3fVertex4fSUN (dynamic) */ + /* _mesa_function_pool[14766]: TexCoord4fColor4fNormal3fVertex4fSUN (dynamic) */ "fffffffffffffff\0" "glTexCoord4fColor4fNormal3fVertex4fSUN\0" "\0" - /* _mesa_function_pool[14815]: ClearAccum (offset 204) */ + /* _mesa_function_pool[14822]: ClearAccum (offset 204) */ "ffff\0" "glClearAccum\0" "\0" - /* _mesa_function_pool[14834]: DeformSGIX (dynamic) */ + /* _mesa_function_pool[14841]: DeformSGIX (dynamic) */ "i\0" "glDeformSGIX\0" "\0" - /* _mesa_function_pool[14850]: GetVertexAttribfvARB (will be remapped) */ + /* _mesa_function_pool[14857]: GetVertexAttribfvARB (will be remapped) */ "iip\0" "glGetVertexAttribfv\0" "glGetVertexAttribfvARB\0" "\0" - /* _mesa_function_pool[14898]: SecondaryColor3ivEXT (will be remapped) */ + /* _mesa_function_pool[14905]: SecondaryColor3ivEXT (will be remapped) */ "p\0" "glSecondaryColor3iv\0" "glSecondaryColor3ivEXT\0" "\0" - /* _mesa_function_pool[14944]: TexCoord4iv (offset 123) */ + /* _mesa_function_pool[14951]: TexCoord4iv (offset 123) */ "p\0" "glTexCoord4iv\0" "\0" - /* _mesa_function_pool[14961]: UniformMatrix4x2fv (will be remapped) */ + /* _mesa_function_pool[14968]: UniformMatrix4x2fv (will be remapped) */ "iiip\0" "glUniformMatrix4x2fv\0" "\0" - /* _mesa_function_pool[14988]: GetDetailTexFuncSGIS (dynamic) */ + /* _mesa_function_pool[14995]: GetDetailTexFuncSGIS (dynamic) */ "ip\0" "glGetDetailTexFuncSGIS\0" "\0" - /* _mesa_function_pool[15015]: GetCombinerStageParameterfvNV (dynamic) */ + /* _mesa_function_pool[15022]: GetCombinerStageParameterfvNV (dynamic) */ "iip\0" "glGetCombinerStageParameterfvNV\0" "\0" - /* _mesa_function_pool[15052]: PolygonOffset (offset 319) */ + /* _mesa_function_pool[15059]: PolygonOffset (offset 319) */ "ff\0" "glPolygonOffset\0" "\0" - /* _mesa_function_pool[15072]: BindVertexArray (will be remapped) */ + /* _mesa_function_pool[15079]: BindVertexArray (will be remapped) */ "i\0" "glBindVertexArray\0" "\0" - /* _mesa_function_pool[15093]: Color4ubVertex2fvSUN (dynamic) */ + /* _mesa_function_pool[15100]: Color4ubVertex2fvSUN (dynamic) */ "pp\0" "glColor4ubVertex2fvSUN\0" "\0" - /* _mesa_function_pool[15120]: Rectd (offset 86) */ + /* _mesa_function_pool[15127]: Rectd (offset 86) */ "dddd\0" "glRectd\0" "\0" - /* _mesa_function_pool[15134]: TexFilterFuncSGIS (dynamic) */ + /* _mesa_function_pool[15141]: TexFilterFuncSGIS (dynamic) */ "iiip\0" "glTexFilterFuncSGIS\0" "\0" - /* _mesa_function_pool[15160]: SampleMaskSGIS (will be remapped) */ + /* _mesa_function_pool[15167]: SampleMaskSGIS (will be remapped) */ "fi\0" "glSampleMaskSGIS\0" "glSampleMaskEXT\0" "\0" - /* _mesa_function_pool[15197]: GetAttribLocationARB (will be remapped) */ + /* _mesa_function_pool[15204]: GetAttribLocationARB (will be remapped) */ "ip\0" "glGetAttribLocation\0" "glGetAttribLocationARB\0" "\0" - /* _mesa_function_pool[15244]: RasterPos3i (offset 74) */ + /* _mesa_function_pool[15251]: RasterPos3i (offset 74) */ "iii\0" "glRasterPos3i\0" "\0" - /* _mesa_function_pool[15263]: VertexAttrib4ubvARB (will be remapped) */ + /* _mesa_function_pool[15270]: VertexAttrib4ubvARB (will be remapped) */ "ip\0" "glVertexAttrib4ubv\0" "glVertexAttrib4ubvARB\0" "\0" - /* _mesa_function_pool[15308]: DetailTexFuncSGIS (dynamic) */ + /* _mesa_function_pool[15315]: DetailTexFuncSGIS (dynamic) */ "iip\0" "glDetailTexFuncSGIS\0" "\0" - /* _mesa_function_pool[15333]: Normal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[15340]: Normal3fVertex3fSUN (dynamic) */ "ffffff\0" "glNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[15363]: CopyTexImage2D (offset 324) */ + /* _mesa_function_pool[15370]: CopyTexImage2D (offset 324) */ "iiiiiiii\0" "glCopyTexImage2D\0" "glCopyTexImage2DEXT\0" "\0" - /* _mesa_function_pool[15410]: GetBufferPointervARB (will be remapped) */ + /* _mesa_function_pool[15417]: GetBufferPointervARB (will be remapped) */ "iip\0" "glGetBufferPointerv\0" "glGetBufferPointervARB\0" "\0" - /* _mesa_function_pool[15458]: ProgramEnvParameter4fARB (will be remapped) */ + /* _mesa_function_pool[15465]: ProgramEnvParameter4fARB (will be remapped) */ "iiffff\0" "glProgramEnvParameter4fARB\0" "glProgramParameter4fNV\0" "\0" - /* _mesa_function_pool[15516]: Uniform3ivARB (will be remapped) */ + /* _mesa_function_pool[15523]: Uniform3ivARB (will be remapped) */ "iip\0" "glUniform3iv\0" "glUniform3ivARB\0" "\0" - /* _mesa_function_pool[15550]: Lightfv (offset 160) */ + /* _mesa_function_pool[15557]: Lightfv (offset 160) */ "iip\0" "glLightfv\0" "\0" - /* _mesa_function_pool[15565]: ClearDepth (offset 208) */ + /* _mesa_function_pool[15572]: ClearDepth (offset 208) */ "d\0" "glClearDepth\0" "\0" - /* _mesa_function_pool[15581]: GetFenceivNV (will be remapped) */ + /* _mesa_function_pool[15588]: GetFenceivNV (will be remapped) */ "iip\0" "glGetFenceivNV\0" "\0" - /* _mesa_function_pool[15601]: WindowPos4dvMESA (will be remapped) */ + /* _mesa_function_pool[15608]: WindowPos4dvMESA (will be remapped) */ "p\0" "glWindowPos4dvMESA\0" "\0" - /* _mesa_function_pool[15623]: ColorSubTable (offset 346) */ + /* _mesa_function_pool[15630]: ColorSubTable (offset 346) */ "iiiiip\0" "glColorSubTable\0" "glColorSubTableEXT\0" "\0" - /* _mesa_function_pool[15666]: Color4fv (offset 30) */ + /* _mesa_function_pool[15673]: Color4fv (offset 30) */ "p\0" "glColor4fv\0" "\0" - /* _mesa_function_pool[15680]: MultiTexCoord4ivARB (offset 405) */ + /* _mesa_function_pool[15687]: MultiTexCoord4ivARB (offset 405) */ "ip\0" "glMultiTexCoord4iv\0" "glMultiTexCoord4ivARB\0" "\0" - /* _mesa_function_pool[15725]: DrawElementsInstanced (will be remapped) */ + /* _mesa_function_pool[15732]: DrawElementsInstanced (will be remapped) */ "iiipi\0" "glDrawElementsInstanced\0" "glDrawElementsInstancedARB\0" "glDrawElementsInstancedEXT\0" "\0" - /* _mesa_function_pool[15810]: ColorPointer (offset 308) */ + /* _mesa_function_pool[15817]: ColorPointer (offset 308) */ "iiip\0" "glColorPointer\0" "\0" - /* _mesa_function_pool[15831]: Rects (offset 92) */ + /* _mesa_function_pool[15838]: Rects (offset 92) */ "iiii\0" "glRects\0" "\0" - /* _mesa_function_pool[15845]: GetMapAttribParameterfvNV (dynamic) */ + /* _mesa_function_pool[15852]: GetMapAttribParameterfvNV (dynamic) */ "iiip\0" "glGetMapAttribParameterfvNV\0" "\0" - /* _mesa_function_pool[15879]: Lightiv (offset 162) */ + /* _mesa_function_pool[15886]: Lightiv (offset 162) */ "iip\0" "glLightiv\0" "\0" - /* _mesa_function_pool[15894]: VertexAttrib4sARB (will be remapped) */ + /* _mesa_function_pool[15901]: VertexAttrib4sARB (will be remapped) */ "iiiii\0" "glVertexAttrib4s\0" "glVertexAttrib4sARB\0" "\0" - /* _mesa_function_pool[15938]: GetQueryObjectuivARB (will be remapped) */ + /* _mesa_function_pool[15945]: GetQueryObjectuivARB (will be remapped) */ "iip\0" "glGetQueryObjectuiv\0" "glGetQueryObjectuivARB\0" "\0" - /* _mesa_function_pool[15986]: GetTexParameteriv (offset 283) */ + /* _mesa_function_pool[15993]: GetTexParameteriv (offset 283) */ "iip\0" "glGetTexParameteriv\0" "\0" - /* _mesa_function_pool[16011]: MapParameterivNV (dynamic) */ + /* _mesa_function_pool[16018]: MapParameterivNV (dynamic) */ "iip\0" "glMapParameterivNV\0" "\0" - /* _mesa_function_pool[16035]: GenRenderbuffersEXT (will be remapped) */ + /* _mesa_function_pool[16042]: GenRenderbuffersEXT (will be remapped) */ "ip\0" "glGenRenderbuffers\0" "glGenRenderbuffersEXT\0" "\0" - /* _mesa_function_pool[16080]: VertexAttrib2dvARB (will be remapped) */ + /* _mesa_function_pool[16087]: VertexAttrib2dvARB (will be remapped) */ "ip\0" "glVertexAttrib2dv\0" "glVertexAttrib2dvARB\0" "\0" - /* _mesa_function_pool[16123]: EdgeFlagPointerEXT (will be remapped) */ + /* _mesa_function_pool[16130]: EdgeFlagPointerEXT (will be remapped) */ "iip\0" "glEdgeFlagPointerEXT\0" "\0" - /* _mesa_function_pool[16149]: VertexAttribs2svNV (will be remapped) */ + /* _mesa_function_pool[16156]: VertexAttribs2svNV (will be remapped) */ "iip\0" "glVertexAttribs2svNV\0" "\0" - /* _mesa_function_pool[16175]: WeightbvARB (dynamic) */ + /* _mesa_function_pool[16182]: WeightbvARB (dynamic) */ "ip\0" "glWeightbvARB\0" "\0" - /* _mesa_function_pool[16193]: VertexAttrib2fvARB (will be remapped) */ + /* _mesa_function_pool[16200]: VertexAttrib2fvARB (will be remapped) */ "ip\0" "glVertexAttrib2fv\0" "glVertexAttrib2fvARB\0" "\0" - /* _mesa_function_pool[16236]: GetBufferParameterivARB (will be remapped) */ + /* _mesa_function_pool[16243]: GetBufferParameterivARB (will be remapped) */ "iip\0" "glGetBufferParameteriv\0" "glGetBufferParameterivARB\0" "\0" - /* _mesa_function_pool[16290]: Rectdv (offset 87) */ + /* _mesa_function_pool[16297]: Rectdv (offset 87) */ "pp\0" "glRectdv\0" "\0" - /* _mesa_function_pool[16303]: ListParameteriSGIX (dynamic) */ + /* _mesa_function_pool[16310]: ListParameteriSGIX (dynamic) */ "iii\0" "glListParameteriSGIX\0" "\0" - /* _mesa_function_pool[16329]: ReplacementCodeuiColor4fNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[16336]: ReplacementCodeuiColor4fNormal3fVertex3fSUN (dynamic) */ "iffffffffff\0" "glReplacementCodeuiColor4fNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[16388]: InstrumentsBufferSGIX (dynamic) */ + /* _mesa_function_pool[16395]: InstrumentsBufferSGIX (dynamic) */ "ip\0" "glInstrumentsBufferSGIX\0" "\0" - /* _mesa_function_pool[16416]: VertexAttrib4NivARB (will be remapped) */ + /* _mesa_function_pool[16423]: VertexAttrib4NivARB (will be remapped) */ "ip\0" "glVertexAttrib4Niv\0" "glVertexAttrib4NivARB\0" "\0" - /* _mesa_function_pool[16461]: GetAttachedShaders (will be remapped) */ + /* _mesa_function_pool[16468]: GetAttachedShaders (will be remapped) */ "iipp\0" "glGetAttachedShaders\0" "\0" - /* _mesa_function_pool[16488]: GenVertexArraysAPPLE (will be remapped) */ + /* _mesa_function_pool[16495]: GenVertexArraysAPPLE (will be remapped) */ "ip\0" "glGenVertexArraysAPPLE\0" "\0" - /* _mesa_function_pool[16515]: Materialiv (offset 172) */ + /* _mesa_function_pool[16522]: Materialiv (offset 172) */ "iip\0" "glMaterialiv\0" "\0" - /* _mesa_function_pool[16533]: PushClientAttrib (offset 335) */ + /* _mesa_function_pool[16540]: PushClientAttrib (offset 335) */ "i\0" "glPushClientAttrib\0" "\0" - /* _mesa_function_pool[16555]: ProgramEnvParameters4fvEXT (will be remapped) */ + /* _mesa_function_pool[16562]: ProgramEnvParameters4fvEXT (will be remapped) */ "iiip\0" "glProgramEnvParameters4fvEXT\0" "\0" - /* _mesa_function_pool[16590]: TexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[16597]: TexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */ "pppp\0" "glTexCoord2fColor4fNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[16636]: WindowPos2iMESA (will be remapped) */ + /* _mesa_function_pool[16643]: WindowPos2iMESA (will be remapped) */ "ii\0" "glWindowPos2i\0" "glWindowPos2iARB\0" "glWindowPos2iMESA\0" "\0" - /* _mesa_function_pool[16689]: SecondaryColor3fvEXT (will be remapped) */ + /* _mesa_function_pool[16696]: SecondaryColor3fvEXT (will be remapped) */ "p\0" "glSecondaryColor3fv\0" "glSecondaryColor3fvEXT\0" "\0" - /* _mesa_function_pool[16735]: PolygonMode (offset 174) */ + /* _mesa_function_pool[16742]: PolygonMode (offset 174) */ "ii\0" "glPolygonMode\0" "\0" - /* _mesa_function_pool[16753]: CompressedTexSubImage1DARB (will be remapped) */ + /* _mesa_function_pool[16760]: CompressedTexSubImage1DARB (will be remapped) */ "iiiiiip\0" "glCompressedTexSubImage1D\0" "glCompressedTexSubImage1DARB\0" "\0" - /* _mesa_function_pool[16817]: GetVertexAttribivNV (will be remapped) */ + /* _mesa_function_pool[16824]: GetVertexAttribivNV (will be remapped) */ "iip\0" "glGetVertexAttribivNV\0" "\0" - /* _mesa_function_pool[16844]: GetProgramStringARB (will be remapped) */ + /* _mesa_function_pool[16851]: GetProgramStringARB (will be remapped) */ "iip\0" "glGetProgramStringARB\0" "\0" - /* _mesa_function_pool[16871]: TexBumpParameterfvATI (will be remapped) */ + /* _mesa_function_pool[16878]: TexBumpParameterfvATI (will be remapped) */ "ip\0" "glTexBumpParameterfvATI\0" "\0" - /* _mesa_function_pool[16899]: CompileShaderARB (will be remapped) */ + /* _mesa_function_pool[16906]: CompileShaderARB (will be remapped) */ "i\0" "glCompileShader\0" "glCompileShaderARB\0" "\0" - /* _mesa_function_pool[16937]: DeleteShader (will be remapped) */ + /* _mesa_function_pool[16944]: DeleteShader (will be remapped) */ "i\0" "glDeleteShader\0" "\0" - /* _mesa_function_pool[16955]: DisableClientState (offset 309) */ + /* _mesa_function_pool[16962]: DisableClientState (offset 309) */ "i\0" "glDisableClientState\0" "\0" - /* _mesa_function_pool[16979]: TexGeni (offset 192) */ + /* _mesa_function_pool[16986]: TexGeni (offset 192) */ "iii\0" "glTexGeni\0" "\0" - /* _mesa_function_pool[16994]: TexGenf (offset 190) */ + /* _mesa_function_pool[17001]: TexGenf (offset 190) */ "iif\0" "glTexGenf\0" "\0" - /* _mesa_function_pool[17009]: Uniform3fARB (will be remapped) */ + /* _mesa_function_pool[17016]: Uniform3fARB (will be remapped) */ "ifff\0" "glUniform3f\0" "glUniform3fARB\0" "\0" - /* _mesa_function_pool[17042]: TexGend (offset 188) */ + /* _mesa_function_pool[17049]: TexGend (offset 188) */ "iid\0" "glTexGend\0" "\0" - /* _mesa_function_pool[17057]: ListParameterfvSGIX (dynamic) */ + /* _mesa_function_pool[17064]: ListParameterfvSGIX (dynamic) */ "iip\0" "glListParameterfvSGIX\0" "\0" - /* _mesa_function_pool[17084]: GetPolygonStipple (offset 274) */ + /* _mesa_function_pool[17091]: GetPolygonStipple (offset 274) */ "p\0" "glGetPolygonStipple\0" "\0" - /* _mesa_function_pool[17107]: Tangent3dvEXT (dynamic) */ + /* _mesa_function_pool[17114]: Tangent3dvEXT (dynamic) */ "p\0" "glTangent3dvEXT\0" "\0" - /* _mesa_function_pool[17126]: BindBufferOffsetEXT (will be remapped) */ + /* _mesa_function_pool[17133]: BindBufferOffsetEXT (will be remapped) */ "iiii\0" "glBindBufferOffsetEXT\0" "\0" - /* _mesa_function_pool[17154]: WindowPos3sMESA (will be remapped) */ + /* _mesa_function_pool[17161]: WindowPos3sMESA (will be remapped) */ "iii\0" "glWindowPos3s\0" "glWindowPos3sARB\0" "glWindowPos3sMESA\0" "\0" - /* _mesa_function_pool[17208]: VertexAttrib2svNV (will be remapped) */ + /* _mesa_function_pool[17215]: VertexAttrib2svNV (will be remapped) */ "ip\0" "glVertexAttrib2svNV\0" "\0" - /* _mesa_function_pool[17232]: DisableIndexedEXT (will be remapped) */ + /* _mesa_function_pool[17239]: DisableIndexedEXT (will be remapped) */ "ii\0" "glDisableIndexedEXT\0" "\0" - /* _mesa_function_pool[17256]: BindBufferBaseEXT (will be remapped) */ + /* _mesa_function_pool[17263]: BindBufferBaseEXT (will be remapped) */ "iii\0" "glBindBufferBaseEXT\0" "glBindBufferBase\0" "\0" - /* _mesa_function_pool[17298]: TexCoord2fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[17305]: TexCoord2fVertex3fvSUN (dynamic) */ "pp\0" "glTexCoord2fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[17327]: WindowPos4sMESA (will be remapped) */ + /* _mesa_function_pool[17334]: WindowPos4sMESA (will be remapped) */ "iiii\0" "glWindowPos4sMESA\0" "\0" - /* _mesa_function_pool[17351]: VertexAttrib4NuivARB (will be remapped) */ + /* _mesa_function_pool[17358]: VertexAttrib4NuivARB (will be remapped) */ "ip\0" "glVertexAttrib4Nuiv\0" "glVertexAttrib4NuivARB\0" "\0" - /* _mesa_function_pool[17398]: ClientActiveTextureARB (offset 375) */ + /* _mesa_function_pool[17405]: ClientActiveTextureARB (offset 375) */ "i\0" "glClientActiveTexture\0" "glClientActiveTextureARB\0" "\0" - /* _mesa_function_pool[17448]: PixelTexGenSGIX (will be remapped) */ + /* _mesa_function_pool[17455]: PixelTexGenSGIX (will be remapped) */ "i\0" "glPixelTexGenSGIX\0" "\0" - /* _mesa_function_pool[17469]: ReplacementCodeusvSUN (dynamic) */ + /* _mesa_function_pool[17476]: ReplacementCodeusvSUN (dynamic) */ "p\0" "glReplacementCodeusvSUN\0" "\0" - /* _mesa_function_pool[17496]: Uniform4fARB (will be remapped) */ + /* _mesa_function_pool[17503]: Uniform4fARB (will be remapped) */ "iffff\0" "glUniform4f\0" "glUniform4fARB\0" "\0" - /* _mesa_function_pool[17530]: Color4sv (offset 34) */ + /* _mesa_function_pool[17537]: Color4sv (offset 34) */ "p\0" "glColor4sv\0" "\0" - /* _mesa_function_pool[17544]: FlushMappedBufferRange (will be remapped) */ + /* _mesa_function_pool[17551]: FlushMappedBufferRange (will be remapped) */ "iii\0" "glFlushMappedBufferRange\0" "\0" - /* _mesa_function_pool[17574]: IsProgramNV (will be remapped) */ + /* _mesa_function_pool[17581]: IsProgramNV (will be remapped) */ "i\0" "glIsProgramARB\0" "glIsProgramNV\0" "\0" - /* _mesa_function_pool[17606]: FlushMappedBufferRangeAPPLE (will be remapped) */ + /* _mesa_function_pool[17613]: FlushMappedBufferRangeAPPLE (will be remapped) */ "iii\0" "glFlushMappedBufferRangeAPPLE\0" "\0" - /* _mesa_function_pool[17641]: PixelZoom (offset 246) */ + /* _mesa_function_pool[17648]: PixelZoom (offset 246) */ "ff\0" "glPixelZoom\0" "\0" - /* _mesa_function_pool[17657]: ReplacementCodePointerSUN (dynamic) */ + /* _mesa_function_pool[17664]: ReplacementCodePointerSUN (dynamic) */ "iip\0" "glReplacementCodePointerSUN\0" "\0" - /* _mesa_function_pool[17690]: ProgramEnvParameter4dARB (will be remapped) */ + /* _mesa_function_pool[17697]: ProgramEnvParameter4dARB (will be remapped) */ "iidddd\0" "glProgramEnvParameter4dARB\0" "glProgramParameter4dNV\0" "\0" - /* _mesa_function_pool[17748]: ColorTableParameterfv (offset 340) */ + /* _mesa_function_pool[17755]: ColorTableParameterfv (offset 340) */ "iip\0" "glColorTableParameterfv\0" "glColorTableParameterfvSGI\0" "\0" - /* _mesa_function_pool[17804]: FragmentLightModelfSGIX (dynamic) */ + /* _mesa_function_pool[17811]: FragmentLightModelfSGIX (dynamic) */ "if\0" "glFragmentLightModelfSGIX\0" "\0" - /* _mesa_function_pool[17834]: Binormal3bvEXT (dynamic) */ + /* _mesa_function_pool[17841]: Binormal3bvEXT (dynamic) */ "p\0" "glBinormal3bvEXT\0" "\0" - /* _mesa_function_pool[17854]: PixelMapuiv (offset 252) */ + /* _mesa_function_pool[17861]: PixelMapuiv (offset 252) */ "iip\0" "glPixelMapuiv\0" "\0" - /* _mesa_function_pool[17873]: Color3dv (offset 12) */ + /* _mesa_function_pool[17880]: Color3dv (offset 12) */ "p\0" "glColor3dv\0" "\0" - /* _mesa_function_pool[17887]: IsTexture (offset 330) */ + /* _mesa_function_pool[17894]: IsTexture (offset 330) */ "i\0" "glIsTexture\0" "glIsTextureEXT\0" "\0" - /* _mesa_function_pool[17917]: VertexWeightfvEXT (dynamic) */ + /* _mesa_function_pool[17924]: VertexWeightfvEXT (dynamic) */ "p\0" "glVertexWeightfvEXT\0" "\0" - /* _mesa_function_pool[17940]: VertexAttrib1dARB (will be remapped) */ + /* _mesa_function_pool[17947]: VertexAttrib1dARB (will be remapped) */ "id\0" "glVertexAttrib1d\0" "glVertexAttrib1dARB\0" "\0" - /* _mesa_function_pool[17981]: ImageTransformParameterivHP (dynamic) */ + /* _mesa_function_pool[17988]: ImageTransformParameterivHP (dynamic) */ "iip\0" "glImageTransformParameterivHP\0" "\0" - /* _mesa_function_pool[18016]: TexCoord4i (offset 122) */ + /* _mesa_function_pool[18023]: TexCoord4i (offset 122) */ "iiii\0" "glTexCoord4i\0" "\0" - /* _mesa_function_pool[18035]: DeleteQueriesARB (will be remapped) */ + /* _mesa_function_pool[18042]: DeleteQueriesARB (will be remapped) */ "ip\0" "glDeleteQueries\0" "glDeleteQueriesARB\0" "\0" - /* _mesa_function_pool[18074]: Color4ubVertex2fSUN (dynamic) */ + /* _mesa_function_pool[18081]: Color4ubVertex2fSUN (dynamic) */ "iiiiff\0" "glColor4ubVertex2fSUN\0" "\0" - /* _mesa_function_pool[18104]: FragmentColorMaterialSGIX (dynamic) */ + /* _mesa_function_pool[18111]: FragmentColorMaterialSGIX (dynamic) */ "ii\0" "glFragmentColorMaterialSGIX\0" "\0" - /* _mesa_function_pool[18136]: CurrentPaletteMatrixARB (dynamic) */ + /* _mesa_function_pool[18143]: CurrentPaletteMatrixARB (dynamic) */ "i\0" "glCurrentPaletteMatrixARB\0" "\0" - /* _mesa_function_pool[18165]: GetMapdv (offset 266) */ + /* _mesa_function_pool[18172]: GetMapdv (offset 266) */ "iip\0" "glGetMapdv\0" "\0" - /* _mesa_function_pool[18181]: ObjectPurgeableAPPLE (will be remapped) */ + /* _mesa_function_pool[18188]: ObjectPurgeableAPPLE (will be remapped) */ "iii\0" "glObjectPurgeableAPPLE\0" "\0" - /* _mesa_function_pool[18209]: SamplePatternSGIS (will be remapped) */ + /* _mesa_function_pool[18216]: SamplePatternSGIS (will be remapped) */ "i\0" "glSamplePatternSGIS\0" "glSamplePatternEXT\0" "\0" - /* _mesa_function_pool[18251]: PixelStoref (offset 249) */ + /* _mesa_function_pool[18258]: PixelStoref (offset 249) */ "if\0" "glPixelStoref\0" "\0" - /* _mesa_function_pool[18269]: IsQueryARB (will be remapped) */ + /* _mesa_function_pool[18276]: IsQueryARB (will be remapped) */ "i\0" "glIsQuery\0" "glIsQueryARB\0" "\0" - /* _mesa_function_pool[18295]: ReplacementCodeuiColor4ubVertex3fSUN (dynamic) */ + /* _mesa_function_pool[18302]: ReplacementCodeuiColor4ubVertex3fSUN (dynamic) */ "iiiiifff\0" "glReplacementCodeuiColor4ubVertex3fSUN\0" "\0" - /* _mesa_function_pool[18344]: PixelStorei (offset 250) */ + /* _mesa_function_pool[18351]: PixelStorei (offset 250) */ "ii\0" "glPixelStorei\0" "\0" - /* _mesa_function_pool[18362]: VertexAttrib4usvARB (will be remapped) */ + /* _mesa_function_pool[18369]: VertexAttrib4usvARB (will be remapped) */ "ip\0" "glVertexAttrib4usv\0" "glVertexAttrib4usvARB\0" "\0" - /* _mesa_function_pool[18407]: LinkProgramARB (will be remapped) */ + /* _mesa_function_pool[18414]: LinkProgramARB (will be remapped) */ "i\0" "glLinkProgram\0" "glLinkProgramARB\0" "\0" - /* _mesa_function_pool[18441]: VertexAttrib2fNV (will be remapped) */ + /* _mesa_function_pool[18448]: VertexAttrib2fNV (will be remapped) */ "iff\0" "glVertexAttrib2fNV\0" "\0" - /* _mesa_function_pool[18465]: ShaderSourceARB (will be remapped) */ + /* _mesa_function_pool[18472]: ShaderSourceARB (will be remapped) */ "iipp\0" "glShaderSource\0" "glShaderSourceARB\0" "\0" - /* _mesa_function_pool[18504]: FragmentMaterialiSGIX (dynamic) */ + /* _mesa_function_pool[18511]: FragmentMaterialiSGIX (dynamic) */ "iii\0" "glFragmentMaterialiSGIX\0" "\0" - /* _mesa_function_pool[18533]: EvalCoord2dv (offset 233) */ + /* _mesa_function_pool[18540]: EvalCoord2dv (offset 233) */ "p\0" "glEvalCoord2dv\0" "\0" - /* _mesa_function_pool[18551]: VertexAttrib3svARB (will be remapped) */ + /* _mesa_function_pool[18558]: VertexAttrib3svARB (will be remapped) */ "ip\0" "glVertexAttrib3sv\0" "glVertexAttrib3svARB\0" "\0" - /* _mesa_function_pool[18594]: ColorMaterial (offset 151) */ + /* _mesa_function_pool[18601]: ColorMaterial (offset 151) */ "ii\0" "glColorMaterial\0" "\0" - /* _mesa_function_pool[18614]: CompressedTexSubImage3DARB (will be remapped) */ + /* _mesa_function_pool[18621]: CompressedTexSubImage3DARB (will be remapped) */ "iiiiiiiiiip\0" "glCompressedTexSubImage3D\0" "glCompressedTexSubImage3DARB\0" "\0" - /* _mesa_function_pool[18682]: WindowPos2ivMESA (will be remapped) */ + /* _mesa_function_pool[18689]: WindowPos2ivMESA (will be remapped) */ "p\0" "glWindowPos2iv\0" "glWindowPos2ivARB\0" "glWindowPos2ivMESA\0" "\0" - /* _mesa_function_pool[18737]: IsFramebufferEXT (will be remapped) */ + /* _mesa_function_pool[18744]: IsFramebufferEXT (will be remapped) */ "i\0" "glIsFramebuffer\0" "glIsFramebufferEXT\0" "\0" - /* _mesa_function_pool[18775]: Uniform4ivARB (will be remapped) */ + /* _mesa_function_pool[18782]: Uniform4ivARB (will be remapped) */ "iip\0" "glUniform4iv\0" "glUniform4ivARB\0" "\0" - /* _mesa_function_pool[18809]: GetVertexAttribdvARB (will be remapped) */ + /* _mesa_function_pool[18816]: GetVertexAttribdvARB (will be remapped) */ "iip\0" "glGetVertexAttribdv\0" "glGetVertexAttribdvARB\0" "\0" - /* _mesa_function_pool[18857]: TexBumpParameterivATI (will be remapped) */ + /* _mesa_function_pool[18864]: TexBumpParameterivATI (will be remapped) */ "ip\0" "glTexBumpParameterivATI\0" "\0" - /* _mesa_function_pool[18885]: GetSeparableFilter (offset 359) */ + /* _mesa_function_pool[18892]: GetSeparableFilter (offset 359) */ "iiippp\0" "glGetSeparableFilter\0" "glGetSeparableFilterEXT\0" "\0" - /* _mesa_function_pool[18938]: Binormal3dEXT (dynamic) */ + /* _mesa_function_pool[18945]: Binormal3dEXT (dynamic) */ "ddd\0" "glBinormal3dEXT\0" "\0" - /* _mesa_function_pool[18959]: SpriteParameteriSGIX (dynamic) */ + /* _mesa_function_pool[18966]: SpriteParameteriSGIX (dynamic) */ "ii\0" "glSpriteParameteriSGIX\0" "\0" - /* _mesa_function_pool[18986]: RequestResidentProgramsNV (will be remapped) */ + /* _mesa_function_pool[18993]: RequestResidentProgramsNV (will be remapped) */ "ip\0" "glRequestResidentProgramsNV\0" "\0" - /* _mesa_function_pool[19018]: TagSampleBufferSGIX (dynamic) */ + /* _mesa_function_pool[19025]: TagSampleBufferSGIX (dynamic) */ "\0" "glTagSampleBufferSGIX\0" "\0" - /* _mesa_function_pool[19042]: TransformFeedbackVaryingsEXT (will be remapped) */ + /* _mesa_function_pool[19049]: TransformFeedbackVaryingsEXT (will be remapped) */ "iipi\0" "glTransformFeedbackVaryingsEXT\0" "glTransformFeedbackVaryings\0" "\0" - /* _mesa_function_pool[19107]: FeedbackBuffer (offset 194) */ + /* _mesa_function_pool[19114]: FeedbackBuffer (offset 194) */ "iip\0" "glFeedbackBuffer\0" "\0" - /* _mesa_function_pool[19129]: RasterPos2iv (offset 67) */ + /* _mesa_function_pool[19136]: RasterPos2iv (offset 67) */ "p\0" "glRasterPos2iv\0" "\0" - /* _mesa_function_pool[19147]: TexImage1D (offset 182) */ + /* _mesa_function_pool[19154]: TexImage1D (offset 182) */ "iiiiiiip\0" "glTexImage1D\0" "\0" - /* _mesa_function_pool[19170]: ListParameterivSGIX (dynamic) */ + /* _mesa_function_pool[19177]: ListParameterivSGIX (dynamic) */ "iip\0" "glListParameterivSGIX\0" "\0" - /* _mesa_function_pool[19197]: MultiDrawElementsEXT (will be remapped) */ + /* _mesa_function_pool[19204]: MultiDrawElementsEXT (will be remapped) */ "ipipi\0" "glMultiDrawElements\0" "glMultiDrawElementsEXT\0" "\0" - /* _mesa_function_pool[19247]: Color3s (offset 17) */ + /* _mesa_function_pool[19254]: Color3s (offset 17) */ "iii\0" "glColor3s\0" "\0" - /* _mesa_function_pool[19262]: Uniform1ivARB (will be remapped) */ + /* _mesa_function_pool[19269]: Uniform1ivARB (will be remapped) */ "iip\0" "glUniform1iv\0" "glUniform1ivARB\0" "\0" - /* _mesa_function_pool[19296]: WindowPos2sMESA (will be remapped) */ + /* _mesa_function_pool[19303]: WindowPos2sMESA (will be remapped) */ "ii\0" "glWindowPos2s\0" "glWindowPos2sARB\0" "glWindowPos2sMESA\0" "\0" - /* _mesa_function_pool[19349]: WeightusvARB (dynamic) */ + /* _mesa_function_pool[19356]: WeightusvARB (dynamic) */ "ip\0" "glWeightusvARB\0" "\0" - /* _mesa_function_pool[19368]: TexCoordPointer (offset 320) */ + /* _mesa_function_pool[19375]: TexCoordPointer (offset 320) */ "iiip\0" "glTexCoordPointer\0" "\0" - /* _mesa_function_pool[19392]: FogCoordPointerEXT (will be remapped) */ + /* _mesa_function_pool[19399]: FogCoordPointerEXT (will be remapped) */ "iip\0" "glFogCoordPointer\0" "glFogCoordPointerEXT\0" "\0" - /* _mesa_function_pool[19436]: IndexMaterialEXT (dynamic) */ + /* _mesa_function_pool[19443]: IndexMaterialEXT (dynamic) */ "ii\0" "glIndexMaterialEXT\0" "\0" - /* _mesa_function_pool[19459]: Color3i (offset 15) */ + /* _mesa_function_pool[19466]: Color3i (offset 15) */ "iii\0" "glColor3i\0" "\0" - /* _mesa_function_pool[19474]: FrontFace (offset 157) */ + /* _mesa_function_pool[19481]: FrontFace (offset 157) */ "i\0" "glFrontFace\0" "\0" - /* _mesa_function_pool[19489]: EvalCoord2d (offset 232) */ + /* _mesa_function_pool[19496]: EvalCoord2d (offset 232) */ "dd\0" "glEvalCoord2d\0" "\0" - /* _mesa_function_pool[19507]: SecondaryColor3ubvEXT (will be remapped) */ + /* _mesa_function_pool[19514]: SecondaryColor3ubvEXT (will be remapped) */ "p\0" "glSecondaryColor3ubv\0" "glSecondaryColor3ubvEXT\0" "\0" - /* _mesa_function_pool[19555]: EvalCoord2f (offset 234) */ + /* _mesa_function_pool[19562]: EvalCoord2f (offset 234) */ "ff\0" "glEvalCoord2f\0" "\0" - /* _mesa_function_pool[19573]: VertexAttrib4dvARB (will be remapped) */ + /* _mesa_function_pool[19580]: VertexAttrib4dvARB (will be remapped) */ "ip\0" "glVertexAttrib4dv\0" "glVertexAttrib4dvARB\0" "\0" - /* _mesa_function_pool[19616]: BindAttribLocationARB (will be remapped) */ + /* _mesa_function_pool[19623]: BindAttribLocationARB (will be remapped) */ "iip\0" "glBindAttribLocation\0" "glBindAttribLocationARB\0" "\0" - /* _mesa_function_pool[19666]: Color3b (offset 9) */ + /* _mesa_function_pool[19673]: Color3b (offset 9) */ "iii\0" "glColor3b\0" "\0" - /* _mesa_function_pool[19681]: MultiTexCoord2dARB (offset 384) */ + /* _mesa_function_pool[19688]: MultiTexCoord2dARB (offset 384) */ "idd\0" "glMultiTexCoord2d\0" "glMultiTexCoord2dARB\0" "\0" - /* _mesa_function_pool[19725]: ExecuteProgramNV (will be remapped) */ + /* _mesa_function_pool[19732]: ExecuteProgramNV (will be remapped) */ "iip\0" "glExecuteProgramNV\0" "\0" - /* _mesa_function_pool[19749]: Color3f (offset 13) */ + /* _mesa_function_pool[19756]: Color3f (offset 13) */ "fff\0" "glColor3f\0" "\0" - /* _mesa_function_pool[19764]: LightEnviSGIX (dynamic) */ + /* _mesa_function_pool[19771]: LightEnviSGIX (dynamic) */ "ii\0" "glLightEnviSGIX\0" "\0" - /* _mesa_function_pool[19784]: Color3d (offset 11) */ + /* _mesa_function_pool[19791]: Color3d (offset 11) */ "ddd\0" "glColor3d\0" "\0" - /* _mesa_function_pool[19799]: Normal3dv (offset 55) */ + /* _mesa_function_pool[19806]: Normal3dv (offset 55) */ "p\0" "glNormal3dv\0" "\0" - /* _mesa_function_pool[19814]: Lightf (offset 159) */ + /* _mesa_function_pool[19821]: Lightf (offset 159) */ "iif\0" "glLightf\0" "\0" - /* _mesa_function_pool[19828]: ReplacementCodeuiSUN (dynamic) */ + /* _mesa_function_pool[19835]: ReplacementCodeuiSUN (dynamic) */ "i\0" "glReplacementCodeuiSUN\0" "\0" - /* _mesa_function_pool[19854]: MatrixMode (offset 293) */ + /* _mesa_function_pool[19861]: MatrixMode (offset 293) */ "i\0" "glMatrixMode\0" "\0" - /* _mesa_function_pool[19870]: GetPixelMapusv (offset 273) */ + /* _mesa_function_pool[19877]: GetPixelMapusv (offset 273) */ "ip\0" "glGetPixelMapusv\0" "\0" - /* _mesa_function_pool[19891]: Lighti (offset 161) */ + /* _mesa_function_pool[19898]: Lighti (offset 161) */ "iii\0" "glLighti\0" "\0" - /* _mesa_function_pool[19905]: VertexAttribPointerNV (will be remapped) */ + /* _mesa_function_pool[19912]: VertexAttribPointerNV (will be remapped) */ "iiiip\0" "glVertexAttribPointerNV\0" "\0" - /* _mesa_function_pool[19936]: ProgramLocalParameters4fvEXT (will be remapped) */ + /* _mesa_function_pool[19943]: ProgramLocalParameters4fvEXT (will be remapped) */ "iiip\0" "glProgramLocalParameters4fvEXT\0" "\0" - /* _mesa_function_pool[19973]: GetBooleanIndexedvEXT (will be remapped) */ + /* _mesa_function_pool[19980]: GetBooleanIndexedvEXT (will be remapped) */ "iip\0" "glGetBooleanIndexedvEXT\0" "\0" - /* _mesa_function_pool[20002]: GetFramebufferAttachmentParameterivEXT (will be remapped) */ + /* _mesa_function_pool[20009]: GetFramebufferAttachmentParameterivEXT (will be remapped) */ "iiip\0" "glGetFramebufferAttachmentParameteriv\0" "glGetFramebufferAttachmentParameterivEXT\0" "\0" - /* _mesa_function_pool[20087]: PixelTransformParameterfEXT (dynamic) */ + /* _mesa_function_pool[20094]: PixelTransformParameterfEXT (dynamic) */ "iif\0" "glPixelTransformParameterfEXT\0" "\0" - /* _mesa_function_pool[20122]: MultiTexCoord4dvARB (offset 401) */ + /* _mesa_function_pool[20129]: MultiTexCoord4dvARB (offset 401) */ "ip\0" "glMultiTexCoord4dv\0" "glMultiTexCoord4dvARB\0" "\0" - /* _mesa_function_pool[20167]: PixelTransformParameteriEXT (dynamic) */ + /* _mesa_function_pool[20174]: PixelTransformParameteriEXT (dynamic) */ "iii\0" "glPixelTransformParameteriEXT\0" "\0" - /* _mesa_function_pool[20202]: GetDoublev (offset 260) */ + /* _mesa_function_pool[20209]: GetDoublev (offset 260) */ "ip\0" "glGetDoublev\0" "\0" - /* _mesa_function_pool[20219]: MultMatrixd (offset 295) */ + /* _mesa_function_pool[20226]: MultMatrixd (offset 295) */ "p\0" "glMultMatrixd\0" "\0" - /* _mesa_function_pool[20236]: MultMatrixf (offset 294) */ + /* _mesa_function_pool[20243]: MultMatrixf (offset 294) */ "p\0" "glMultMatrixf\0" "\0" - /* _mesa_function_pool[20253]: TexCoord2fColor4ubVertex3fSUN (dynamic) */ + /* _mesa_function_pool[20260]: TexCoord2fColor4ubVertex3fSUN (dynamic) */ "ffiiiifff\0" "glTexCoord2fColor4ubVertex3fSUN\0" "\0" - /* _mesa_function_pool[20296]: Uniform1iARB (will be remapped) */ + /* _mesa_function_pool[20303]: Uniform1iARB (will be remapped) */ "ii\0" "glUniform1i\0" "glUniform1iARB\0" "\0" - /* _mesa_function_pool[20327]: VertexAttribPointerARB (will be remapped) */ + /* _mesa_function_pool[20334]: VertexAttribPointerARB (will be remapped) */ "iiiiip\0" "glVertexAttribPointer\0" "glVertexAttribPointerARB\0" "\0" - /* _mesa_function_pool[20382]: VertexAttrib3sNV (will be remapped) */ + /* _mesa_function_pool[20389]: VertexAttrib3sNV (will be remapped) */ "iiii\0" "glVertexAttrib3sNV\0" "\0" - /* _mesa_function_pool[20407]: SharpenTexFuncSGIS (dynamic) */ + /* _mesa_function_pool[20414]: SharpenTexFuncSGIS (dynamic) */ "iip\0" "glSharpenTexFuncSGIS\0" "\0" - /* _mesa_function_pool[20433]: MultiTexCoord4fvARB (offset 403) */ + /* _mesa_function_pool[20440]: MultiTexCoord4fvARB (offset 403) */ "ip\0" "glMultiTexCoord4fv\0" "glMultiTexCoord4fvARB\0" "\0" - /* _mesa_function_pool[20478]: UniformMatrix2x3fv (will be remapped) */ + /* _mesa_function_pool[20485]: UniformMatrix2x3fv (will be remapped) */ "iiip\0" "glUniformMatrix2x3fv\0" "\0" - /* _mesa_function_pool[20505]: TrackMatrixNV (will be remapped) */ + /* _mesa_function_pool[20512]: TrackMatrixNV (will be remapped) */ "iiii\0" "glTrackMatrixNV\0" "\0" - /* _mesa_function_pool[20527]: CombinerParameteriNV (will be remapped) */ + /* _mesa_function_pool[20534]: CombinerParameteriNV (will be remapped) */ "ii\0" "glCombinerParameteriNV\0" "\0" - /* _mesa_function_pool[20554]: DeleteAsyncMarkersSGIX (dynamic) */ + /* _mesa_function_pool[20561]: DeleteAsyncMarkersSGIX (dynamic) */ "ii\0" "glDeleteAsyncMarkersSGIX\0" "\0" - /* _mesa_function_pool[20583]: ReplacementCodeusSUN (dynamic) */ + /* _mesa_function_pool[20590]: ReplacementCodeusSUN (dynamic) */ "i\0" "glReplacementCodeusSUN\0" "\0" - /* _mesa_function_pool[20609]: IsAsyncMarkerSGIX (dynamic) */ + /* _mesa_function_pool[20616]: IsAsyncMarkerSGIX (dynamic) */ "i\0" "glIsAsyncMarkerSGIX\0" "\0" - /* _mesa_function_pool[20632]: FrameZoomSGIX (dynamic) */ + /* _mesa_function_pool[20639]: FrameZoomSGIX (dynamic) */ "i\0" "glFrameZoomSGIX\0" "\0" - /* _mesa_function_pool[20651]: Normal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[20658]: Normal3fVertex3fvSUN (dynamic) */ "pp\0" "glNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[20678]: RasterPos4sv (offset 85) */ + /* _mesa_function_pool[20685]: RasterPos4sv (offset 85) */ "p\0" "glRasterPos4sv\0" "\0" - /* _mesa_function_pool[20696]: VertexAttrib4NsvARB (will be remapped) */ + /* _mesa_function_pool[20703]: VertexAttrib4NsvARB (will be remapped) */ "ip\0" "glVertexAttrib4Nsv\0" "glVertexAttrib4NsvARB\0" "\0" - /* _mesa_function_pool[20741]: VertexAttrib3fvARB (will be remapped) */ + /* _mesa_function_pool[20748]: VertexAttrib3fvARB (will be remapped) */ "ip\0" "glVertexAttrib3fv\0" "glVertexAttrib3fvARB\0" "\0" - /* _mesa_function_pool[20784]: ClearColor (offset 206) */ + /* _mesa_function_pool[20791]: ClearColor (offset 206) */ "ffff\0" "glClearColor\0" "\0" - /* _mesa_function_pool[20803]: GetSynciv (will be remapped) */ + /* _mesa_function_pool[20810]: GetSynciv (will be remapped) */ "iiipp\0" "glGetSynciv\0" "\0" - /* _mesa_function_pool[20822]: DeleteFramebuffersEXT (will be remapped) */ + /* _mesa_function_pool[20829]: DeleteFramebuffersEXT (will be remapped) */ "ip\0" "glDeleteFramebuffers\0" "glDeleteFramebuffersEXT\0" "\0" - /* _mesa_function_pool[20871]: GlobalAlphaFactorsSUN (dynamic) */ + /* _mesa_function_pool[20878]: GlobalAlphaFactorsSUN (dynamic) */ "i\0" "glGlobalAlphaFactorsSUN\0" "\0" - /* _mesa_function_pool[20898]: IsEnabledIndexedEXT (will be remapped) */ + /* _mesa_function_pool[20905]: IsEnabledIndexedEXT (will be remapped) */ "ii\0" "glIsEnabledIndexedEXT\0" "\0" - /* _mesa_function_pool[20924]: TexEnviv (offset 187) */ + /* _mesa_function_pool[20931]: TexEnviv (offset 187) */ "iip\0" "glTexEnviv\0" "\0" - /* _mesa_function_pool[20940]: TexSubImage3D (offset 372) */ + /* _mesa_function_pool[20947]: TexSubImage3D (offset 372) */ "iiiiiiiiiip\0" "glTexSubImage3D\0" "glTexSubImage3DEXT\0" "\0" - /* _mesa_function_pool[20988]: Tangent3fEXT (dynamic) */ + /* _mesa_function_pool[20995]: Tangent3fEXT (dynamic) */ "fff\0" "glTangent3fEXT\0" "\0" - /* _mesa_function_pool[21008]: SecondaryColor3uivEXT (will be remapped) */ + /* _mesa_function_pool[21015]: SecondaryColor3uivEXT (will be remapped) */ "p\0" "glSecondaryColor3uiv\0" "glSecondaryColor3uivEXT\0" "\0" - /* _mesa_function_pool[21056]: MatrixIndexubvARB (dynamic) */ + /* _mesa_function_pool[21063]: MatrixIndexubvARB (dynamic) */ "ip\0" "glMatrixIndexubvARB\0" "\0" - /* _mesa_function_pool[21080]: Color4fNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[21087]: Color4fNormal3fVertex3fSUN (dynamic) */ "ffffffffff\0" "glColor4fNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[21121]: PixelTexGenParameterfSGIS (will be remapped) */ + /* _mesa_function_pool[21128]: PixelTexGenParameterfSGIS (will be remapped) */ "if\0" "glPixelTexGenParameterfSGIS\0" "\0" - /* _mesa_function_pool[21153]: CreateShader (will be remapped) */ + /* _mesa_function_pool[21160]: CreateShader (will be remapped) */ "i\0" "glCreateShader\0" "\0" - /* _mesa_function_pool[21171]: GetColorTableParameterfv (offset 344) */ + /* _mesa_function_pool[21178]: GetColorTableParameterfv (offset 344) */ "iip\0" "glGetColorTableParameterfv\0" "glGetColorTableParameterfvSGI\0" "glGetColorTableParameterfvEXT\0" "\0" - /* _mesa_function_pool[21263]: FragmentLightModelfvSGIX (dynamic) */ + /* _mesa_function_pool[21270]: FragmentLightModelfvSGIX (dynamic) */ "ip\0" "glFragmentLightModelfvSGIX\0" "\0" - /* _mesa_function_pool[21294]: Bitmap (offset 8) */ + /* _mesa_function_pool[21301]: Bitmap (offset 8) */ "iiffffp\0" "glBitmap\0" "\0" - /* _mesa_function_pool[21312]: MultiTexCoord3fARB (offset 394) */ + /* _mesa_function_pool[21319]: MultiTexCoord3fARB (offset 394) */ "ifff\0" "glMultiTexCoord3f\0" "glMultiTexCoord3fARB\0" "\0" - /* _mesa_function_pool[21357]: GetTexLevelParameterfv (offset 284) */ + /* _mesa_function_pool[21364]: GetTexLevelParameterfv (offset 284) */ "iiip\0" "glGetTexLevelParameterfv\0" "\0" - /* _mesa_function_pool[21388]: GetPixelTexGenParameterfvSGIS (will be remapped) */ + /* _mesa_function_pool[21395]: GetPixelTexGenParameterfvSGIS (will be remapped) */ "ip\0" "glGetPixelTexGenParameterfvSGIS\0" "\0" - /* _mesa_function_pool[21424]: GenFramebuffersEXT (will be remapped) */ + /* _mesa_function_pool[21431]: GenFramebuffersEXT (will be remapped) */ "ip\0" "glGenFramebuffers\0" "glGenFramebuffersEXT\0" "\0" - /* _mesa_function_pool[21467]: GetProgramParameterdvNV (will be remapped) */ + /* _mesa_function_pool[21474]: GetProgramParameterdvNV (will be remapped) */ "iiip\0" "glGetProgramParameterdvNV\0" "\0" - /* _mesa_function_pool[21499]: Vertex2sv (offset 133) */ + /* _mesa_function_pool[21506]: Vertex2sv (offset 133) */ "p\0" "glVertex2sv\0" "\0" - /* _mesa_function_pool[21514]: GetIntegerv (offset 263) */ + /* _mesa_function_pool[21521]: GetIntegerv (offset 263) */ "ip\0" "glGetIntegerv\0" "\0" - /* _mesa_function_pool[21532]: IsVertexArrayAPPLE (will be remapped) */ + /* _mesa_function_pool[21539]: IsVertexArrayAPPLE (will be remapped) */ "i\0" "glIsVertexArray\0" "glIsVertexArrayAPPLE\0" "\0" - /* _mesa_function_pool[21572]: FragmentLightfvSGIX (dynamic) */ + /* _mesa_function_pool[21579]: FragmentLightfvSGIX (dynamic) */ "iip\0" "glFragmentLightfvSGIX\0" "\0" - /* _mesa_function_pool[21599]: DetachShader (will be remapped) */ + /* _mesa_function_pool[21606]: DetachShader (will be remapped) */ "ii\0" "glDetachShader\0" "\0" - /* _mesa_function_pool[21618]: VertexAttrib4NubARB (will be remapped) */ + /* _mesa_function_pool[21625]: VertexAttrib4NubARB (will be remapped) */ "iiiii\0" "glVertexAttrib4Nub\0" "glVertexAttrib4NubARB\0" "\0" - /* _mesa_function_pool[21666]: GetProgramEnvParameterfvARB (will be remapped) */ + /* _mesa_function_pool[21673]: GetProgramEnvParameterfvARB (will be remapped) */ "iip\0" "glGetProgramEnvParameterfvARB\0" "\0" - /* _mesa_function_pool[21701]: GetTrackMatrixivNV (will be remapped) */ + /* _mesa_function_pool[21708]: GetTrackMatrixivNV (will be remapped) */ "iiip\0" "glGetTrackMatrixivNV\0" "\0" - /* _mesa_function_pool[21728]: VertexAttrib3svNV (will be remapped) */ + /* _mesa_function_pool[21735]: VertexAttrib3svNV (will be remapped) */ "ip\0" "glVertexAttrib3svNV\0" "\0" - /* _mesa_function_pool[21752]: Uniform4fvARB (will be remapped) */ + /* _mesa_function_pool[21759]: Uniform4fvARB (will be remapped) */ "iip\0" "glUniform4fv\0" "glUniform4fvARB\0" "\0" - /* _mesa_function_pool[21786]: MultTransposeMatrixfARB (will be remapped) */ + /* _mesa_function_pool[21793]: MultTransposeMatrixfARB (will be remapped) */ "p\0" "glMultTransposeMatrixf\0" "glMultTransposeMatrixfARB\0" "\0" - /* _mesa_function_pool[21838]: GetTexEnviv (offset 277) */ + /* _mesa_function_pool[21845]: GetTexEnviv (offset 277) */ "iip\0" "glGetTexEnviv\0" "\0" - /* _mesa_function_pool[21857]: ColorFragmentOp1ATI (will be remapped) */ + /* _mesa_function_pool[21864]: ColorFragmentOp1ATI (will be remapped) */ "iiiiiii\0" "glColorFragmentOp1ATI\0" "\0" - /* _mesa_function_pool[21888]: GetUniformfvARB (will be remapped) */ + /* _mesa_function_pool[21895]: GetUniformfvARB (will be remapped) */ "iip\0" "glGetUniformfv\0" "glGetUniformfvARB\0" "\0" - /* _mesa_function_pool[21926]: EGLImageTargetRenderbufferStorageOES (will be remapped) */ + /* _mesa_function_pool[21933]: EGLImageTargetRenderbufferStorageOES (will be remapped) */ "ip\0" "glEGLImageTargetRenderbufferStorageOES\0" "\0" - /* _mesa_function_pool[21969]: PopClientAttrib (offset 334) */ + /* _mesa_function_pool[21976]: PopClientAttrib (offset 334) */ "\0" "glPopClientAttrib\0" "\0" - /* _mesa_function_pool[21989]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[21996]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */ "iffffffffffff\0" "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[22060]: DetachObjectARB (will be remapped) */ + /* _mesa_function_pool[22067]: DetachObjectARB (will be remapped) */ "ii\0" "glDetachObjectARB\0" "\0" - /* _mesa_function_pool[22082]: VertexBlendARB (dynamic) */ + /* _mesa_function_pool[22089]: VertexBlendARB (dynamic) */ "i\0" "glVertexBlendARB\0" "\0" - /* _mesa_function_pool[22102]: WindowPos3iMESA (will be remapped) */ + /* _mesa_function_pool[22109]: WindowPos3iMESA (will be remapped) */ "iii\0" "glWindowPos3i\0" "glWindowPos3iARB\0" "glWindowPos3iMESA\0" "\0" - /* _mesa_function_pool[22156]: SeparableFilter2D (offset 360) */ + /* _mesa_function_pool[22163]: SeparableFilter2D (offset 360) */ "iiiiiipp\0" "glSeparableFilter2D\0" "glSeparableFilter2DEXT\0" "\0" - /* _mesa_function_pool[22209]: ProgramParameteriARB (will be remapped) */ + /* _mesa_function_pool[22216]: ProgramParameteriARB (will be remapped) */ "iii\0" "glProgramParameteriARB\0" "\0" - /* _mesa_function_pool[22237]: Map1d (offset 220) */ + /* _mesa_function_pool[22244]: Map1d (offset 220) */ "iddiip\0" "glMap1d\0" "\0" - /* _mesa_function_pool[22253]: Map1f (offset 221) */ + /* _mesa_function_pool[22260]: Map1f (offset 221) */ "iffiip\0" "glMap1f\0" "\0" - /* _mesa_function_pool[22269]: CompressedTexImage2DARB (will be remapped) */ + /* _mesa_function_pool[22276]: CompressedTexImage2DARB (will be remapped) */ "iiiiiiip\0" "glCompressedTexImage2D\0" "glCompressedTexImage2DARB\0" "\0" - /* _mesa_function_pool[22328]: ArrayElement (offset 306) */ + /* _mesa_function_pool[22335]: ArrayElement (offset 306) */ "i\0" "glArrayElement\0" "glArrayElementEXT\0" "\0" - /* _mesa_function_pool[22364]: TexImage2D (offset 183) */ + /* _mesa_function_pool[22371]: TexImage2D (offset 183) */ "iiiiiiiip\0" "glTexImage2D\0" "\0" - /* _mesa_function_pool[22388]: DepthBoundsEXT (will be remapped) */ + /* _mesa_function_pool[22395]: DepthBoundsEXT (will be remapped) */ "dd\0" "glDepthBoundsEXT\0" "\0" - /* _mesa_function_pool[22409]: ProgramParameters4fvNV (will be remapped) */ + /* _mesa_function_pool[22416]: ProgramParameters4fvNV (will be remapped) */ "iiip\0" "glProgramParameters4fvNV\0" "\0" - /* _mesa_function_pool[22440]: DeformationMap3fSGIX (dynamic) */ + /* _mesa_function_pool[22447]: DeformationMap3fSGIX (dynamic) */ "iffiiffiiffiip\0" "glDeformationMap3fSGIX\0" "\0" - /* _mesa_function_pool[22479]: GetProgramivNV (will be remapped) */ + /* _mesa_function_pool[22486]: GetProgramivNV (will be remapped) */ "iip\0" "glGetProgramivNV\0" "\0" - /* _mesa_function_pool[22501]: GetMinmaxParameteriv (offset 366) */ + /* _mesa_function_pool[22508]: GetMinmaxParameteriv (offset 366) */ "iip\0" "glGetMinmaxParameteriv\0" "glGetMinmaxParameterivEXT\0" "\0" - /* _mesa_function_pool[22555]: PixelTransferf (offset 247) */ + /* _mesa_function_pool[22562]: PixelTransferf (offset 247) */ "if\0" "glPixelTransferf\0" "\0" - /* _mesa_function_pool[22576]: CopyTexImage1D (offset 323) */ + /* _mesa_function_pool[22583]: CopyTexImage1D (offset 323) */ "iiiiiii\0" "glCopyTexImage1D\0" "glCopyTexImage1DEXT\0" "\0" - /* _mesa_function_pool[22622]: PushMatrix (offset 298) */ + /* _mesa_function_pool[22629]: PushMatrix (offset 298) */ "\0" "glPushMatrix\0" "\0" - /* _mesa_function_pool[22637]: Fogiv (offset 156) */ + /* _mesa_function_pool[22644]: Fogiv (offset 156) */ "ip\0" "glFogiv\0" "\0" - /* _mesa_function_pool[22649]: TexCoord1dv (offset 95) */ + /* _mesa_function_pool[22656]: TexCoord1dv (offset 95) */ "p\0" "glTexCoord1dv\0" "\0" - /* _mesa_function_pool[22666]: AlphaFragmentOp3ATI (will be remapped) */ + /* _mesa_function_pool[22673]: AlphaFragmentOp3ATI (will be remapped) */ "iiiiiiiiiiii\0" "glAlphaFragmentOp3ATI\0" "\0" - /* _mesa_function_pool[22702]: PixelTransferi (offset 248) */ + /* _mesa_function_pool[22709]: PixelTransferi (offset 248) */ "ii\0" "glPixelTransferi\0" "\0" - /* _mesa_function_pool[22723]: GetVertexAttribdvNV (will be remapped) */ + /* _mesa_function_pool[22730]: GetVertexAttribdvNV (will be remapped) */ "iip\0" "glGetVertexAttribdvNV\0" "\0" - /* _mesa_function_pool[22750]: VertexAttrib3fvNV (will be remapped) */ + /* _mesa_function_pool[22757]: VertexAttrib3fvNV (will be remapped) */ "ip\0" "glVertexAttrib3fvNV\0" "\0" - /* _mesa_function_pool[22774]: Rotatef (offset 300) */ + /* _mesa_function_pool[22781]: Rotatef (offset 300) */ "ffff\0" "glRotatef\0" "\0" - /* _mesa_function_pool[22790]: GetFinalCombinerInputParameterivNV (will be remapped) */ + /* _mesa_function_pool[22797]: GetFinalCombinerInputParameterivNV (will be remapped) */ "iip\0" "glGetFinalCombinerInputParameterivNV\0" "\0" - /* _mesa_function_pool[22832]: Vertex3i (offset 138) */ + /* _mesa_function_pool[22839]: Vertex3i (offset 138) */ "iii\0" "glVertex3i\0" "\0" - /* _mesa_function_pool[22848]: Vertex3f (offset 136) */ + /* _mesa_function_pool[22855]: Vertex3f (offset 136) */ "fff\0" "glVertex3f\0" "\0" - /* _mesa_function_pool[22864]: Clear (offset 203) */ + /* _mesa_function_pool[22871]: Clear (offset 203) */ "i\0" "glClear\0" "\0" - /* _mesa_function_pool[22875]: Vertex3d (offset 134) */ + /* _mesa_function_pool[22882]: Vertex3d (offset 134) */ "ddd\0" "glVertex3d\0" "\0" - /* _mesa_function_pool[22891]: GetMapParameterivNV (dynamic) */ + /* _mesa_function_pool[22898]: GetMapParameterivNV (dynamic) */ "iip\0" "glGetMapParameterivNV\0" "\0" - /* _mesa_function_pool[22918]: Uniform4iARB (will be remapped) */ + /* _mesa_function_pool[22925]: Uniform4iARB (will be remapped) */ "iiiii\0" "glUniform4i\0" "glUniform4iARB\0" "\0" - /* _mesa_function_pool[22952]: ReadBuffer (offset 254) */ + /* _mesa_function_pool[22959]: ReadBuffer (offset 254) */ "i\0" "glReadBuffer\0" "\0" - /* _mesa_function_pool[22968]: ConvolutionParameteri (offset 352) */ + /* _mesa_function_pool[22975]: ConvolutionParameteri (offset 352) */ "iii\0" "glConvolutionParameteri\0" "glConvolutionParameteriEXT\0" "\0" - /* _mesa_function_pool[23024]: Ortho (offset 296) */ + /* _mesa_function_pool[23031]: Ortho (offset 296) */ "dddddd\0" "glOrtho\0" "\0" - /* _mesa_function_pool[23040]: Binormal3sEXT (dynamic) */ + /* _mesa_function_pool[23047]: Binormal3sEXT (dynamic) */ "iii\0" "glBinormal3sEXT\0" "\0" - /* _mesa_function_pool[23061]: ListBase (offset 6) */ + /* _mesa_function_pool[23068]: ListBase (offset 6) */ "i\0" "glListBase\0" "\0" - /* _mesa_function_pool[23075]: Vertex3s (offset 140) */ + /* _mesa_function_pool[23082]: Vertex3s (offset 140) */ "iii\0" "glVertex3s\0" "\0" - /* _mesa_function_pool[23091]: ConvolutionParameterf (offset 350) */ + /* _mesa_function_pool[23098]: ConvolutionParameterf (offset 350) */ "iif\0" "glConvolutionParameterf\0" "glConvolutionParameterfEXT\0" "\0" - /* _mesa_function_pool[23147]: GetColorTableParameteriv (offset 345) */ + /* _mesa_function_pool[23154]: GetColorTableParameteriv (offset 345) */ "iip\0" "glGetColorTableParameteriv\0" "glGetColorTableParameterivSGI\0" "glGetColorTableParameterivEXT\0" "\0" - /* _mesa_function_pool[23239]: ProgramEnvParameter4dvARB (will be remapped) */ + /* _mesa_function_pool[23246]: ProgramEnvParameter4dvARB (will be remapped) */ "iip\0" "glProgramEnvParameter4dvARB\0" "glProgramParameter4dvNV\0" "\0" - /* _mesa_function_pool[23296]: ShadeModel (offset 177) */ + /* _mesa_function_pool[23303]: ShadeModel (offset 177) */ "i\0" "glShadeModel\0" "\0" - /* _mesa_function_pool[23312]: VertexAttribs2fvNV (will be remapped) */ + /* _mesa_function_pool[23319]: VertexAttribs2fvNV (will be remapped) */ "iip\0" "glVertexAttribs2fvNV\0" "\0" - /* _mesa_function_pool[23338]: Rectiv (offset 91) */ + /* _mesa_function_pool[23345]: Rectiv (offset 91) */ "pp\0" "glRectiv\0" "\0" - /* _mesa_function_pool[23351]: UseProgramObjectARB (will be remapped) */ + /* _mesa_function_pool[23358]: UseProgramObjectARB (will be remapped) */ "i\0" "glUseProgram\0" "glUseProgramObjectARB\0" "\0" - /* _mesa_function_pool[23389]: GetMapParameterfvNV (dynamic) */ + /* _mesa_function_pool[23396]: GetMapParameterfvNV (dynamic) */ "iip\0" "glGetMapParameterfvNV\0" "\0" - /* _mesa_function_pool[23416]: EndConditionalRenderNV (will be remapped) */ + /* _mesa_function_pool[23423]: EndConditionalRenderNV (will be remapped) */ "\0" "glEndConditionalRenderNV\0" "\0" - /* _mesa_function_pool[23443]: PassTexCoordATI (will be remapped) */ + /* _mesa_function_pool[23450]: PassTexCoordATI (will be remapped) */ "iii\0" "glPassTexCoordATI\0" "\0" - /* _mesa_function_pool[23466]: DeleteProgram (will be remapped) */ + /* _mesa_function_pool[23473]: DeleteProgram (will be remapped) */ "i\0" "glDeleteProgram\0" "\0" - /* _mesa_function_pool[23485]: Tangent3ivEXT (dynamic) */ + /* _mesa_function_pool[23492]: Tangent3ivEXT (dynamic) */ "p\0" "glTangent3ivEXT\0" "\0" - /* _mesa_function_pool[23504]: Tangent3dEXT (dynamic) */ + /* _mesa_function_pool[23511]: Tangent3dEXT (dynamic) */ "ddd\0" "glTangent3dEXT\0" "\0" - /* _mesa_function_pool[23524]: SecondaryColor3dvEXT (will be remapped) */ + /* _mesa_function_pool[23531]: SecondaryColor3dvEXT (will be remapped) */ "p\0" "glSecondaryColor3dv\0" "glSecondaryColor3dvEXT\0" "\0" - /* _mesa_function_pool[23570]: Vertex2fv (offset 129) */ + /* _mesa_function_pool[23577]: Vertex2fv (offset 129) */ "p\0" "glVertex2fv\0" "\0" - /* _mesa_function_pool[23585]: MultiDrawArraysEXT (will be remapped) */ + /* _mesa_function_pool[23592]: MultiDrawArraysEXT (will be remapped) */ "ippi\0" "glMultiDrawArrays\0" "glMultiDrawArraysEXT\0" "\0" - /* _mesa_function_pool[23630]: BindRenderbufferEXT (will be remapped) */ + /* _mesa_function_pool[23637]: BindRenderbufferEXT (will be remapped) */ "ii\0" "glBindRenderbuffer\0" "glBindRenderbufferEXT\0" "\0" - /* _mesa_function_pool[23675]: MultiTexCoord4dARB (offset 400) */ + /* _mesa_function_pool[23682]: MultiTexCoord4dARB (offset 400) */ "idddd\0" "glMultiTexCoord4d\0" "glMultiTexCoord4dARB\0" "\0" - /* _mesa_function_pool[23721]: FramebufferTextureFaceARB (will be remapped) */ + /* _mesa_function_pool[23728]: FramebufferTextureFaceARB (will be remapped) */ "iiiii\0" "glFramebufferTextureFaceARB\0" "\0" - /* _mesa_function_pool[23756]: Vertex3sv (offset 141) */ + /* _mesa_function_pool[23763]: Vertex3sv (offset 141) */ "p\0" "glVertex3sv\0" "\0" - /* _mesa_function_pool[23771]: SecondaryColor3usEXT (will be remapped) */ + /* _mesa_function_pool[23778]: SecondaryColor3usEXT (will be remapped) */ "iii\0" "glSecondaryColor3us\0" "glSecondaryColor3usEXT\0" "\0" - /* _mesa_function_pool[23819]: ProgramLocalParameter4fvARB (will be remapped) */ + /* _mesa_function_pool[23826]: ProgramLocalParameter4fvARB (will be remapped) */ "iip\0" "glProgramLocalParameter4fvARB\0" "\0" - /* _mesa_function_pool[23854]: DeleteProgramsNV (will be remapped) */ + /* _mesa_function_pool[23861]: DeleteProgramsNV (will be remapped) */ "ip\0" "glDeleteProgramsARB\0" "glDeleteProgramsNV\0" "\0" - /* _mesa_function_pool[23897]: EvalMesh1 (offset 236) */ + /* _mesa_function_pool[23904]: EvalMesh1 (offset 236) */ "iii\0" "glEvalMesh1\0" "\0" - /* _mesa_function_pool[23914]: PauseTransformFeedback (will be remapped) */ + /* _mesa_function_pool[23921]: PauseTransformFeedback (will be remapped) */ "\0" "glPauseTransformFeedback\0" "\0" - /* _mesa_function_pool[23941]: MultiTexCoord1sARB (offset 382) */ + /* _mesa_function_pool[23948]: MultiTexCoord1sARB (offset 382) */ "ii\0" "glMultiTexCoord1s\0" "glMultiTexCoord1sARB\0" "\0" - /* _mesa_function_pool[23984]: ReplacementCodeuiColor3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[23991]: ReplacementCodeuiColor3fVertex3fSUN (dynamic) */ "iffffff\0" "glReplacementCodeuiColor3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[24031]: GetVertexAttribPointervNV (will be remapped) */ + /* _mesa_function_pool[24038]: GetVertexAttribPointervNV (will be remapped) */ "iip\0" "glGetVertexAttribPointerv\0" "glGetVertexAttribPointervARB\0" "glGetVertexAttribPointervNV\0" "\0" - /* _mesa_function_pool[24119]: VertexAttribs1fvNV (will be remapped) */ + /* _mesa_function_pool[24126]: VertexAttribs1fvNV (will be remapped) */ "iip\0" "glVertexAttribs1fvNV\0" "\0" - /* _mesa_function_pool[24145]: MultiTexCoord1dvARB (offset 377) */ + /* _mesa_function_pool[24152]: MultiTexCoord1dvARB (offset 377) */ "ip\0" "glMultiTexCoord1dv\0" "glMultiTexCoord1dvARB\0" "\0" - /* _mesa_function_pool[24190]: Uniform2iARB (will be remapped) */ + /* _mesa_function_pool[24197]: Uniform2iARB (will be remapped) */ "iii\0" "glUniform2i\0" "glUniform2iARB\0" "\0" - /* _mesa_function_pool[24222]: Vertex2iv (offset 131) */ + /* _mesa_function_pool[24229]: Vertex2iv (offset 131) */ "p\0" "glVertex2iv\0" "\0" - /* _mesa_function_pool[24237]: GetProgramStringNV (will be remapped) */ + /* _mesa_function_pool[24244]: GetProgramStringNV (will be remapped) */ "iip\0" "glGetProgramStringNV\0" "\0" - /* _mesa_function_pool[24263]: ColorPointerEXT (will be remapped) */ + /* _mesa_function_pool[24270]: ColorPointerEXT (will be remapped) */ "iiiip\0" "glColorPointerEXT\0" "\0" - /* _mesa_function_pool[24288]: LineWidth (offset 168) */ + /* _mesa_function_pool[24295]: LineWidth (offset 168) */ "f\0" "glLineWidth\0" "\0" - /* _mesa_function_pool[24303]: MapBufferARB (will be remapped) */ + /* _mesa_function_pool[24310]: MapBufferARB (will be remapped) */ "ii\0" "glMapBuffer\0" "glMapBufferARB\0" "\0" - /* _mesa_function_pool[24334]: MultiDrawElementsBaseVertex (will be remapped) */ + /* _mesa_function_pool[24341]: MultiDrawElementsBaseVertex (will be remapped) */ "ipipip\0" "glMultiDrawElementsBaseVertex\0" "\0" - /* _mesa_function_pool[24372]: Binormal3svEXT (dynamic) */ + /* _mesa_function_pool[24379]: Binormal3svEXT (dynamic) */ "p\0" "glBinormal3svEXT\0" "\0" - /* _mesa_function_pool[24392]: ApplyTextureEXT (dynamic) */ + /* _mesa_function_pool[24399]: ApplyTextureEXT (dynamic) */ "i\0" "glApplyTextureEXT\0" "\0" - /* _mesa_function_pool[24413]: TexGendv (offset 189) */ + /* _mesa_function_pool[24420]: TexGendv (offset 189) */ "iip\0" "glTexGendv\0" "\0" - /* _mesa_function_pool[24429]: EnableIndexedEXT (will be remapped) */ + /* _mesa_function_pool[24436]: EnableIndexedEXT (will be remapped) */ "ii\0" "glEnableIndexedEXT\0" "\0" - /* _mesa_function_pool[24452]: TextureMaterialEXT (dynamic) */ + /* _mesa_function_pool[24459]: TextureMaterialEXT (dynamic) */ "ii\0" "glTextureMaterialEXT\0" "\0" - /* _mesa_function_pool[24477]: TextureLightEXT (dynamic) */ + /* _mesa_function_pool[24484]: TextureLightEXT (dynamic) */ "i\0" "glTextureLightEXT\0" "\0" - /* _mesa_function_pool[24498]: ResetMinmax (offset 370) */ + /* _mesa_function_pool[24505]: ResetMinmax (offset 370) */ "i\0" "glResetMinmax\0" "glResetMinmaxEXT\0" "\0" - /* _mesa_function_pool[24532]: SpriteParameterfSGIX (dynamic) */ + /* _mesa_function_pool[24539]: SpriteParameterfSGIX (dynamic) */ "if\0" "glSpriteParameterfSGIX\0" "\0" - /* _mesa_function_pool[24559]: EnableClientState (offset 313) */ + /* _mesa_function_pool[24566]: EnableClientState (offset 313) */ "i\0" "glEnableClientState\0" "\0" - /* _mesa_function_pool[24582]: VertexAttrib4sNV (will be remapped) */ + /* _mesa_function_pool[24589]: VertexAttrib4sNV (will be remapped) */ "iiiii\0" "glVertexAttrib4sNV\0" "\0" - /* _mesa_function_pool[24608]: GetConvolutionParameterfv (offset 357) */ + /* _mesa_function_pool[24615]: GetConvolutionParameterfv (offset 357) */ "iip\0" "glGetConvolutionParameterfv\0" "glGetConvolutionParameterfvEXT\0" "\0" - /* _mesa_function_pool[24672]: VertexAttribs4dvNV (will be remapped) */ + /* _mesa_function_pool[24679]: VertexAttribs4dvNV (will be remapped) */ "iip\0" "glVertexAttribs4dvNV\0" "\0" - /* _mesa_function_pool[24698]: VertexAttrib4dARB (will be remapped) */ + /* _mesa_function_pool[24705]: MultiModeDrawArraysIBM (will be remapped) */ + "pppii\0" + "glMultiModeDrawArraysIBM\0" + "\0" + /* _mesa_function_pool[24737]: VertexAttrib4dARB (will be remapped) */ "idddd\0" "glVertexAttrib4d\0" "glVertexAttrib4dARB\0" "\0" - /* _mesa_function_pool[24742]: GetTexBumpParameterfvATI (will be remapped) */ + /* _mesa_function_pool[24781]: GetTexBumpParameterfvATI (will be remapped) */ "ip\0" "glGetTexBumpParameterfvATI\0" "\0" - /* _mesa_function_pool[24773]: ProgramNamedParameter4dNV (will be remapped) */ + /* _mesa_function_pool[24812]: ProgramNamedParameter4dNV (will be remapped) */ "iipdddd\0" "glProgramNamedParameter4dNV\0" "\0" - /* _mesa_function_pool[24810]: GetMaterialfv (offset 269) */ + /* _mesa_function_pool[24849]: GetMaterialfv (offset 269) */ "iip\0" "glGetMaterialfv\0" "\0" - /* _mesa_function_pool[24831]: VertexWeightfEXT (dynamic) */ + /* _mesa_function_pool[24870]: VertexWeightfEXT (dynamic) */ "f\0" "glVertexWeightfEXT\0" "\0" - /* _mesa_function_pool[24853]: Binormal3fEXT (dynamic) */ + /* _mesa_function_pool[24892]: Binormal3fEXT (dynamic) */ "fff\0" "glBinormal3fEXT\0" "\0" - /* _mesa_function_pool[24874]: CallList (offset 2) */ + /* _mesa_function_pool[24913]: CallList (offset 2) */ "i\0" "glCallList\0" "\0" - /* _mesa_function_pool[24888]: Materialfv (offset 170) */ + /* _mesa_function_pool[24927]: Materialfv (offset 170) */ "iip\0" "glMaterialfv\0" "\0" - /* _mesa_function_pool[24906]: TexCoord3fv (offset 113) */ + /* _mesa_function_pool[24945]: TexCoord3fv (offset 113) */ "p\0" "glTexCoord3fv\0" "\0" - /* _mesa_function_pool[24923]: FogCoordfvEXT (will be remapped) */ + /* _mesa_function_pool[24962]: FogCoordfvEXT (will be remapped) */ "p\0" "glFogCoordfv\0" "glFogCoordfvEXT\0" "\0" - /* _mesa_function_pool[24955]: MultiTexCoord1ivARB (offset 381) */ + /* _mesa_function_pool[24994]: MultiTexCoord1ivARB (offset 381) */ "ip\0" "glMultiTexCoord1iv\0" "glMultiTexCoord1ivARB\0" "\0" - /* _mesa_function_pool[25000]: SecondaryColor3ubEXT (will be remapped) */ + /* _mesa_function_pool[25039]: SecondaryColor3ubEXT (will be remapped) */ "iii\0" "glSecondaryColor3ub\0" "glSecondaryColor3ubEXT\0" "\0" - /* _mesa_function_pool[25048]: MultiTexCoord2ivARB (offset 389) */ + /* _mesa_function_pool[25087]: MultiTexCoord2ivARB (offset 389) */ "ip\0" "glMultiTexCoord2iv\0" "glMultiTexCoord2ivARB\0" "\0" - /* _mesa_function_pool[25093]: FogFuncSGIS (dynamic) */ + /* _mesa_function_pool[25132]: FogFuncSGIS (dynamic) */ "ip\0" "glFogFuncSGIS\0" "\0" - /* _mesa_function_pool[25111]: CopyTexSubImage2D (offset 326) */ + /* _mesa_function_pool[25150]: CopyTexSubImage2D (offset 326) */ "iiiiiiii\0" "glCopyTexSubImage2D\0" "glCopyTexSubImage2DEXT\0" "\0" - /* _mesa_function_pool[25164]: GetObjectParameterivARB (will be remapped) */ + /* _mesa_function_pool[25203]: GetObjectParameterivARB (will be remapped) */ "iip\0" "glGetObjectParameterivARB\0" "\0" - /* _mesa_function_pool[25195]: Color3iv (offset 16) */ + /* _mesa_function_pool[25234]: Color3iv (offset 16) */ "p\0" "glColor3iv\0" "\0" - /* _mesa_function_pool[25209]: TexCoord4fVertex4fSUN (dynamic) */ + /* _mesa_function_pool[25248]: TexCoord4fVertex4fSUN (dynamic) */ "ffffffff\0" "glTexCoord4fVertex4fSUN\0" "\0" - /* _mesa_function_pool[25243]: DrawElements (offset 311) */ + /* _mesa_function_pool[25282]: DrawElements (offset 311) */ "iiip\0" "glDrawElements\0" "\0" - /* _mesa_function_pool[25264]: BindVertexArrayAPPLE (will be remapped) */ + /* _mesa_function_pool[25303]: BindVertexArrayAPPLE (will be remapped) */ "i\0" "glBindVertexArrayAPPLE\0" "\0" - /* _mesa_function_pool[25290]: GetProgramLocalParameterdvARB (will be remapped) */ + /* _mesa_function_pool[25329]: GetProgramLocalParameterdvARB (will be remapped) */ "iip\0" "glGetProgramLocalParameterdvARB\0" "\0" - /* _mesa_function_pool[25327]: GetHistogramParameteriv (offset 363) */ + /* _mesa_function_pool[25366]: GetHistogramParameteriv (offset 363) */ "iip\0" "glGetHistogramParameteriv\0" "glGetHistogramParameterivEXT\0" "\0" - /* _mesa_function_pool[25387]: MultiTexCoord1iARB (offset 380) */ + /* _mesa_function_pool[25426]: MultiTexCoord1iARB (offset 380) */ "ii\0" "glMultiTexCoord1i\0" "glMultiTexCoord1iARB\0" "\0" - /* _mesa_function_pool[25430]: GetConvolutionFilter (offset 356) */ + /* _mesa_function_pool[25469]: GetConvolutionFilter (offset 356) */ "iiip\0" "glGetConvolutionFilter\0" "glGetConvolutionFilterEXT\0" "\0" - /* _mesa_function_pool[25485]: GetProgramivARB (will be remapped) */ + /* _mesa_function_pool[25524]: GetProgramivARB (will be remapped) */ "iip\0" "glGetProgramivARB\0" "\0" - /* _mesa_function_pool[25508]: BlendFuncSeparateEXT (will be remapped) */ + /* _mesa_function_pool[25547]: BlendFuncSeparateEXT (will be remapped) */ "iiii\0" "glBlendFuncSeparate\0" "glBlendFuncSeparateEXT\0" "glBlendFuncSeparateINGR\0" "\0" - /* _mesa_function_pool[25581]: MapBufferRange (will be remapped) */ + /* _mesa_function_pool[25620]: MapBufferRange (will be remapped) */ "iiii\0" "glMapBufferRange\0" "\0" - /* _mesa_function_pool[25604]: ProgramParameters4dvNV (will be remapped) */ + /* _mesa_function_pool[25643]: ProgramParameters4dvNV (will be remapped) */ "iiip\0" "glProgramParameters4dvNV\0" "\0" - /* _mesa_function_pool[25635]: TexCoord2fColor3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[25674]: TexCoord2fColor3fVertex3fvSUN (dynamic) */ "ppp\0" "glTexCoord2fColor3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[25672]: EvalPoint2 (offset 239) */ + /* _mesa_function_pool[25711]: EvalPoint2 (offset 239) */ "ii\0" "glEvalPoint2\0" "\0" - /* _mesa_function_pool[25689]: EvalPoint1 (offset 237) */ + /* _mesa_function_pool[25728]: EvalPoint1 (offset 237) */ "i\0" "glEvalPoint1\0" "\0" - /* _mesa_function_pool[25705]: Binormal3dvEXT (dynamic) */ + /* _mesa_function_pool[25744]: Binormal3dvEXT (dynamic) */ "p\0" "glBinormal3dvEXT\0" "\0" - /* _mesa_function_pool[25725]: PopMatrix (offset 297) */ + /* _mesa_function_pool[25764]: PopMatrix (offset 297) */ "\0" "glPopMatrix\0" "\0" - /* _mesa_function_pool[25739]: FinishFenceNV (will be remapped) */ + /* _mesa_function_pool[25778]: FinishFenceNV (will be remapped) */ "i\0" "glFinishFenceNV\0" "\0" - /* _mesa_function_pool[25758]: GetFogFuncSGIS (dynamic) */ + /* _mesa_function_pool[25797]: GetFogFuncSGIS (dynamic) */ "p\0" "glGetFogFuncSGIS\0" "\0" - /* _mesa_function_pool[25778]: GetUniformLocationARB (will be remapped) */ + /* _mesa_function_pool[25817]: GetUniformLocationARB (will be remapped) */ "ip\0" "glGetUniformLocation\0" "glGetUniformLocationARB\0" "\0" - /* _mesa_function_pool[25827]: SecondaryColor3fEXT (will be remapped) */ + /* _mesa_function_pool[25866]: SecondaryColor3fEXT (will be remapped) */ "fff\0" "glSecondaryColor3f\0" "glSecondaryColor3fEXT\0" "\0" - /* _mesa_function_pool[25873]: GetTexGeniv (offset 280) */ + /* _mesa_function_pool[25912]: GetTexGeniv (offset 280) */ "iip\0" "glGetTexGeniv\0" "\0" - /* _mesa_function_pool[25892]: CombinerInputNV (will be remapped) */ + /* _mesa_function_pool[25931]: CombinerInputNV (will be remapped) */ "iiiiii\0" "glCombinerInputNV\0" "\0" - /* _mesa_function_pool[25918]: VertexAttrib3sARB (will be remapped) */ + /* _mesa_function_pool[25957]: VertexAttrib3sARB (will be remapped) */ "iiii\0" "glVertexAttrib3s\0" "glVertexAttrib3sARB\0" "\0" - /* _mesa_function_pool[25961]: IsTransformFeedback (will be remapped) */ + /* _mesa_function_pool[26000]: IsTransformFeedback (will be remapped) */ "i\0" "glIsTransformFeedback\0" "\0" - /* _mesa_function_pool[25986]: ReplacementCodeuiNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[26025]: ReplacementCodeuiNormal3fVertex3fvSUN (dynamic) */ "ppp\0" "glReplacementCodeuiNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[26031]: Map2d (offset 222) */ + /* _mesa_function_pool[26070]: Map2d (offset 222) */ "iddiiddiip\0" "glMap2d\0" "\0" - /* _mesa_function_pool[26051]: Map2f (offset 223) */ + /* _mesa_function_pool[26090]: Map2f (offset 223) */ "iffiiffiip\0" "glMap2f\0" "\0" - /* _mesa_function_pool[26071]: ProgramStringARB (will be remapped) */ + /* _mesa_function_pool[26110]: ProgramStringARB (will be remapped) */ "iiip\0" "glProgramStringARB\0" "\0" - /* _mesa_function_pool[26096]: Vertex4s (offset 148) */ + /* _mesa_function_pool[26135]: Vertex4s (offset 148) */ "iiii\0" "glVertex4s\0" "\0" - /* _mesa_function_pool[26113]: TexCoord4fVertex4fvSUN (dynamic) */ + /* _mesa_function_pool[26152]: TexCoord4fVertex4fvSUN (dynamic) */ "pp\0" "glTexCoord4fVertex4fvSUN\0" "\0" - /* _mesa_function_pool[26142]: FragmentLightModelivSGIX (dynamic) */ + /* _mesa_function_pool[26181]: FragmentLightModelivSGIX (dynamic) */ "ip\0" "glFragmentLightModelivSGIX\0" "\0" - /* _mesa_function_pool[26173]: VertexAttrib1fNV (will be remapped) */ + /* _mesa_function_pool[26212]: VertexAttrib1fNV (will be remapped) */ "if\0" "glVertexAttrib1fNV\0" "\0" - /* _mesa_function_pool[26196]: Vertex4f (offset 144) */ + /* _mesa_function_pool[26235]: Vertex4f (offset 144) */ "ffff\0" "glVertex4f\0" "\0" - /* _mesa_function_pool[26213]: EvalCoord1d (offset 228) */ + /* _mesa_function_pool[26252]: EvalCoord1d (offset 228) */ "d\0" "glEvalCoord1d\0" "\0" - /* _mesa_function_pool[26230]: Vertex4d (offset 142) */ + /* _mesa_function_pool[26269]: Vertex4d (offset 142) */ "dddd\0" "glVertex4d\0" "\0" - /* _mesa_function_pool[26247]: RasterPos4dv (offset 79) */ + /* _mesa_function_pool[26286]: RasterPos4dv (offset 79) */ "p\0" "glRasterPos4dv\0" "\0" - /* _mesa_function_pool[26265]: FragmentLightfSGIX (dynamic) */ + /* _mesa_function_pool[26304]: FragmentLightfSGIX (dynamic) */ "iif\0" "glFragmentLightfSGIX\0" "\0" - /* _mesa_function_pool[26291]: GetCompressedTexImageARB (will be remapped) */ + /* _mesa_function_pool[26330]: GetCompressedTexImageARB (will be remapped) */ "iip\0" "glGetCompressedTexImage\0" "glGetCompressedTexImageARB\0" "\0" - /* _mesa_function_pool[26347]: GetTexGenfv (offset 279) */ + /* _mesa_function_pool[26386]: GetTexGenfv (offset 279) */ "iip\0" "glGetTexGenfv\0" "\0" - /* _mesa_function_pool[26366]: Vertex4i (offset 146) */ + /* _mesa_function_pool[26405]: Vertex4i (offset 146) */ "iiii\0" "glVertex4i\0" "\0" - /* _mesa_function_pool[26383]: VertexWeightPointerEXT (dynamic) */ + /* _mesa_function_pool[26422]: VertexWeightPointerEXT (dynamic) */ "iiip\0" "glVertexWeightPointerEXT\0" "\0" - /* _mesa_function_pool[26414]: GetHistogram (offset 361) */ + /* _mesa_function_pool[26453]: GetHistogram (offset 361) */ "iiiip\0" "glGetHistogram\0" "glGetHistogramEXT\0" "\0" - /* _mesa_function_pool[26454]: ActiveStencilFaceEXT (will be remapped) */ + /* _mesa_function_pool[26493]: ActiveStencilFaceEXT (will be remapped) */ "i\0" "glActiveStencilFaceEXT\0" "\0" - /* _mesa_function_pool[26480]: StencilFuncSeparateATI (will be remapped) */ + /* _mesa_function_pool[26519]: StencilFuncSeparateATI (will be remapped) */ "iiii\0" "glStencilFuncSeparateATI\0" "\0" - /* _mesa_function_pool[26511]: Materialf (offset 169) */ + /* _mesa_function_pool[26550]: Materialf (offset 169) */ "iif\0" "glMaterialf\0" "\0" - /* _mesa_function_pool[26528]: GetShaderSourceARB (will be remapped) */ + /* _mesa_function_pool[26567]: GetShaderSourceARB (will be remapped) */ "iipp\0" "glGetShaderSource\0" "glGetShaderSourceARB\0" "\0" - /* _mesa_function_pool[26573]: IglooInterfaceSGIX (dynamic) */ + /* _mesa_function_pool[26612]: IglooInterfaceSGIX (dynamic) */ "ip\0" "glIglooInterfaceSGIX\0" "\0" - /* _mesa_function_pool[26598]: Materiali (offset 171) */ + /* _mesa_function_pool[26637]: Materiali (offset 171) */ "iii\0" "glMateriali\0" "\0" - /* _mesa_function_pool[26615]: VertexAttrib4dNV (will be remapped) */ + /* _mesa_function_pool[26654]: VertexAttrib4dNV (will be remapped) */ "idddd\0" "glVertexAttrib4dNV\0" "\0" - /* _mesa_function_pool[26641]: MultiModeDrawElementsIBM (will be remapped) */ + /* _mesa_function_pool[26680]: MultiModeDrawElementsIBM (will be remapped) */ "ppipii\0" "glMultiModeDrawElementsIBM\0" "\0" - /* _mesa_function_pool[26676]: Indexsv (offset 51) */ + /* _mesa_function_pool[26715]: Indexsv (offset 51) */ "p\0" "glIndexsv\0" "\0" - /* _mesa_function_pool[26689]: MultiTexCoord4svARB (offset 407) */ + /* _mesa_function_pool[26728]: MultiTexCoord4svARB (offset 407) */ "ip\0" "glMultiTexCoord4sv\0" "glMultiTexCoord4svARB\0" "\0" - /* _mesa_function_pool[26734]: LightModelfv (offset 164) */ + /* _mesa_function_pool[26773]: LightModelfv (offset 164) */ "ip\0" "glLightModelfv\0" "\0" - /* _mesa_function_pool[26753]: TexCoord2dv (offset 103) */ + /* _mesa_function_pool[26792]: TexCoord2dv (offset 103) */ "p\0" "glTexCoord2dv\0" "\0" - /* _mesa_function_pool[26770]: GenQueriesARB (will be remapped) */ + /* _mesa_function_pool[26809]: GenQueriesARB (will be remapped) */ "ip\0" "glGenQueries\0" "glGenQueriesARB\0" "\0" - /* _mesa_function_pool[26803]: EvalCoord1dv (offset 229) */ + /* _mesa_function_pool[26842]: EvalCoord1dv (offset 229) */ "p\0" "glEvalCoord1dv\0" "\0" - /* _mesa_function_pool[26821]: ReplacementCodeuiVertex3fSUN (dynamic) */ + /* _mesa_function_pool[26860]: ReplacementCodeuiVertex3fSUN (dynamic) */ "ifff\0" "glReplacementCodeuiVertex3fSUN\0" "\0" - /* _mesa_function_pool[26858]: Translated (offset 303) */ + /* _mesa_function_pool[26897]: Translated (offset 303) */ "ddd\0" "glTranslated\0" "\0" - /* _mesa_function_pool[26876]: Translatef (offset 304) */ + /* _mesa_function_pool[26915]: Translatef (offset 304) */ "fff\0" "glTranslatef\0" "\0" - /* _mesa_function_pool[26894]: StencilMask (offset 209) */ + /* _mesa_function_pool[26933]: StencilMask (offset 209) */ "i\0" "glStencilMask\0" "\0" - /* _mesa_function_pool[26911]: Tangent3iEXT (dynamic) */ + /* _mesa_function_pool[26950]: Tangent3iEXT (dynamic) */ "iii\0" "glTangent3iEXT\0" "\0" - /* _mesa_function_pool[26931]: GetLightiv (offset 265) */ + /* _mesa_function_pool[26970]: ClampColorARB (will be remapped) */ + "ii\0" + "glClampColorARB\0" + "\0" + /* _mesa_function_pool[26990]: GetLightiv (offset 265) */ "iip\0" "glGetLightiv\0" "\0" - /* _mesa_function_pool[26949]: DrawMeshArraysSUN (dynamic) */ + /* _mesa_function_pool[27008]: DrawMeshArraysSUN (dynamic) */ "iiii\0" "glDrawMeshArraysSUN\0" "\0" - /* _mesa_function_pool[26975]: IsList (offset 287) */ + /* _mesa_function_pool[27034]: IsList (offset 287) */ "i\0" "glIsList\0" "\0" - /* _mesa_function_pool[26987]: IsSync (will be remapped) */ + /* _mesa_function_pool[27046]: IsSync (will be remapped) */ "i\0" "glIsSync\0" "\0" - /* _mesa_function_pool[26999]: RenderMode (offset 196) */ + /* _mesa_function_pool[27058]: RenderMode (offset 196) */ "i\0" "glRenderMode\0" "\0" - /* _mesa_function_pool[27015]: GetMapControlPointsNV (dynamic) */ + /* _mesa_function_pool[27074]: GetMapControlPointsNV (dynamic) */ "iiiiiip\0" "glGetMapControlPointsNV\0" "\0" - /* _mesa_function_pool[27048]: DrawBuffersARB (will be remapped) */ + /* _mesa_function_pool[27107]: DrawBuffersARB (will be remapped) */ "ip\0" "glDrawBuffers\0" "glDrawBuffersARB\0" "glDrawBuffersATI\0" "\0" - /* _mesa_function_pool[27100]: ProgramLocalParameter4fARB (will be remapped) */ + /* _mesa_function_pool[27159]: ProgramLocalParameter4fARB (will be remapped) */ "iiffff\0" "glProgramLocalParameter4fARB\0" "\0" - /* _mesa_function_pool[27137]: SpriteParameterivSGIX (dynamic) */ + /* _mesa_function_pool[27196]: SpriteParameterivSGIX (dynamic) */ "ip\0" "glSpriteParameterivSGIX\0" "\0" - /* _mesa_function_pool[27165]: ProvokingVertexEXT (will be remapped) */ + /* _mesa_function_pool[27224]: ProvokingVertexEXT (will be remapped) */ "i\0" "glProvokingVertexEXT\0" "glProvokingVertex\0" "\0" - /* _mesa_function_pool[27207]: MultiTexCoord1fARB (offset 378) */ + /* _mesa_function_pool[27266]: MultiTexCoord1fARB (offset 378) */ "if\0" "glMultiTexCoord1f\0" "glMultiTexCoord1fARB\0" "\0" - /* _mesa_function_pool[27250]: LoadName (offset 198) */ + /* _mesa_function_pool[27309]: LoadName (offset 198) */ "i\0" "glLoadName\0" "\0" - /* _mesa_function_pool[27264]: VertexAttribs4ubvNV (will be remapped) */ + /* _mesa_function_pool[27323]: VertexAttribs4ubvNV (will be remapped) */ "iip\0" "glVertexAttribs4ubvNV\0" "\0" - /* _mesa_function_pool[27291]: WeightsvARB (dynamic) */ + /* _mesa_function_pool[27350]: WeightsvARB (dynamic) */ "ip\0" "glWeightsvARB\0" "\0" - /* _mesa_function_pool[27309]: Uniform1fvARB (will be remapped) */ + /* _mesa_function_pool[27368]: Uniform1fvARB (will be remapped) */ "iip\0" "glUniform1fv\0" "glUniform1fvARB\0" "\0" - /* _mesa_function_pool[27343]: CopyTexSubImage1D (offset 325) */ + /* _mesa_function_pool[27402]: CopyTexSubImage1D (offset 325) */ "iiiiii\0" "glCopyTexSubImage1D\0" "glCopyTexSubImage1DEXT\0" "\0" - /* _mesa_function_pool[27394]: CullFace (offset 152) */ + /* _mesa_function_pool[27453]: CullFace (offset 152) */ "i\0" "glCullFace\0" "\0" - /* _mesa_function_pool[27408]: BindTexture (offset 307) */ + /* _mesa_function_pool[27467]: BindTexture (offset 307) */ "ii\0" "glBindTexture\0" "glBindTextureEXT\0" "\0" - /* _mesa_function_pool[27443]: BeginFragmentShaderATI (will be remapped) */ + /* _mesa_function_pool[27502]: BeginFragmentShaderATI (will be remapped) */ "\0" "glBeginFragmentShaderATI\0" "\0" - /* _mesa_function_pool[27470]: MultiTexCoord4fARB (offset 402) */ + /* _mesa_function_pool[27529]: MultiTexCoord4fARB (offset 402) */ "iffff\0" "glMultiTexCoord4f\0" "glMultiTexCoord4fARB\0" "\0" - /* _mesa_function_pool[27516]: VertexAttribs3svNV (will be remapped) */ + /* _mesa_function_pool[27575]: VertexAttribs3svNV (will be remapped) */ "iip\0" "glVertexAttribs3svNV\0" "\0" - /* _mesa_function_pool[27542]: StencilFunc (offset 243) */ + /* _mesa_function_pool[27601]: StencilFunc (offset 243) */ "iii\0" "glStencilFunc\0" "\0" - /* _mesa_function_pool[27561]: CopyPixels (offset 255) */ + /* _mesa_function_pool[27620]: CopyPixels (offset 255) */ "iiiii\0" "glCopyPixels\0" "\0" - /* _mesa_function_pool[27581]: Rectsv (offset 93) */ + /* _mesa_function_pool[27640]: Rectsv (offset 93) */ "pp\0" "glRectsv\0" "\0" - /* _mesa_function_pool[27594]: ReplacementCodeuivSUN (dynamic) */ + /* _mesa_function_pool[27653]: ReplacementCodeuivSUN (dynamic) */ "p\0" "glReplacementCodeuivSUN\0" "\0" - /* _mesa_function_pool[27621]: EnableVertexAttribArrayARB (will be remapped) */ + /* _mesa_function_pool[27680]: EnableVertexAttribArrayARB (will be remapped) */ "i\0" "glEnableVertexAttribArray\0" "glEnableVertexAttribArrayARB\0" "\0" - /* _mesa_function_pool[27679]: NormalPointervINTEL (dynamic) */ + /* _mesa_function_pool[27738]: NormalPointervINTEL (dynamic) */ "ip\0" "glNormalPointervINTEL\0" "\0" - /* _mesa_function_pool[27705]: CopyConvolutionFilter2D (offset 355) */ + /* _mesa_function_pool[27764]: CopyConvolutionFilter2D (offset 355) */ "iiiiii\0" "glCopyConvolutionFilter2D\0" "glCopyConvolutionFilter2DEXT\0" "\0" - /* _mesa_function_pool[27768]: WindowPos3ivMESA (will be remapped) */ + /* _mesa_function_pool[27827]: WindowPos3ivMESA (will be remapped) */ "p\0" "glWindowPos3iv\0" "glWindowPos3ivARB\0" "glWindowPos3ivMESA\0" "\0" - /* _mesa_function_pool[27823]: CopyBufferSubData (will be remapped) */ + /* _mesa_function_pool[27882]: CopyBufferSubData (will be remapped) */ "iiiii\0" "glCopyBufferSubData\0" "\0" - /* _mesa_function_pool[27850]: NormalPointer (offset 318) */ + /* _mesa_function_pool[27909]: NormalPointer (offset 318) */ "iip\0" "glNormalPointer\0" "\0" - /* _mesa_function_pool[27871]: TexParameterfv (offset 179) */ + /* _mesa_function_pool[27930]: TexParameterfv (offset 179) */ "iip\0" "glTexParameterfv\0" "\0" - /* _mesa_function_pool[27893]: IsBufferARB (will be remapped) */ + /* _mesa_function_pool[27952]: IsBufferARB (will be remapped) */ "i\0" "glIsBuffer\0" "glIsBufferARB\0" "\0" - /* _mesa_function_pool[27921]: WindowPos4iMESA (will be remapped) */ + /* _mesa_function_pool[27980]: WindowPos4iMESA (will be remapped) */ "iiii\0" "glWindowPos4iMESA\0" "\0" - /* _mesa_function_pool[27945]: VertexAttrib4uivARB (will be remapped) */ + /* _mesa_function_pool[28004]: VertexAttrib4uivARB (will be remapped) */ "ip\0" "glVertexAttrib4uiv\0" "glVertexAttrib4uivARB\0" "\0" - /* _mesa_function_pool[27990]: Tangent3bvEXT (dynamic) */ + /* _mesa_function_pool[28049]: Tangent3bvEXT (dynamic) */ "p\0" "glTangent3bvEXT\0" "\0" - /* _mesa_function_pool[28009]: UniformMatrix3x4fv (will be remapped) */ + /* _mesa_function_pool[28068]: UniformMatrix3x4fv (will be remapped) */ "iiip\0" "glUniformMatrix3x4fv\0" "\0" - /* _mesa_function_pool[28036]: ClipPlane (offset 150) */ + /* _mesa_function_pool[28095]: ClipPlane (offset 150) */ "ip\0" "glClipPlane\0" "\0" - /* _mesa_function_pool[28052]: Recti (offset 90) */ + /* _mesa_function_pool[28111]: Recti (offset 90) */ "iiii\0" "glRecti\0" "\0" - /* _mesa_function_pool[28066]: DrawRangeElementsBaseVertex (will be remapped) */ + /* _mesa_function_pool[28125]: DrawRangeElementsBaseVertex (will be remapped) */ "iiiiipi\0" "glDrawRangeElementsBaseVertex\0" "\0" - /* _mesa_function_pool[28105]: TexCoordPointervINTEL (dynamic) */ + /* _mesa_function_pool[28164]: TexCoordPointervINTEL (dynamic) */ "iip\0" "glTexCoordPointervINTEL\0" "\0" - /* _mesa_function_pool[28134]: DeleteBuffersARB (will be remapped) */ + /* _mesa_function_pool[28193]: DeleteBuffersARB (will be remapped) */ "ip\0" "glDeleteBuffers\0" "glDeleteBuffersARB\0" "\0" - /* _mesa_function_pool[28173]: PixelTransformParameterfvEXT (dynamic) */ + /* _mesa_function_pool[28232]: PixelTransformParameterfvEXT (dynamic) */ "iip\0" "glPixelTransformParameterfvEXT\0" "\0" - /* _mesa_function_pool[28209]: WindowPos4fvMESA (will be remapped) */ + /* _mesa_function_pool[28268]: WindowPos4fvMESA (will be remapped) */ "p\0" "glWindowPos4fvMESA\0" "\0" - /* _mesa_function_pool[28231]: GetPixelMapuiv (offset 272) */ + /* _mesa_function_pool[28290]: GetPixelMapuiv (offset 272) */ "ip\0" "glGetPixelMapuiv\0" "\0" - /* _mesa_function_pool[28252]: Rectf (offset 88) */ + /* _mesa_function_pool[28311]: Rectf (offset 88) */ "ffff\0" "glRectf\0" "\0" - /* _mesa_function_pool[28266]: VertexAttrib1sNV (will be remapped) */ + /* _mesa_function_pool[28325]: VertexAttrib1sNV (will be remapped) */ "ii\0" "glVertexAttrib1sNV\0" "\0" - /* _mesa_function_pool[28289]: Indexfv (offset 47) */ + /* _mesa_function_pool[28348]: Indexfv (offset 47) */ "p\0" "glIndexfv\0" "\0" - /* _mesa_function_pool[28302]: SecondaryColor3svEXT (will be remapped) */ + /* _mesa_function_pool[28361]: SecondaryColor3svEXT (will be remapped) */ "p\0" "glSecondaryColor3sv\0" "glSecondaryColor3svEXT\0" "\0" - /* _mesa_function_pool[28348]: LoadTransposeMatrixfARB (will be remapped) */ + /* _mesa_function_pool[28407]: LoadTransposeMatrixfARB (will be remapped) */ "p\0" "glLoadTransposeMatrixf\0" "glLoadTransposeMatrixfARB\0" "\0" - /* _mesa_function_pool[28400]: GetPointerv (offset 329) */ + /* _mesa_function_pool[28459]: GetPointerv (offset 329) */ "ip\0" "glGetPointerv\0" "glGetPointervEXT\0" "\0" - /* _mesa_function_pool[28435]: Tangent3bEXT (dynamic) */ + /* _mesa_function_pool[28494]: Tangent3bEXT (dynamic) */ "iii\0" "glTangent3bEXT\0" "\0" - /* _mesa_function_pool[28455]: CombinerParameterfNV (will be remapped) */ + /* _mesa_function_pool[28514]: CombinerParameterfNV (will be remapped) */ "if\0" "glCombinerParameterfNV\0" "\0" - /* _mesa_function_pool[28482]: IndexMask (offset 212) */ + /* _mesa_function_pool[28541]: IndexMask (offset 212) */ "i\0" "glIndexMask\0" "\0" - /* _mesa_function_pool[28497]: BindProgramNV (will be remapped) */ + /* _mesa_function_pool[28556]: BindProgramNV (will be remapped) */ "ii\0" "glBindProgramARB\0" "glBindProgramNV\0" "\0" - /* _mesa_function_pool[28534]: VertexAttrib4svARB (will be remapped) */ + /* _mesa_function_pool[28593]: VertexAttrib4svARB (will be remapped) */ "ip\0" "glVertexAttrib4sv\0" "glVertexAttrib4svARB\0" "\0" - /* _mesa_function_pool[28577]: GetFloatv (offset 262) */ + /* _mesa_function_pool[28636]: GetFloatv (offset 262) */ "ip\0" "glGetFloatv\0" "\0" - /* _mesa_function_pool[28593]: CreateDebugObjectMESA (dynamic) */ + /* _mesa_function_pool[28652]: CreateDebugObjectMESA (dynamic) */ "\0" "glCreateDebugObjectMESA\0" "\0" - /* _mesa_function_pool[28619]: GetShaderiv (will be remapped) */ + /* _mesa_function_pool[28678]: GetShaderiv (will be remapped) */ "iip\0" "glGetShaderiv\0" "\0" - /* _mesa_function_pool[28638]: ClientWaitSync (will be remapped) */ + /* _mesa_function_pool[28697]: ClientWaitSync (will be remapped) */ "iii\0" "glClientWaitSync\0" "\0" - /* _mesa_function_pool[28660]: TexCoord4s (offset 124) */ + /* _mesa_function_pool[28719]: TexCoord4s (offset 124) */ "iiii\0" "glTexCoord4s\0" "\0" - /* _mesa_function_pool[28679]: TexCoord3sv (offset 117) */ + /* _mesa_function_pool[28738]: TexCoord3sv (offset 117) */ "p\0" "glTexCoord3sv\0" "\0" - /* _mesa_function_pool[28696]: BindFragmentShaderATI (will be remapped) */ + /* _mesa_function_pool[28755]: BindFragmentShaderATI (will be remapped) */ "i\0" "glBindFragmentShaderATI\0" "\0" - /* _mesa_function_pool[28723]: PopAttrib (offset 218) */ + /* _mesa_function_pool[28782]: PopAttrib (offset 218) */ "\0" "glPopAttrib\0" "\0" - /* _mesa_function_pool[28737]: Fogfv (offset 154) */ + /* _mesa_function_pool[28796]: Fogfv (offset 154) */ "ip\0" "glFogfv\0" "\0" - /* _mesa_function_pool[28749]: UnmapBufferARB (will be remapped) */ + /* _mesa_function_pool[28808]: UnmapBufferARB (will be remapped) */ "i\0" "glUnmapBuffer\0" "glUnmapBufferARB\0" "\0" - /* _mesa_function_pool[28783]: InitNames (offset 197) */ + /* _mesa_function_pool[28842]: InitNames (offset 197) */ "\0" "glInitNames\0" "\0" - /* _mesa_function_pool[28797]: Normal3sv (offset 61) */ + /* _mesa_function_pool[28856]: Normal3sv (offset 61) */ "p\0" "glNormal3sv\0" "\0" - /* _mesa_function_pool[28812]: Minmax (offset 368) */ + /* _mesa_function_pool[28871]: Minmax (offset 368) */ "iii\0" "glMinmax\0" "glMinmaxEXT\0" "\0" - /* _mesa_function_pool[28838]: TexCoord4d (offset 118) */ + /* _mesa_function_pool[28897]: TexCoord4d (offset 118) */ "dddd\0" "glTexCoord4d\0" "\0" - /* _mesa_function_pool[28857]: DeformationMap3dSGIX (dynamic) */ - "iddiiddiiddiip\0" - "glDeformationMap3dSGIX\0" - "\0" - /* _mesa_function_pool[28896]: TexCoord4f (offset 120) */ + /* _mesa_function_pool[28916]: TexCoord4f (offset 120) */ "ffff\0" "glTexCoord4f\0" "\0" - /* _mesa_function_pool[28915]: FogCoorddvEXT (will be remapped) */ + /* _mesa_function_pool[28935]: FogCoorddvEXT (will be remapped) */ "p\0" "glFogCoorddv\0" "glFogCoorddvEXT\0" "\0" - /* _mesa_function_pool[28947]: FinishTextureSUNX (dynamic) */ + /* _mesa_function_pool[28967]: FinishTextureSUNX (dynamic) */ "\0" "glFinishTextureSUNX\0" "\0" - /* _mesa_function_pool[28969]: GetFragmentLightfvSGIX (dynamic) */ + /* _mesa_function_pool[28989]: GetFragmentLightfvSGIX (dynamic) */ "iip\0" "glGetFragmentLightfvSGIX\0" "\0" - /* _mesa_function_pool[28999]: Binormal3fvEXT (dynamic) */ + /* _mesa_function_pool[29019]: Binormal3fvEXT (dynamic) */ "p\0" "glBinormal3fvEXT\0" "\0" - /* _mesa_function_pool[29019]: GetBooleanv (offset 258) */ + /* _mesa_function_pool[29039]: GetBooleanv (offset 258) */ "ip\0" "glGetBooleanv\0" "\0" - /* _mesa_function_pool[29037]: ColorFragmentOp3ATI (will be remapped) */ + /* _mesa_function_pool[29057]: ColorFragmentOp3ATI (will be remapped) */ "iiiiiiiiiiiii\0" "glColorFragmentOp3ATI\0" "\0" - /* _mesa_function_pool[29074]: Hint (offset 158) */ + /* _mesa_function_pool[29094]: Hint (offset 158) */ "ii\0" "glHint\0" "\0" - /* _mesa_function_pool[29085]: Color4dv (offset 28) */ + /* _mesa_function_pool[29105]: Color4dv (offset 28) */ "p\0" "glColor4dv\0" "\0" - /* _mesa_function_pool[29099]: VertexAttrib2svARB (will be remapped) */ + /* _mesa_function_pool[29119]: VertexAttrib2svARB (will be remapped) */ "ip\0" "glVertexAttrib2sv\0" "glVertexAttrib2svARB\0" "\0" - /* _mesa_function_pool[29142]: AreProgramsResidentNV (will be remapped) */ + /* _mesa_function_pool[29162]: AreProgramsResidentNV (will be remapped) */ "ipp\0" "glAreProgramsResidentNV\0" "\0" - /* _mesa_function_pool[29171]: WindowPos3svMESA (will be remapped) */ + /* _mesa_function_pool[29191]: WindowPos3svMESA (will be remapped) */ "p\0" "glWindowPos3sv\0" "glWindowPos3svARB\0" "glWindowPos3svMESA\0" "\0" - /* _mesa_function_pool[29226]: CopyColorSubTable (offset 347) */ + /* _mesa_function_pool[29246]: CopyColorSubTable (offset 347) */ "iiiii\0" "glCopyColorSubTable\0" "glCopyColorSubTableEXT\0" "\0" - /* _mesa_function_pool[29276]: WeightdvARB (dynamic) */ + /* _mesa_function_pool[29296]: WeightdvARB (dynamic) */ "ip\0" "glWeightdvARB\0" "\0" - /* _mesa_function_pool[29294]: DeleteRenderbuffersEXT (will be remapped) */ + /* _mesa_function_pool[29314]: DeleteRenderbuffersEXT (will be remapped) */ "ip\0" "glDeleteRenderbuffers\0" "glDeleteRenderbuffersEXT\0" "\0" - /* _mesa_function_pool[29345]: VertexAttrib4NubvARB (will be remapped) */ + /* _mesa_function_pool[29365]: VertexAttrib4NubvARB (will be remapped) */ "ip\0" "glVertexAttrib4Nubv\0" "glVertexAttrib4NubvARB\0" "\0" - /* _mesa_function_pool[29392]: VertexAttrib3dvNV (will be remapped) */ + /* _mesa_function_pool[29412]: VertexAttrib3dvNV (will be remapped) */ "ip\0" "glVertexAttrib3dvNV\0" "\0" - /* _mesa_function_pool[29416]: GetObjectParameterfvARB (will be remapped) */ + /* _mesa_function_pool[29436]: GetObjectParameterfvARB (will be remapped) */ "iip\0" "glGetObjectParameterfvARB\0" "\0" - /* _mesa_function_pool[29447]: Vertex4iv (offset 147) */ + /* _mesa_function_pool[29467]: Vertex4iv (offset 147) */ "p\0" "glVertex4iv\0" "\0" - /* _mesa_function_pool[29462]: GetProgramEnvParameterdvARB (will be remapped) */ + /* _mesa_function_pool[29482]: GetProgramEnvParameterdvARB (will be remapped) */ "iip\0" "glGetProgramEnvParameterdvARB\0" "\0" - /* _mesa_function_pool[29497]: TexCoord4dv (offset 119) */ + /* _mesa_function_pool[29517]: TexCoord4dv (offset 119) */ "p\0" "glTexCoord4dv\0" "\0" - /* _mesa_function_pool[29514]: LockArraysEXT (will be remapped) */ + /* _mesa_function_pool[29534]: LockArraysEXT (will be remapped) */ "ii\0" "glLockArraysEXT\0" "\0" - /* _mesa_function_pool[29534]: Begin (offset 7) */ + /* _mesa_function_pool[29554]: Begin (offset 7) */ "i\0" "glBegin\0" "\0" - /* _mesa_function_pool[29545]: LightModeli (offset 165) */ + /* _mesa_function_pool[29565]: LightModeli (offset 165) */ "ii\0" "glLightModeli\0" "\0" - /* _mesa_function_pool[29563]: Rectfv (offset 89) */ + /* _mesa_function_pool[29583]: Rectfv (offset 89) */ "pp\0" "glRectfv\0" "\0" - /* _mesa_function_pool[29576]: LightModelf (offset 163) */ + /* _mesa_function_pool[29596]: LightModelf (offset 163) */ "if\0" "glLightModelf\0" "\0" - /* _mesa_function_pool[29594]: GetTexParameterfv (offset 282) */ + /* _mesa_function_pool[29614]: GetTexParameterfv (offset 282) */ "iip\0" "glGetTexParameterfv\0" "\0" - /* _mesa_function_pool[29619]: GetLightfv (offset 264) */ + /* _mesa_function_pool[29639]: GetLightfv (offset 264) */ "iip\0" "glGetLightfv\0" "\0" - /* _mesa_function_pool[29637]: PixelTransformParameterivEXT (dynamic) */ + /* _mesa_function_pool[29657]: PixelTransformParameterivEXT (dynamic) */ "iip\0" "glPixelTransformParameterivEXT\0" "\0" - /* _mesa_function_pool[29673]: BinormalPointerEXT (dynamic) */ + /* _mesa_function_pool[29693]: BinormalPointerEXT (dynamic) */ "iip\0" "glBinormalPointerEXT\0" "\0" - /* _mesa_function_pool[29699]: VertexAttrib1dNV (will be remapped) */ + /* _mesa_function_pool[29719]: VertexAttrib1dNV (will be remapped) */ "id\0" "glVertexAttrib1dNV\0" "\0" - /* _mesa_function_pool[29722]: GetCombinerInputParameterivNV (will be remapped) */ + /* _mesa_function_pool[29742]: GetCombinerInputParameterivNV (will be remapped) */ "iiiip\0" "glGetCombinerInputParameterivNV\0" "\0" - /* _mesa_function_pool[29761]: Disable (offset 214) */ + /* _mesa_function_pool[29781]: Disable (offset 214) */ "i\0" "glDisable\0" "\0" - /* _mesa_function_pool[29774]: MultiTexCoord2fvARB (offset 387) */ + /* _mesa_function_pool[29794]: MultiTexCoord2fvARB (offset 387) */ "ip\0" "glMultiTexCoord2fv\0" "glMultiTexCoord2fvARB\0" "\0" - /* _mesa_function_pool[29819]: GetRenderbufferParameterivEXT (will be remapped) */ + /* _mesa_function_pool[29839]: GetRenderbufferParameterivEXT (will be remapped) */ "iip\0" "glGetRenderbufferParameteriv\0" "glGetRenderbufferParameterivEXT\0" "\0" - /* _mesa_function_pool[29885]: CombinerParameterivNV (will be remapped) */ + /* _mesa_function_pool[29905]: CombinerParameterivNV (will be remapped) */ "ip\0" "glCombinerParameterivNV\0" "\0" - /* _mesa_function_pool[29913]: GenFragmentShadersATI (will be remapped) */ + /* _mesa_function_pool[29933]: GenFragmentShadersATI (will be remapped) */ "i\0" "glGenFragmentShadersATI\0" "\0" - /* _mesa_function_pool[29940]: DrawArrays (offset 310) */ + /* _mesa_function_pool[29960]: DrawArrays (offset 310) */ "iii\0" "glDrawArrays\0" "glDrawArraysEXT\0" "\0" - /* _mesa_function_pool[29974]: WeightuivARB (dynamic) */ + /* _mesa_function_pool[29994]: WeightuivARB (dynamic) */ "ip\0" "glWeightuivARB\0" "\0" - /* _mesa_function_pool[29993]: VertexAttrib2sARB (will be remapped) */ + /* _mesa_function_pool[30013]: VertexAttrib2sARB (will be remapped) */ "iii\0" "glVertexAttrib2s\0" "glVertexAttrib2sARB\0" "\0" - /* _mesa_function_pool[30035]: ColorMask (offset 210) */ + /* _mesa_function_pool[30055]: ColorMask (offset 210) */ "iiii\0" "glColorMask\0" "\0" - /* _mesa_function_pool[30053]: GenAsyncMarkersSGIX (dynamic) */ + /* _mesa_function_pool[30073]: GenAsyncMarkersSGIX (dynamic) */ "i\0" "glGenAsyncMarkersSGIX\0" "\0" - /* _mesa_function_pool[30078]: Tangent3svEXT (dynamic) */ + /* _mesa_function_pool[30098]: Tangent3svEXT (dynamic) */ "p\0" "glTangent3svEXT\0" "\0" - /* _mesa_function_pool[30097]: GetListParameterivSGIX (dynamic) */ + /* _mesa_function_pool[30117]: GetListParameterivSGIX (dynamic) */ "iip\0" "glGetListParameterivSGIX\0" "\0" - /* _mesa_function_pool[30127]: BindBufferARB (will be remapped) */ + /* _mesa_function_pool[30147]: BindBufferARB (will be remapped) */ "ii\0" "glBindBuffer\0" "glBindBufferARB\0" "\0" - /* _mesa_function_pool[30160]: GetInfoLogARB (will be remapped) */ + /* _mesa_function_pool[30180]: GetInfoLogARB (will be remapped) */ "iipp\0" "glGetInfoLogARB\0" "\0" - /* _mesa_function_pool[30182]: RasterPos4iv (offset 83) */ + /* _mesa_function_pool[30202]: RasterPos4iv (offset 83) */ "p\0" "glRasterPos4iv\0" "\0" - /* _mesa_function_pool[30200]: Enable (offset 215) */ + /* _mesa_function_pool[30220]: Enable (offset 215) */ "i\0" "glEnable\0" "\0" - /* _mesa_function_pool[30212]: LineStipple (offset 167) */ + /* _mesa_function_pool[30232]: LineStipple (offset 167) */ "ii\0" "glLineStipple\0" "\0" - /* _mesa_function_pool[30230]: VertexAttribs4svNV (will be remapped) */ + /* _mesa_function_pool[30250]: VertexAttribs4svNV (will be remapped) */ "iip\0" "glVertexAttribs4svNV\0" "\0" - /* _mesa_function_pool[30256]: EdgeFlagPointerListIBM (dynamic) */ + /* _mesa_function_pool[30276]: EdgeFlagPointerListIBM (dynamic) */ "ipi\0" "glEdgeFlagPointerListIBM\0" "\0" - /* _mesa_function_pool[30286]: UniformMatrix3x2fv (will be remapped) */ + /* _mesa_function_pool[30306]: UniformMatrix3x2fv (will be remapped) */ "iiip\0" "glUniformMatrix3x2fv\0" "\0" - /* _mesa_function_pool[30313]: GetMinmaxParameterfv (offset 365) */ + /* _mesa_function_pool[30333]: GetMinmaxParameterfv (offset 365) */ "iip\0" "glGetMinmaxParameterfv\0" "glGetMinmaxParameterfvEXT\0" "\0" - /* _mesa_function_pool[30367]: VertexAttrib1fvARB (will be remapped) */ + /* _mesa_function_pool[30387]: VertexAttrib1fvARB (will be remapped) */ "ip\0" "glVertexAttrib1fv\0" "glVertexAttrib1fvARB\0" "\0" - /* _mesa_function_pool[30410]: GenBuffersARB (will be remapped) */ + /* _mesa_function_pool[30430]: GenBuffersARB (will be remapped) */ "ip\0" "glGenBuffers\0" "glGenBuffersARB\0" "\0" - /* _mesa_function_pool[30443]: VertexAttribs1svNV (will be remapped) */ + /* _mesa_function_pool[30463]: VertexAttribs1svNV (will be remapped) */ "iip\0" "glVertexAttribs1svNV\0" "\0" - /* _mesa_function_pool[30469]: Vertex3fv (offset 137) */ + /* _mesa_function_pool[30489]: Vertex3fv (offset 137) */ "p\0" "glVertex3fv\0" "\0" - /* _mesa_function_pool[30484]: GetTexBumpParameterivATI (will be remapped) */ + /* _mesa_function_pool[30504]: GetTexBumpParameterivATI (will be remapped) */ "ip\0" "glGetTexBumpParameterivATI\0" "\0" - /* _mesa_function_pool[30515]: Binormal3bEXT (dynamic) */ + /* _mesa_function_pool[30535]: Binormal3bEXT (dynamic) */ "iii\0" "glBinormal3bEXT\0" "\0" - /* _mesa_function_pool[30536]: FragmentMaterialivSGIX (dynamic) */ + /* _mesa_function_pool[30556]: FragmentMaterialivSGIX (dynamic) */ "iip\0" "glFragmentMaterialivSGIX\0" "\0" - /* _mesa_function_pool[30566]: IsRenderbufferEXT (will be remapped) */ + /* _mesa_function_pool[30586]: IsRenderbufferEXT (will be remapped) */ "i\0" "glIsRenderbuffer\0" "glIsRenderbufferEXT\0" "\0" - /* _mesa_function_pool[30606]: GenProgramsNV (will be remapped) */ + /* _mesa_function_pool[30626]: GenProgramsNV (will be remapped) */ "ip\0" "glGenProgramsARB\0" "glGenProgramsNV\0" "\0" - /* _mesa_function_pool[30643]: VertexAttrib4dvNV (will be remapped) */ + /* _mesa_function_pool[30663]: VertexAttrib4dvNV (will be remapped) */ "ip\0" "glVertexAttrib4dvNV\0" "\0" - /* _mesa_function_pool[30667]: EndFragmentShaderATI (will be remapped) */ + /* _mesa_function_pool[30687]: EndFragmentShaderATI (will be remapped) */ "\0" "glEndFragmentShaderATI\0" "\0" - /* _mesa_function_pool[30692]: Binormal3iEXT (dynamic) */ + /* _mesa_function_pool[30712]: Binormal3iEXT (dynamic) */ "iii\0" "glBinormal3iEXT\0" "\0" - /* _mesa_function_pool[30713]: WindowPos2fMESA (will be remapped) */ + /* _mesa_function_pool[30733]: WindowPos2fMESA (will be remapped) */ "ff\0" "glWindowPos2f\0" "glWindowPos2fARB\0" @@ -4468,535 +4472,536 @@ static const char _mesa_function_pool[] = /* these functions need to be remapped */ static const struct gl_function_pool_remap MESA_remap_table_functions[] = { - { 1461, AttachShader_remap_index }, - { 8995, CreateProgram_remap_index }, - { 21153, CreateShader_remap_index }, - { 23466, DeleteProgram_remap_index }, - { 16937, DeleteShader_remap_index }, - { 21599, DetachShader_remap_index }, - { 16461, GetAttachedShaders_remap_index }, - { 4275, GetProgramInfoLog_remap_index }, - { 361, GetProgramiv_remap_index }, - { 5721, GetShaderInfoLog_remap_index }, - { 28619, GetShaderiv_remap_index }, - { 12198, IsProgram_remap_index }, - { 11197, IsShader_remap_index }, - { 9099, StencilFuncSeparate_remap_index }, - { 3487, StencilMaskSeparate_remap_index }, - { 6803, StencilOpSeparate_remap_index }, - { 20478, UniformMatrix2x3fv_remap_index }, - { 2615, UniformMatrix2x4fv_remap_index }, - { 30286, UniformMatrix3x2fv_remap_index }, - { 28009, UniformMatrix3x4fv_remap_index }, - { 14961, UniformMatrix4x2fv_remap_index }, - { 2937, UniformMatrix4x3fv_remap_index }, - { 14622, DrawArraysInstanced_remap_index }, - { 15725, DrawElementsInstanced_remap_index }, - { 9013, LoadTransposeMatrixdARB_remap_index }, - { 28348, LoadTransposeMatrixfARB_remap_index }, - { 4904, MultTransposeMatrixdARB_remap_index }, - { 21786, MultTransposeMatrixfARB_remap_index }, - { 172, SampleCoverageARB_remap_index }, - { 5117, CompressedTexImage1DARB_remap_index }, - { 22269, CompressedTexImage2DARB_remap_index }, - { 3550, CompressedTexImage3DARB_remap_index }, - { 16753, CompressedTexSubImage1DARB_remap_index }, - { 1880, CompressedTexSubImage2DARB_remap_index }, - { 18614, CompressedTexSubImage3DARB_remap_index }, - { 26291, GetCompressedTexImageARB_remap_index }, - { 3395, DisableVertexAttribArrayARB_remap_index }, - { 27621, EnableVertexAttribArrayARB_remap_index }, - { 29462, GetProgramEnvParameterdvARB_remap_index }, - { 21666, GetProgramEnvParameterfvARB_remap_index }, - { 25290, GetProgramLocalParameterdvARB_remap_index }, - { 7245, GetProgramLocalParameterfvARB_remap_index }, - { 16844, GetProgramStringARB_remap_index }, - { 25485, GetProgramivARB_remap_index }, - { 18809, GetVertexAttribdvARB_remap_index }, - { 14850, GetVertexAttribfvARB_remap_index }, - { 8908, GetVertexAttribivARB_remap_index }, - { 17690, ProgramEnvParameter4dARB_remap_index }, - { 23239, ProgramEnvParameter4dvARB_remap_index }, - { 15458, ProgramEnvParameter4fARB_remap_index }, - { 8108, ProgramEnvParameter4fvARB_remap_index }, - { 3513, ProgramLocalParameter4dARB_remap_index }, - { 11908, ProgramLocalParameter4dvARB_remap_index }, - { 27100, ProgramLocalParameter4fARB_remap_index }, - { 23819, ProgramLocalParameter4fvARB_remap_index }, - { 26071, ProgramStringARB_remap_index }, - { 17940, VertexAttrib1dARB_remap_index }, - { 14426, VertexAttrib1dvARB_remap_index }, - { 3688, VertexAttrib1fARB_remap_index }, - { 30367, VertexAttrib1fvARB_remap_index }, - { 6329, VertexAttrib1sARB_remap_index }, - { 2054, VertexAttrib1svARB_remap_index }, - { 13857, VertexAttrib2dARB_remap_index }, - { 16080, VertexAttrib2dvARB_remap_index }, - { 1480, VertexAttrib2fARB_remap_index }, - { 16193, VertexAttrib2fvARB_remap_index }, - { 29993, VertexAttrib2sARB_remap_index }, - { 29099, VertexAttrib2svARB_remap_index }, - { 10282, VertexAttrib3dARB_remap_index }, - { 7811, VertexAttrib3dvARB_remap_index }, - { 1567, VertexAttrib3fARB_remap_index }, - { 20741, VertexAttrib3fvARB_remap_index }, - { 25918, VertexAttrib3sARB_remap_index }, - { 18551, VertexAttrib3svARB_remap_index }, - { 4301, VertexAttrib4NbvARB_remap_index }, - { 16416, VertexAttrib4NivARB_remap_index }, - { 20696, VertexAttrib4NsvARB_remap_index }, - { 21618, VertexAttrib4NubARB_remap_index }, - { 29345, VertexAttrib4NubvARB_remap_index }, - { 17351, VertexAttrib4NuivARB_remap_index }, - { 2810, VertexAttrib4NusvARB_remap_index }, - { 9876, VertexAttrib4bvARB_remap_index }, - { 24698, VertexAttrib4dARB_remap_index }, - { 19573, VertexAttrib4dvARB_remap_index }, - { 10389, VertexAttrib4fARB_remap_index }, - { 10793, VertexAttrib4fvARB_remap_index }, - { 9292, VertexAttrib4ivARB_remap_index }, - { 15894, VertexAttrib4sARB_remap_index }, - { 28534, VertexAttrib4svARB_remap_index }, - { 15263, VertexAttrib4ubvARB_remap_index }, - { 27945, VertexAttrib4uivARB_remap_index }, - { 18362, VertexAttrib4usvARB_remap_index }, - { 20327, VertexAttribPointerARB_remap_index }, - { 30127, BindBufferARB_remap_index }, - { 6036, BufferDataARB_remap_index }, - { 1382, BufferSubDataARB_remap_index }, - { 28134, DeleteBuffersARB_remap_index }, - { 30410, GenBuffersARB_remap_index }, - { 16236, GetBufferParameterivARB_remap_index }, - { 15410, GetBufferPointervARB_remap_index }, - { 1335, GetBufferSubDataARB_remap_index }, - { 27893, IsBufferARB_remap_index }, - { 24303, MapBufferARB_remap_index }, - { 28749, UnmapBufferARB_remap_index }, - { 268, BeginQueryARB_remap_index }, - { 18035, DeleteQueriesARB_remap_index }, - { 11087, EndQueryARB_remap_index }, - { 26770, GenQueriesARB_remap_index }, - { 1772, GetQueryObjectivARB_remap_index }, - { 15938, GetQueryObjectuivARB_remap_index }, - { 1624, GetQueryivARB_remap_index }, - { 18269, IsQueryARB_remap_index }, - { 7421, AttachObjectARB_remap_index }, - { 16899, CompileShaderARB_remap_index }, - { 2879, CreateProgramObjectARB_remap_index }, - { 5981, CreateShaderObjectARB_remap_index }, - { 13274, DeleteObjectARB_remap_index }, - { 22060, DetachObjectARB_remap_index }, - { 10865, GetActiveUniformARB_remap_index }, - { 8583, GetAttachedObjectsARB_remap_index }, - { 8890, GetHandleARB_remap_index }, - { 30160, GetInfoLogARB_remap_index }, - { 29416, GetObjectParameterfvARB_remap_index }, - { 25164, GetObjectParameterivARB_remap_index }, - { 26528, GetShaderSourceARB_remap_index }, - { 25778, GetUniformLocationARB_remap_index }, - { 21888, GetUniformfvARB_remap_index }, - { 11530, GetUniformivARB_remap_index }, - { 18407, LinkProgramARB_remap_index }, - { 18465, ShaderSourceARB_remap_index }, - { 6703, Uniform1fARB_remap_index }, - { 27309, Uniform1fvARB_remap_index }, - { 20296, Uniform1iARB_remap_index }, - { 19262, Uniform1ivARB_remap_index }, - { 2003, Uniform2fARB_remap_index }, - { 13110, Uniform2fvARB_remap_index }, - { 24190, Uniform2iARB_remap_index }, - { 2123, Uniform2ivARB_remap_index }, - { 17009, Uniform3fARB_remap_index }, - { 8613, Uniform3fvARB_remap_index }, - { 5627, Uniform3iARB_remap_index }, - { 15516, Uniform3ivARB_remap_index }, - { 17496, Uniform4fARB_remap_index }, - { 21752, Uniform4fvARB_remap_index }, - { 22918, Uniform4iARB_remap_index }, - { 18775, Uniform4ivARB_remap_index }, - { 7473, UniformMatrix2fvARB_remap_index }, + { 1500, AttachShader_remap_index }, + { 9034, CreateProgram_remap_index }, + { 21160, CreateShader_remap_index }, + { 23473, DeleteProgram_remap_index }, + { 16944, DeleteShader_remap_index }, + { 21606, DetachShader_remap_index }, + { 16468, GetAttachedShaders_remap_index }, + { 4314, GetProgramInfoLog_remap_index }, + { 400, GetProgramiv_remap_index }, + { 5760, GetShaderInfoLog_remap_index }, + { 28678, GetShaderiv_remap_index }, + { 12276, IsProgram_remap_index }, + { 11275, IsShader_remap_index }, + { 9138, StencilFuncSeparate_remap_index }, + { 3526, StencilMaskSeparate_remap_index }, + { 6842, StencilOpSeparate_remap_index }, + { 20485, UniformMatrix2x3fv_remap_index }, + { 2654, UniformMatrix2x4fv_remap_index }, + { 30306, UniformMatrix3x2fv_remap_index }, + { 28068, UniformMatrix3x4fv_remap_index }, + { 14968, UniformMatrix4x2fv_remap_index }, + { 2976, UniformMatrix4x3fv_remap_index }, + { 14629, DrawArraysInstanced_remap_index }, + { 15732, DrawElementsInstanced_remap_index }, + { 9052, LoadTransposeMatrixdARB_remap_index }, + { 28407, LoadTransposeMatrixfARB_remap_index }, + { 4972, MultTransposeMatrixdARB_remap_index }, + { 21793, MultTransposeMatrixfARB_remap_index }, + { 211, SampleCoverageARB_remap_index }, + { 5156, CompressedTexImage1DARB_remap_index }, + { 22276, CompressedTexImage2DARB_remap_index }, + { 3589, CompressedTexImage3DARB_remap_index }, + { 16760, CompressedTexSubImage1DARB_remap_index }, + { 1919, CompressedTexSubImage2DARB_remap_index }, + { 18621, CompressedTexSubImage3DARB_remap_index }, + { 26330, GetCompressedTexImageARB_remap_index }, + { 3434, DisableVertexAttribArrayARB_remap_index }, + { 27680, EnableVertexAttribArrayARB_remap_index }, + { 29482, GetProgramEnvParameterdvARB_remap_index }, + { 21673, GetProgramEnvParameterfvARB_remap_index }, + { 25329, GetProgramLocalParameterdvARB_remap_index }, + { 7284, GetProgramLocalParameterfvARB_remap_index }, + { 16851, GetProgramStringARB_remap_index }, + { 25524, GetProgramivARB_remap_index }, + { 18816, GetVertexAttribdvARB_remap_index }, + { 14857, GetVertexAttribfvARB_remap_index }, + { 8947, GetVertexAttribivARB_remap_index }, + { 17697, ProgramEnvParameter4dARB_remap_index }, + { 23246, ProgramEnvParameter4dvARB_remap_index }, + { 15465, ProgramEnvParameter4fARB_remap_index }, + { 8147, ProgramEnvParameter4fvARB_remap_index }, + { 3552, ProgramLocalParameter4dARB_remap_index }, + { 11986, ProgramLocalParameter4dvARB_remap_index }, + { 27159, ProgramLocalParameter4fARB_remap_index }, + { 23826, ProgramLocalParameter4fvARB_remap_index }, + { 26110, ProgramStringARB_remap_index }, + { 17947, VertexAttrib1dARB_remap_index }, + { 14433, VertexAttrib1dvARB_remap_index }, + { 3727, VertexAttrib1fARB_remap_index }, + { 30387, VertexAttrib1fvARB_remap_index }, + { 6368, VertexAttrib1sARB_remap_index }, + { 2093, VertexAttrib1svARB_remap_index }, + { 13864, VertexAttrib2dARB_remap_index }, + { 16087, VertexAttrib2dvARB_remap_index }, + { 1519, VertexAttrib2fARB_remap_index }, + { 16200, VertexAttrib2fvARB_remap_index }, + { 30013, VertexAttrib2sARB_remap_index }, + { 29119, VertexAttrib2svARB_remap_index }, + { 10321, VertexAttrib3dARB_remap_index }, + { 7850, VertexAttrib3dvARB_remap_index }, + { 1606, VertexAttrib3fARB_remap_index }, + { 20748, VertexAttrib3fvARB_remap_index }, + { 25957, VertexAttrib3sARB_remap_index }, + { 18558, VertexAttrib3svARB_remap_index }, + { 4340, VertexAttrib4NbvARB_remap_index }, + { 16423, VertexAttrib4NivARB_remap_index }, + { 20703, VertexAttrib4NsvARB_remap_index }, + { 21625, VertexAttrib4NubARB_remap_index }, + { 29365, VertexAttrib4NubvARB_remap_index }, + { 17358, VertexAttrib4NuivARB_remap_index }, + { 2849, VertexAttrib4NusvARB_remap_index }, + { 9915, VertexAttrib4bvARB_remap_index }, + { 24737, VertexAttrib4dARB_remap_index }, + { 19580, VertexAttrib4dvARB_remap_index }, + { 10428, VertexAttrib4fARB_remap_index }, + { 10832, VertexAttrib4fvARB_remap_index }, + { 9331, VertexAttrib4ivARB_remap_index }, + { 15901, VertexAttrib4sARB_remap_index }, + { 28593, VertexAttrib4svARB_remap_index }, + { 15270, VertexAttrib4ubvARB_remap_index }, + { 28004, VertexAttrib4uivARB_remap_index }, + { 18369, VertexAttrib4usvARB_remap_index }, + { 20334, VertexAttribPointerARB_remap_index }, + { 30147, BindBufferARB_remap_index }, + { 6075, BufferDataARB_remap_index }, + { 1421, BufferSubDataARB_remap_index }, + { 28193, DeleteBuffersARB_remap_index }, + { 30430, GenBuffersARB_remap_index }, + { 16243, GetBufferParameterivARB_remap_index }, + { 15417, GetBufferPointervARB_remap_index }, + { 1374, GetBufferSubDataARB_remap_index }, + { 27952, IsBufferARB_remap_index }, + { 24310, MapBufferARB_remap_index }, + { 28808, UnmapBufferARB_remap_index }, + { 307, BeginQueryARB_remap_index }, + { 18042, DeleteQueriesARB_remap_index }, + { 11126, EndQueryARB_remap_index }, + { 26809, GenQueriesARB_remap_index }, + { 1811, GetQueryObjectivARB_remap_index }, + { 15945, GetQueryObjectuivARB_remap_index }, + { 1663, GetQueryivARB_remap_index }, + { 18276, IsQueryARB_remap_index }, + { 7460, AttachObjectARB_remap_index }, + { 16906, CompileShaderARB_remap_index }, + { 2918, CreateProgramObjectARB_remap_index }, + { 6020, CreateShaderObjectARB_remap_index }, + { 13281, DeleteObjectARB_remap_index }, + { 22067, DetachObjectARB_remap_index }, + { 10904, GetActiveUniformARB_remap_index }, + { 8622, GetAttachedObjectsARB_remap_index }, + { 8929, GetHandleARB_remap_index }, + { 30180, GetInfoLogARB_remap_index }, + { 29436, GetObjectParameterfvARB_remap_index }, + { 25203, GetObjectParameterivARB_remap_index }, + { 26567, GetShaderSourceARB_remap_index }, + { 25817, GetUniformLocationARB_remap_index }, + { 21895, GetUniformfvARB_remap_index }, + { 11608, GetUniformivARB_remap_index }, + { 18414, LinkProgramARB_remap_index }, + { 18472, ShaderSourceARB_remap_index }, + { 6742, Uniform1fARB_remap_index }, + { 27368, Uniform1fvARB_remap_index }, + { 20303, Uniform1iARB_remap_index }, + { 19269, Uniform1ivARB_remap_index }, + { 2042, Uniform2fARB_remap_index }, + { 13117, Uniform2fvARB_remap_index }, + { 24197, Uniform2iARB_remap_index }, + { 2162, Uniform2ivARB_remap_index }, + { 17016, Uniform3fARB_remap_index }, + { 8652, Uniform3fvARB_remap_index }, + { 5666, Uniform3iARB_remap_index }, + { 15523, Uniform3ivARB_remap_index }, + { 17503, Uniform4fARB_remap_index }, + { 21759, Uniform4fvARB_remap_index }, + { 22925, Uniform4iARB_remap_index }, + { 18782, Uniform4ivARB_remap_index }, + { 7512, UniformMatrix2fvARB_remap_index }, { 17, UniformMatrix3fvARB_remap_index }, - { 2475, UniformMatrix4fvARB_remap_index }, - { 23351, UseProgramObjectARB_remap_index }, - { 13545, ValidateProgramARB_remap_index }, - { 19616, BindAttribLocationARB_remap_index }, - { 4346, GetActiveAttribARB_remap_index }, - { 15197, GetAttribLocationARB_remap_index }, - { 27048, DrawBuffersARB_remap_index }, - { 12013, RenderbufferStorageMultisample_remap_index }, - { 12417, FramebufferTextureARB_remap_index }, - { 23721, FramebufferTextureFaceARB_remap_index }, - { 22209, ProgramParameteriARB_remap_index }, - { 17544, FlushMappedBufferRange_remap_index }, - { 25581, MapBufferRange_remap_index }, - { 15072, BindVertexArray_remap_index }, - { 13404, GenVertexArrays_remap_index }, - { 27823, CopyBufferSubData_remap_index }, - { 28638, ClientWaitSync_remap_index }, - { 2394, DeleteSync_remap_index }, - { 6370, FenceSync_remap_index }, - { 13916, GetInteger64v_remap_index }, - { 20803, GetSynciv_remap_index }, - { 26987, IsSync_remap_index }, - { 8531, WaitSync_remap_index }, - { 3363, DrawElementsBaseVertex_remap_index }, - { 28066, DrawRangeElementsBaseVertex_remap_index }, - { 24334, MultiDrawElementsBaseVertex_remap_index }, - { 4480, BindTransformFeedback_remap_index }, - { 2906, DeleteTransformFeedbacks_remap_index }, - { 5660, DrawTransformFeedback_remap_index }, - { 8750, GenTransformFeedbacks_remap_index }, - { 25961, IsTransformFeedback_remap_index }, - { 23914, PauseTransformFeedback_remap_index }, - { 4824, ResumeTransformFeedback_remap_index }, - { 4739, PolygonOffsetEXT_remap_index }, - { 21388, GetPixelTexGenParameterfvSGIS_remap_index }, - { 3895, GetPixelTexGenParameterivSGIS_remap_index }, - { 21121, PixelTexGenParameterfSGIS_remap_index }, - { 580, PixelTexGenParameterfvSGIS_remap_index }, - { 11568, PixelTexGenParameteriSGIS_remap_index }, - { 12591, PixelTexGenParameterivSGIS_remap_index }, - { 15160, SampleMaskSGIS_remap_index }, - { 18209, SamplePatternSGIS_remap_index }, - { 24263, ColorPointerEXT_remap_index }, - { 16123, EdgeFlagPointerEXT_remap_index }, - { 5281, IndexPointerEXT_remap_index }, - { 5361, NormalPointerEXT_remap_index }, - { 14510, TexCoordPointerEXT_remap_index }, - { 6159, VertexPointerEXT_remap_index }, - { 3165, PointParameterfEXT_remap_index }, - { 7010, PointParameterfvEXT_remap_index }, - { 29514, LockArraysEXT_remap_index }, - { 13609, UnlockArraysEXT_remap_index }, - { 8017, CullParameterdvEXT_remap_index }, - { 10660, CullParameterfvEXT_remap_index }, - { 1151, SecondaryColor3bEXT_remap_index }, - { 7169, SecondaryColor3bvEXT_remap_index }, - { 9469, SecondaryColor3dEXT_remap_index }, - { 23524, SecondaryColor3dvEXT_remap_index }, - { 25827, SecondaryColor3fEXT_remap_index }, - { 16689, SecondaryColor3fvEXT_remap_index }, - { 426, SecondaryColor3iEXT_remap_index }, - { 14898, SecondaryColor3ivEXT_remap_index }, - { 9127, SecondaryColor3sEXT_remap_index }, - { 28302, SecondaryColor3svEXT_remap_index }, - { 25000, SecondaryColor3ubEXT_remap_index }, - { 19507, SecondaryColor3ubvEXT_remap_index }, - { 11763, SecondaryColor3uiEXT_remap_index }, - { 21008, SecondaryColor3uivEXT_remap_index }, - { 23771, SecondaryColor3usEXT_remap_index }, - { 11836, SecondaryColor3usvEXT_remap_index }, - { 10736, SecondaryColorPointerEXT_remap_index }, - { 23585, MultiDrawArraysEXT_remap_index }, - { 19197, MultiDrawElementsEXT_remap_index }, - { 19392, FogCoordPointerEXT_remap_index }, - { 4044, FogCoorddEXT_remap_index }, - { 28915, FogCoorddvEXT_remap_index }, - { 4136, FogCoordfEXT_remap_index }, - { 24923, FogCoordfvEXT_remap_index }, - { 17448, PixelTexGenSGIX_remap_index }, - { 25508, BlendFuncSeparateEXT_remap_index }, - { 6071, FlushVertexArrayRangeNV_remap_index }, - { 4688, VertexArrayRangeNV_remap_index }, - { 25892, CombinerInputNV_remap_index }, - { 1946, CombinerOutputNV_remap_index }, - { 28455, CombinerParameterfNV_remap_index }, - { 4608, CombinerParameterfvNV_remap_index }, - { 20527, CombinerParameteriNV_remap_index }, - { 29885, CombinerParameterivNV_remap_index }, - { 6447, FinalCombinerInputNV_remap_index }, - { 8956, GetCombinerInputParameterfvNV_remap_index }, - { 29722, GetCombinerInputParameterivNV_remap_index }, - { 12692, GetCombinerOutputParameterfvNV_remap_index }, - { 12520, GetCombinerOutputParameterivNV_remap_index }, - { 5816, GetFinalCombinerInputParameterfvNV_remap_index }, - { 22790, GetFinalCombinerInputParameterivNV_remap_index }, - { 11508, ResizeBuffersMESA_remap_index }, - { 10109, WindowPos2dMESA_remap_index }, - { 944, WindowPos2dvMESA_remap_index }, - { 30713, WindowPos2fMESA_remap_index }, - { 7114, WindowPos2fvMESA_remap_index }, - { 16636, WindowPos2iMESA_remap_index }, - { 18682, WindowPos2ivMESA_remap_index }, - { 19296, WindowPos2sMESA_remap_index }, - { 5031, WindowPos2svMESA_remap_index }, - { 6939, WindowPos3dMESA_remap_index }, - { 12838, WindowPos3dvMESA_remap_index }, - { 472, WindowPos3fMESA_remap_index }, - { 13670, WindowPos3fvMESA_remap_index }, - { 22102, WindowPos3iMESA_remap_index }, - { 27768, WindowPos3ivMESA_remap_index }, - { 17154, WindowPos3sMESA_remap_index }, - { 29171, WindowPos3svMESA_remap_index }, - { 10060, WindowPos4dMESA_remap_index }, - { 15601, WindowPos4dvMESA_remap_index }, - { 12797, WindowPos4fMESA_remap_index }, - { 28209, WindowPos4fvMESA_remap_index }, - { 27921, WindowPos4iMESA_remap_index }, - { 11311, WindowPos4ivMESA_remap_index }, - { 17327, WindowPos4sMESA_remap_index }, - { 2857, WindowPos4svMESA_remap_index }, - { 12559, MultiModeDrawArraysIBM_remap_index }, - { 26641, MultiModeDrawElementsIBM_remap_index }, - { 11115, DeleteFencesNV_remap_index }, - { 25739, FinishFenceNV_remap_index }, - { 3287, GenFencesNV_remap_index }, - { 15581, GetFenceivNV_remap_index }, - { 7406, IsFenceNV_remap_index }, - { 12447, SetFenceNV_remap_index }, - { 3744, TestFenceNV_remap_index }, - { 29142, AreProgramsResidentNV_remap_index }, - { 28497, BindProgramNV_remap_index }, - { 23854, DeleteProgramsNV_remap_index }, - { 19725, ExecuteProgramNV_remap_index }, - { 30606, GenProgramsNV_remap_index }, - { 21467, GetProgramParameterdvNV_remap_index }, - { 9531, GetProgramParameterfvNV_remap_index }, - { 24237, GetProgramStringNV_remap_index }, - { 22479, GetProgramivNV_remap_index }, - { 21701, GetTrackMatrixivNV_remap_index }, - { 24031, GetVertexAttribPointervNV_remap_index }, - { 22723, GetVertexAttribdvNV_remap_index }, - { 8426, GetVertexAttribfvNV_remap_index }, - { 16817, GetVertexAttribivNV_remap_index }, - { 17574, IsProgramNV_remap_index }, - { 8509, LoadProgramNV_remap_index }, - { 25604, ProgramParameters4dvNV_remap_index }, - { 22409, ProgramParameters4fvNV_remap_index }, - { 18986, RequestResidentProgramsNV_remap_index }, - { 20505, TrackMatrixNV_remap_index }, - { 29699, VertexAttrib1dNV_remap_index }, - { 12358, VertexAttrib1dvNV_remap_index }, - { 26173, VertexAttrib1fNV_remap_index }, - { 2245, VertexAttrib1fvNV_remap_index }, - { 28266, VertexAttrib1sNV_remap_index }, - { 13743, VertexAttrib1svNV_remap_index }, - { 4251, VertexAttrib2dNV_remap_index }, - { 12273, VertexAttrib2dvNV_remap_index }, - { 18441, VertexAttrib2fNV_remap_index }, - { 11884, VertexAttrib2fvNV_remap_index }, - { 5191, VertexAttrib2sNV_remap_index }, - { 17208, VertexAttrib2svNV_remap_index }, - { 10257, VertexAttrib3dNV_remap_index }, - { 29392, VertexAttrib3dvNV_remap_index }, - { 9343, VertexAttrib3fNV_remap_index }, - { 22750, VertexAttrib3fvNV_remap_index }, - { 20382, VertexAttrib3sNV_remap_index }, - { 21728, VertexAttrib3svNV_remap_index }, - { 26615, VertexAttrib4dNV_remap_index }, - { 30643, VertexAttrib4dvNV_remap_index }, - { 3945, VertexAttrib4fNV_remap_index }, - { 8559, VertexAttrib4fvNV_remap_index }, - { 24582, VertexAttrib4sNV_remap_index }, - { 1293, VertexAttrib4svNV_remap_index }, - { 4409, VertexAttrib4ubNV_remap_index }, - { 734, VertexAttrib4ubvNV_remap_index }, - { 19905, VertexAttribPointerNV_remap_index }, - { 2097, VertexAttribs1dvNV_remap_index }, - { 24119, VertexAttribs1fvNV_remap_index }, - { 30443, VertexAttribs1svNV_remap_index }, - { 9368, VertexAttribs2dvNV_remap_index }, - { 23312, VertexAttribs2fvNV_remap_index }, - { 16149, VertexAttribs2svNV_remap_index }, - { 4636, VertexAttribs3dvNV_remap_index }, - { 1977, VertexAttribs3fvNV_remap_index }, - { 27516, VertexAttribs3svNV_remap_index }, - { 24672, VertexAttribs4dvNV_remap_index }, - { 4662, VertexAttribs4fvNV_remap_index }, - { 30230, VertexAttribs4svNV_remap_index }, - { 27264, VertexAttribs4ubvNV_remap_index }, - { 24742, GetTexBumpParameterfvATI_remap_index }, - { 30484, GetTexBumpParameterivATI_remap_index }, - { 16871, TexBumpParameterfvATI_remap_index }, - { 18857, TexBumpParameterivATI_remap_index }, - { 14289, AlphaFragmentOp1ATI_remap_index }, - { 9919, AlphaFragmentOp2ATI_remap_index }, - { 22666, AlphaFragmentOp3ATI_remap_index }, - { 27443, BeginFragmentShaderATI_remap_index }, - { 28696, BindFragmentShaderATI_remap_index }, - { 21857, ColorFragmentOp1ATI_remap_index }, - { 3823, ColorFragmentOp2ATI_remap_index }, - { 29037, ColorFragmentOp3ATI_remap_index }, - { 4781, DeleteFragmentShaderATI_remap_index }, - { 30667, EndFragmentShaderATI_remap_index }, - { 29913, GenFragmentShadersATI_remap_index }, - { 23443, PassTexCoordATI_remap_index }, - { 6139, SampleMapATI_remap_index }, - { 5912, SetFragmentShaderConstantATI_remap_index }, - { 319, PointParameteriNV_remap_index }, - { 12999, PointParameterivNV_remap_index }, - { 26454, ActiveStencilFaceEXT_remap_index }, - { 25264, BindVertexArrayAPPLE_remap_index }, - { 2522, DeleteVertexArraysAPPLE_remap_index }, - { 16488, GenVertexArraysAPPLE_remap_index }, - { 21532, IsVertexArrayAPPLE_remap_index }, - { 775, GetProgramNamedParameterdvNV_remap_index }, - { 3128, GetProgramNamedParameterfvNV_remap_index }, - { 24773, ProgramNamedParameter4dNV_remap_index }, - { 13325, ProgramNamedParameter4dvNV_remap_index }, - { 8042, ProgramNamedParameter4fNV_remap_index }, - { 10701, ProgramNamedParameter4fvNV_remap_index }, - { 22388, DepthBoundsEXT_remap_index }, - { 1043, BlendEquationSeparateEXT_remap_index }, - { 13444, BindFramebufferEXT_remap_index }, - { 23630, BindRenderbufferEXT_remap_index }, - { 8806, CheckFramebufferStatusEXT_remap_index }, - { 20822, DeleteFramebuffersEXT_remap_index }, - { 29294, DeleteRenderbuffersEXT_remap_index }, - { 12297, FramebufferRenderbufferEXT_remap_index }, - { 12464, FramebufferTexture1DEXT_remap_index }, - { 10495, FramebufferTexture2DEXT_remap_index }, - { 10162, FramebufferTexture3DEXT_remap_index }, - { 21424, GenFramebuffersEXT_remap_index }, - { 16035, GenRenderbuffersEXT_remap_index }, - { 5858, GenerateMipmapEXT_remap_index }, - { 20002, GetFramebufferAttachmentParameterivEXT_remap_index }, - { 29819, GetRenderbufferParameterivEXT_remap_index }, - { 18737, IsFramebufferEXT_remap_index }, - { 30566, IsRenderbufferEXT_remap_index }, - { 7353, RenderbufferStorageEXT_remap_index }, - { 651, BlitFramebufferEXT_remap_index }, - { 13144, BufferParameteriAPPLE_remap_index }, - { 17606, FlushMappedBufferRangeAPPLE_remap_index }, - { 2701, FramebufferTextureLayerEXT_remap_index }, - { 4956, ColorMaskIndexedEXT_remap_index }, - { 17232, DisableIndexedEXT_remap_index }, - { 24429, EnableIndexedEXT_remap_index }, - { 19973, GetBooleanIndexedvEXT_remap_index }, - { 9952, GetIntegerIndexedvEXT_remap_index }, - { 20898, IsEnabledIndexedEXT_remap_index }, - { 4074, BeginConditionalRenderNV_remap_index }, - { 23416, EndConditionalRenderNV_remap_index }, - { 8453, BeginTransformFeedbackEXT_remap_index }, - { 17256, BindBufferBaseEXT_remap_index }, - { 17126, BindBufferOffsetEXT_remap_index }, - { 11136, BindBufferRangeEXT_remap_index }, - { 13059, EndTransformFeedbackEXT_remap_index }, - { 9804, GetTransformFeedbackVaryingEXT_remap_index }, - { 19042, TransformFeedbackVaryingsEXT_remap_index }, - { 27165, ProvokingVertexEXT_remap_index }, - { 9752, GetTexParameterPointervAPPLE_remap_index }, - { 4436, TextureRangeAPPLE_remap_index }, - { 10567, GetObjectParameterivAPPLE_remap_index }, - { 18181, ObjectPurgeableAPPLE_remap_index }, - { 4985, ObjectUnpurgeableAPPLE_remap_index }, - { 26480, StencilFuncSeparateATI_remap_index }, - { 16555, ProgramEnvParameters4fvEXT_remap_index }, - { 19936, ProgramLocalParameters4fvEXT_remap_index }, - { 12927, GetQueryObjecti64vEXT_remap_index }, - { 9394, GetQueryObjectui64vEXT_remap_index }, - { 21926, EGLImageTargetRenderbufferStorageOES_remap_index }, - { 11054, EGLImageTargetTexture2DOES_remap_index }, + { 2514, UniformMatrix4fvARB_remap_index }, + { 23358, UseProgramObjectARB_remap_index }, + { 13552, ValidateProgramARB_remap_index }, + { 19623, BindAttribLocationARB_remap_index }, + { 4385, GetActiveAttribARB_remap_index }, + { 15204, GetAttribLocationARB_remap_index }, + { 27107, DrawBuffersARB_remap_index }, + { 26970, ClampColorARB_remap_index }, + { 12091, RenderbufferStorageMultisample_remap_index }, + { 12495, FramebufferTextureARB_remap_index }, + { 23728, FramebufferTextureFaceARB_remap_index }, + { 22216, ProgramParameteriARB_remap_index }, + { 17551, FlushMappedBufferRange_remap_index }, + { 25620, MapBufferRange_remap_index }, + { 15079, BindVertexArray_remap_index }, + { 13411, GenVertexArrays_remap_index }, + { 27882, CopyBufferSubData_remap_index }, + { 28697, ClientWaitSync_remap_index }, + { 2433, DeleteSync_remap_index }, + { 6409, FenceSync_remap_index }, + { 13923, GetInteger64v_remap_index }, + { 20810, GetSynciv_remap_index }, + { 27046, IsSync_remap_index }, + { 8570, WaitSync_remap_index }, + { 3402, DrawElementsBaseVertex_remap_index }, + { 28125, DrawRangeElementsBaseVertex_remap_index }, + { 24341, MultiDrawElementsBaseVertex_remap_index }, + { 4519, BindTransformFeedback_remap_index }, + { 2945, DeleteTransformFeedbacks_remap_index }, + { 5699, DrawTransformFeedback_remap_index }, + { 8789, GenTransformFeedbacks_remap_index }, + { 26000, IsTransformFeedback_remap_index }, + { 23921, PauseTransformFeedback_remap_index }, + { 4892, ResumeTransformFeedback_remap_index }, + { 4807, PolygonOffsetEXT_remap_index }, + { 21395, GetPixelTexGenParameterfvSGIS_remap_index }, + { 3934, GetPixelTexGenParameterivSGIS_remap_index }, + { 21128, PixelTexGenParameterfSGIS_remap_index }, + { 619, PixelTexGenParameterfvSGIS_remap_index }, + { 11646, PixelTexGenParameteriSGIS_remap_index }, + { 12637, PixelTexGenParameterivSGIS_remap_index }, + { 15167, SampleMaskSGIS_remap_index }, + { 18216, SamplePatternSGIS_remap_index }, + { 24270, ColorPointerEXT_remap_index }, + { 16130, EdgeFlagPointerEXT_remap_index }, + { 5320, IndexPointerEXT_remap_index }, + { 5400, NormalPointerEXT_remap_index }, + { 14517, TexCoordPointerEXT_remap_index }, + { 6198, VertexPointerEXT_remap_index }, + { 3204, PointParameterfEXT_remap_index }, + { 7049, PointParameterfvEXT_remap_index }, + { 29534, LockArraysEXT_remap_index }, + { 13616, UnlockArraysEXT_remap_index }, + { 8056, CullParameterdvEXT_remap_index }, + { 10699, CullParameterfvEXT_remap_index }, + { 1190, SecondaryColor3bEXT_remap_index }, + { 7208, SecondaryColor3bvEXT_remap_index }, + { 9508, SecondaryColor3dEXT_remap_index }, + { 23531, SecondaryColor3dvEXT_remap_index }, + { 25866, SecondaryColor3fEXT_remap_index }, + { 16696, SecondaryColor3fvEXT_remap_index }, + { 465, SecondaryColor3iEXT_remap_index }, + { 14905, SecondaryColor3ivEXT_remap_index }, + { 9166, SecondaryColor3sEXT_remap_index }, + { 28361, SecondaryColor3svEXT_remap_index }, + { 25039, SecondaryColor3ubEXT_remap_index }, + { 19514, SecondaryColor3ubvEXT_remap_index }, + { 11841, SecondaryColor3uiEXT_remap_index }, + { 21015, SecondaryColor3uivEXT_remap_index }, + { 23778, SecondaryColor3usEXT_remap_index }, + { 11914, SecondaryColor3usvEXT_remap_index }, + { 10775, SecondaryColorPointerEXT_remap_index }, + { 23592, MultiDrawArraysEXT_remap_index }, + { 19204, MultiDrawElementsEXT_remap_index }, + { 19399, FogCoordPointerEXT_remap_index }, + { 4083, FogCoorddEXT_remap_index }, + { 28935, FogCoorddvEXT_remap_index }, + { 4175, FogCoordfEXT_remap_index }, + { 24962, FogCoordfvEXT_remap_index }, + { 17455, PixelTexGenSGIX_remap_index }, + { 25547, BlendFuncSeparateEXT_remap_index }, + { 6110, FlushVertexArrayRangeNV_remap_index }, + { 4756, VertexArrayRangeNV_remap_index }, + { 25931, CombinerInputNV_remap_index }, + { 1985, CombinerOutputNV_remap_index }, + { 28514, CombinerParameterfNV_remap_index }, + { 4676, CombinerParameterfvNV_remap_index }, + { 20534, CombinerParameteriNV_remap_index }, + { 29905, CombinerParameterivNV_remap_index }, + { 6486, FinalCombinerInputNV_remap_index }, + { 8995, GetCombinerInputParameterfvNV_remap_index }, + { 29742, GetCombinerInputParameterivNV_remap_index }, + { 172, GetCombinerOutputParameterfvNV_remap_index }, + { 12598, GetCombinerOutputParameterivNV_remap_index }, + { 5855, GetFinalCombinerInputParameterfvNV_remap_index }, + { 22797, GetFinalCombinerInputParameterivNV_remap_index }, + { 11586, ResizeBuffersMESA_remap_index }, + { 10148, WindowPos2dMESA_remap_index }, + { 983, WindowPos2dvMESA_remap_index }, + { 30733, WindowPos2fMESA_remap_index }, + { 7153, WindowPos2fvMESA_remap_index }, + { 16643, WindowPos2iMESA_remap_index }, + { 18689, WindowPos2ivMESA_remap_index }, + { 19303, WindowPos2sMESA_remap_index }, + { 5070, WindowPos2svMESA_remap_index }, + { 6978, WindowPos3dMESA_remap_index }, + { 12845, WindowPos3dvMESA_remap_index }, + { 511, WindowPos3fMESA_remap_index }, + { 13677, WindowPos3fvMESA_remap_index }, + { 22109, WindowPos3iMESA_remap_index }, + { 27827, WindowPos3ivMESA_remap_index }, + { 17161, WindowPos3sMESA_remap_index }, + { 29191, WindowPos3svMESA_remap_index }, + { 10099, WindowPos4dMESA_remap_index }, + { 15608, WindowPos4dvMESA_remap_index }, + { 12804, WindowPos4fMESA_remap_index }, + { 28268, WindowPos4fvMESA_remap_index }, + { 27980, WindowPos4iMESA_remap_index }, + { 11389, WindowPos4ivMESA_remap_index }, + { 17334, WindowPos4sMESA_remap_index }, + { 2896, WindowPos4svMESA_remap_index }, + { 24705, MultiModeDrawArraysIBM_remap_index }, + { 26680, MultiModeDrawElementsIBM_remap_index }, + { 11154, DeleteFencesNV_remap_index }, + { 25778, FinishFenceNV_remap_index }, + { 3326, GenFencesNV_remap_index }, + { 15588, GetFenceivNV_remap_index }, + { 7445, IsFenceNV_remap_index }, + { 12525, SetFenceNV_remap_index }, + { 3783, TestFenceNV_remap_index }, + { 29162, AreProgramsResidentNV_remap_index }, + { 28556, BindProgramNV_remap_index }, + { 23861, DeleteProgramsNV_remap_index }, + { 19732, ExecuteProgramNV_remap_index }, + { 30626, GenProgramsNV_remap_index }, + { 21474, GetProgramParameterdvNV_remap_index }, + { 9570, GetProgramParameterfvNV_remap_index }, + { 24244, GetProgramStringNV_remap_index }, + { 22486, GetProgramivNV_remap_index }, + { 21708, GetTrackMatrixivNV_remap_index }, + { 24038, GetVertexAttribPointervNV_remap_index }, + { 22730, GetVertexAttribdvNV_remap_index }, + { 8465, GetVertexAttribfvNV_remap_index }, + { 16824, GetVertexAttribivNV_remap_index }, + { 17581, IsProgramNV_remap_index }, + { 8548, LoadProgramNV_remap_index }, + { 25643, ProgramParameters4dvNV_remap_index }, + { 22416, ProgramParameters4fvNV_remap_index }, + { 18993, RequestResidentProgramsNV_remap_index }, + { 20512, TrackMatrixNV_remap_index }, + { 29719, VertexAttrib1dNV_remap_index }, + { 12436, VertexAttrib1dvNV_remap_index }, + { 26212, VertexAttrib1fNV_remap_index }, + { 2284, VertexAttrib1fvNV_remap_index }, + { 28325, VertexAttrib1sNV_remap_index }, + { 13750, VertexAttrib1svNV_remap_index }, + { 4290, VertexAttrib2dNV_remap_index }, + { 12351, VertexAttrib2dvNV_remap_index }, + { 18448, VertexAttrib2fNV_remap_index }, + { 11962, VertexAttrib2fvNV_remap_index }, + { 5230, VertexAttrib2sNV_remap_index }, + { 17215, VertexAttrib2svNV_remap_index }, + { 10296, VertexAttrib3dNV_remap_index }, + { 29412, VertexAttrib3dvNV_remap_index }, + { 9382, VertexAttrib3fNV_remap_index }, + { 22757, VertexAttrib3fvNV_remap_index }, + { 20389, VertexAttrib3sNV_remap_index }, + { 21735, VertexAttrib3svNV_remap_index }, + { 26654, VertexAttrib4dNV_remap_index }, + { 30663, VertexAttrib4dvNV_remap_index }, + { 3984, VertexAttrib4fNV_remap_index }, + { 8598, VertexAttrib4fvNV_remap_index }, + { 24589, VertexAttrib4sNV_remap_index }, + { 1332, VertexAttrib4svNV_remap_index }, + { 4448, VertexAttrib4ubNV_remap_index }, + { 773, VertexAttrib4ubvNV_remap_index }, + { 19912, VertexAttribPointerNV_remap_index }, + { 2136, VertexAttribs1dvNV_remap_index }, + { 24126, VertexAttribs1fvNV_remap_index }, + { 30463, VertexAttribs1svNV_remap_index }, + { 9407, VertexAttribs2dvNV_remap_index }, + { 23319, VertexAttribs2fvNV_remap_index }, + { 16156, VertexAttribs2svNV_remap_index }, + { 4704, VertexAttribs3dvNV_remap_index }, + { 2016, VertexAttribs3fvNV_remap_index }, + { 27575, VertexAttribs3svNV_remap_index }, + { 24679, VertexAttribs4dvNV_remap_index }, + { 4730, VertexAttribs4fvNV_remap_index }, + { 30250, VertexAttribs4svNV_remap_index }, + { 27323, VertexAttribs4ubvNV_remap_index }, + { 24781, GetTexBumpParameterfvATI_remap_index }, + { 30504, GetTexBumpParameterivATI_remap_index }, + { 16878, TexBumpParameterfvATI_remap_index }, + { 18864, TexBumpParameterivATI_remap_index }, + { 14296, AlphaFragmentOp1ATI_remap_index }, + { 9958, AlphaFragmentOp2ATI_remap_index }, + { 22673, AlphaFragmentOp3ATI_remap_index }, + { 27502, BeginFragmentShaderATI_remap_index }, + { 28755, BindFragmentShaderATI_remap_index }, + { 21864, ColorFragmentOp1ATI_remap_index }, + { 3862, ColorFragmentOp2ATI_remap_index }, + { 29057, ColorFragmentOp3ATI_remap_index }, + { 4849, DeleteFragmentShaderATI_remap_index }, + { 30687, EndFragmentShaderATI_remap_index }, + { 29933, GenFragmentShadersATI_remap_index }, + { 23450, PassTexCoordATI_remap_index }, + { 6178, SampleMapATI_remap_index }, + { 5951, SetFragmentShaderConstantATI_remap_index }, + { 358, PointParameteriNV_remap_index }, + { 13006, PointParameterivNV_remap_index }, + { 26493, ActiveStencilFaceEXT_remap_index }, + { 25303, BindVertexArrayAPPLE_remap_index }, + { 2561, DeleteVertexArraysAPPLE_remap_index }, + { 16495, GenVertexArraysAPPLE_remap_index }, + { 21539, IsVertexArrayAPPLE_remap_index }, + { 814, GetProgramNamedParameterdvNV_remap_index }, + { 3167, GetProgramNamedParameterfvNV_remap_index }, + { 24812, ProgramNamedParameter4dNV_remap_index }, + { 13332, ProgramNamedParameter4dvNV_remap_index }, + { 8081, ProgramNamedParameter4fNV_remap_index }, + { 10740, ProgramNamedParameter4fvNV_remap_index }, + { 22395, DepthBoundsEXT_remap_index }, + { 1082, BlendEquationSeparateEXT_remap_index }, + { 13451, BindFramebufferEXT_remap_index }, + { 23637, BindRenderbufferEXT_remap_index }, + { 8845, CheckFramebufferStatusEXT_remap_index }, + { 20829, DeleteFramebuffersEXT_remap_index }, + { 29314, DeleteRenderbuffersEXT_remap_index }, + { 12375, FramebufferRenderbufferEXT_remap_index }, + { 12542, FramebufferTexture1DEXT_remap_index }, + { 10534, FramebufferTexture2DEXT_remap_index }, + { 10201, FramebufferTexture3DEXT_remap_index }, + { 21431, GenFramebuffersEXT_remap_index }, + { 16042, GenRenderbuffersEXT_remap_index }, + { 5897, GenerateMipmapEXT_remap_index }, + { 20009, GetFramebufferAttachmentParameterivEXT_remap_index }, + { 29839, GetRenderbufferParameterivEXT_remap_index }, + { 18744, IsFramebufferEXT_remap_index }, + { 30586, IsRenderbufferEXT_remap_index }, + { 7392, RenderbufferStorageEXT_remap_index }, + { 690, BlitFramebufferEXT_remap_index }, + { 13151, BufferParameteriAPPLE_remap_index }, + { 17613, FlushMappedBufferRangeAPPLE_remap_index }, + { 2740, FramebufferTextureLayerEXT_remap_index }, + { 4613, ColorMaskIndexedEXT_remap_index }, + { 17239, DisableIndexedEXT_remap_index }, + { 24436, EnableIndexedEXT_remap_index }, + { 19980, GetBooleanIndexedvEXT_remap_index }, + { 9991, GetIntegerIndexedvEXT_remap_index }, + { 20905, IsEnabledIndexedEXT_remap_index }, + { 4113, BeginConditionalRenderNV_remap_index }, + { 23423, EndConditionalRenderNV_remap_index }, + { 8492, BeginTransformFeedbackEXT_remap_index }, + { 17263, BindBufferBaseEXT_remap_index }, + { 17133, BindBufferOffsetEXT_remap_index }, + { 11214, BindBufferRangeEXT_remap_index }, + { 13066, EndTransformFeedbackEXT_remap_index }, + { 9843, GetTransformFeedbackVaryingEXT_remap_index }, + { 19049, TransformFeedbackVaryingsEXT_remap_index }, + { 27224, ProvokingVertexEXT_remap_index }, + { 9791, GetTexParameterPointervAPPLE_remap_index }, + { 4475, TextureRangeAPPLE_remap_index }, + { 10606, GetObjectParameterivAPPLE_remap_index }, + { 18188, ObjectPurgeableAPPLE_remap_index }, + { 5024, ObjectUnpurgeableAPPLE_remap_index }, + { 26519, StencilFuncSeparateATI_remap_index }, + { 16562, ProgramEnvParameters4fvEXT_remap_index }, + { 19943, ProgramLocalParameters4fvEXT_remap_index }, + { 12934, GetQueryObjecti64vEXT_remap_index }, + { 9433, GetQueryObjectui64vEXT_remap_index }, + { 21933, EGLImageTargetRenderbufferStorageOES_remap_index }, + { 11093, 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 */ - { 2440, _gloffset_BlendColor }, + { 2479, _gloffset_BlendColor }, /* from GL_EXT_blend_minmax */ - { 10219, _gloffset_BlendEquation }, + { 10258, _gloffset_BlendEquation }, /* from GL_EXT_color_subtable */ - { 15623, _gloffset_ColorSubTable }, - { 29226, _gloffset_CopyColorSubTable }, + { 15630, _gloffset_ColorSubTable }, + { 29246, _gloffset_CopyColorSubTable }, /* from GL_EXT_convolution */ - { 213, _gloffset_ConvolutionFilter1D }, - { 2284, _gloffset_CopyConvolutionFilter1D }, - { 3624, _gloffset_GetConvolutionParameteriv }, - { 7702, _gloffset_ConvolutionFilter2D }, - { 7868, _gloffset_ConvolutionParameteriv }, - { 8328, _gloffset_ConvolutionParameterfv }, - { 18885, _gloffset_GetSeparableFilter }, - { 22156, _gloffset_SeparableFilter2D }, - { 22968, _gloffset_ConvolutionParameteri }, - { 23091, _gloffset_ConvolutionParameterf }, - { 24608, _gloffset_GetConvolutionParameterfv }, - { 25430, _gloffset_GetConvolutionFilter }, - { 27705, _gloffset_CopyConvolutionFilter2D }, + { 252, _gloffset_ConvolutionFilter1D }, + { 2323, _gloffset_CopyConvolutionFilter1D }, + { 3663, _gloffset_GetConvolutionParameteriv }, + { 7741, _gloffset_ConvolutionFilter2D }, + { 7907, _gloffset_ConvolutionParameteriv }, + { 8367, _gloffset_ConvolutionParameterfv }, + { 18892, _gloffset_GetSeparableFilter }, + { 22163, _gloffset_SeparableFilter2D }, + { 22975, _gloffset_ConvolutionParameteri }, + { 23098, _gloffset_ConvolutionParameterf }, + { 24615, _gloffset_GetConvolutionParameterfv }, + { 25469, _gloffset_GetConvolutionFilter }, + { 27764, _gloffset_CopyConvolutionFilter2D }, /* from GL_EXT_copy_texture */ - { 13803, _gloffset_CopyTexSubImage3D }, - { 15363, _gloffset_CopyTexImage2D }, - { 22576, _gloffset_CopyTexImage1D }, - { 25111, _gloffset_CopyTexSubImage2D }, - { 27343, _gloffset_CopyTexSubImage1D }, + { 13810, _gloffset_CopyTexSubImage3D }, + { 15370, _gloffset_CopyTexImage2D }, + { 22583, _gloffset_CopyTexImage1D }, + { 25150, _gloffset_CopyTexSubImage2D }, + { 27402, _gloffset_CopyTexSubImage1D }, /* from GL_EXT_draw_range_elements */ - { 8665, _gloffset_DrawRangeElements }, + { 8704, _gloffset_DrawRangeElements }, /* from GL_EXT_histogram */ - { 812, _gloffset_Histogram }, - { 3088, _gloffset_ResetHistogram }, - { 9065, _gloffset_GetMinmax }, - { 14137, _gloffset_GetHistogramParameterfv }, - { 22501, _gloffset_GetMinmaxParameteriv }, - { 24498, _gloffset_ResetMinmax }, - { 25327, _gloffset_GetHistogramParameteriv }, - { 26414, _gloffset_GetHistogram }, - { 28812, _gloffset_Minmax }, - { 30313, _gloffset_GetMinmaxParameterfv }, + { 851, _gloffset_Histogram }, + { 3127, _gloffset_ResetHistogram }, + { 9104, _gloffset_GetMinmax }, + { 14144, _gloffset_GetHistogramParameterfv }, + { 22508, _gloffset_GetMinmaxParameteriv }, + { 24505, _gloffset_ResetMinmax }, + { 25366, _gloffset_GetHistogramParameteriv }, + { 26453, _gloffset_GetHistogram }, + { 28871, _gloffset_Minmax }, + { 30333, _gloffset_GetMinmaxParameterfv }, /* from GL_EXT_paletted_texture */ - { 7564, _gloffset_ColorTable }, - { 13983, _gloffset_GetColorTable }, - { 21171, _gloffset_GetColorTableParameterfv }, - { 23147, _gloffset_GetColorTableParameteriv }, + { 7603, _gloffset_ColorTable }, + { 13990, _gloffset_GetColorTable }, + { 21178, _gloffset_GetColorTableParameterfv }, + { 23154, _gloffset_GetColorTableParameteriv }, /* from GL_EXT_subtexture */ - { 6285, _gloffset_TexSubImage1D }, - { 9679, _gloffset_TexSubImage2D }, + { 6324, _gloffset_TexSubImage1D }, + { 9718, _gloffset_TexSubImage2D }, /* from GL_EXT_texture3D */ - { 1658, _gloffset_TexImage3D }, - { 20940, _gloffset_TexSubImage3D }, + { 1697, _gloffset_TexImage3D }, + { 20947, _gloffset_TexSubImage3D }, /* from GL_EXT_texture_object */ - { 2964, _gloffset_PrioritizeTextures }, - { 6734, _gloffset_AreTexturesResident }, - { 12382, _gloffset_GenTextures }, - { 14469, _gloffset_DeleteTextures }, - { 17887, _gloffset_IsTexture }, - { 27408, _gloffset_BindTexture }, + { 3003, _gloffset_PrioritizeTextures }, + { 6773, _gloffset_AreTexturesResident }, + { 12460, _gloffset_GenTextures }, + { 14476, _gloffset_DeleteTextures }, + { 17894, _gloffset_IsTexture }, + { 27467, _gloffset_BindTexture }, /* from GL_EXT_vertex_array */ - { 22328, _gloffset_ArrayElement }, - { 28400, _gloffset_GetPointerv }, - { 29940, _gloffset_DrawArrays }, + { 22335, _gloffset_ArrayElement }, + { 28459, _gloffset_GetPointerv }, + { 29960, _gloffset_DrawArrays }, /* from GL_SGI_color_table */ - { 6852, _gloffset_ColorTableParameteriv }, - { 7564, _gloffset_ColorTable }, - { 13983, _gloffset_GetColorTable }, - { 14093, _gloffset_CopyColorTable }, - { 17748, _gloffset_ColorTableParameterfv }, - { 21171, _gloffset_GetColorTableParameterfv }, - { 23147, _gloffset_GetColorTableParameteriv }, + { 6891, _gloffset_ColorTableParameteriv }, + { 7603, _gloffset_ColorTable }, + { 13990, _gloffset_GetColorTable }, + { 14100, _gloffset_CopyColorTable }, + { 17755, _gloffset_ColorTableParameterfv }, + { 21178, _gloffset_GetColorTableParameterfv }, + { 23154, _gloffset_GetColorTableParameteriv }, /* from GL_VERSION_1_3 */ - { 381, _gloffset_MultiTexCoord3sARB }, - { 613, _gloffset_ActiveTextureARB }, - { 3761, _gloffset_MultiTexCoord1fvARB }, - { 5386, _gloffset_MultiTexCoord3dARB }, - { 5431, _gloffset_MultiTexCoord2iARB }, - { 5555, _gloffset_MultiTexCoord2svARB }, - { 7520, _gloffset_MultiTexCoord2fARB }, - { 9424, _gloffset_MultiTexCoord3fvARB }, - { 9981, _gloffset_MultiTexCoord4sARB }, - { 10615, _gloffset_MultiTexCoord2dvARB }, - { 10997, _gloffset_MultiTexCoord1svARB }, - { 11369, _gloffset_MultiTexCoord3svARB }, - { 11430, _gloffset_MultiTexCoord4iARB }, - { 12153, _gloffset_MultiTexCoord3iARB }, - { 12956, _gloffset_MultiTexCoord1dARB }, - { 13173, _gloffset_MultiTexCoord3dvARB }, - { 14337, _gloffset_MultiTexCoord3ivARB }, - { 14382, _gloffset_MultiTexCoord2sARB }, - { 15680, _gloffset_MultiTexCoord4ivARB }, - { 17398, _gloffset_ClientActiveTextureARB }, - { 19681, _gloffset_MultiTexCoord2dARB }, - { 20122, _gloffset_MultiTexCoord4dvARB }, - { 20433, _gloffset_MultiTexCoord4fvARB }, - { 21312, _gloffset_MultiTexCoord3fARB }, - { 23675, _gloffset_MultiTexCoord4dARB }, - { 23941, _gloffset_MultiTexCoord1sARB }, - { 24145, _gloffset_MultiTexCoord1dvARB }, - { 24955, _gloffset_MultiTexCoord1ivARB }, - { 25048, _gloffset_MultiTexCoord2ivARB }, - { 25387, _gloffset_MultiTexCoord1iARB }, - { 26689, _gloffset_MultiTexCoord4svARB }, - { 27207, _gloffset_MultiTexCoord1fARB }, - { 27470, _gloffset_MultiTexCoord4fARB }, - { 29774, _gloffset_MultiTexCoord2fvARB }, + { 420, _gloffset_MultiTexCoord3sARB }, + { 652, _gloffset_ActiveTextureARB }, + { 3800, _gloffset_MultiTexCoord1fvARB }, + { 5425, _gloffset_MultiTexCoord3dARB }, + { 5470, _gloffset_MultiTexCoord2iARB }, + { 5594, _gloffset_MultiTexCoord2svARB }, + { 7559, _gloffset_MultiTexCoord2fARB }, + { 9463, _gloffset_MultiTexCoord3fvARB }, + { 10020, _gloffset_MultiTexCoord4sARB }, + { 10654, _gloffset_MultiTexCoord2dvARB }, + { 11036, _gloffset_MultiTexCoord1svARB }, + { 11447, _gloffset_MultiTexCoord3svARB }, + { 11508, _gloffset_MultiTexCoord4iARB }, + { 12231, _gloffset_MultiTexCoord3iARB }, + { 12963, _gloffset_MultiTexCoord1dARB }, + { 13180, _gloffset_MultiTexCoord3dvARB }, + { 14344, _gloffset_MultiTexCoord3ivARB }, + { 14389, _gloffset_MultiTexCoord2sARB }, + { 15687, _gloffset_MultiTexCoord4ivARB }, + { 17405, _gloffset_ClientActiveTextureARB }, + { 19688, _gloffset_MultiTexCoord2dARB }, + { 20129, _gloffset_MultiTexCoord4dvARB }, + { 20440, _gloffset_MultiTexCoord4fvARB }, + { 21319, _gloffset_MultiTexCoord3fARB }, + { 23682, _gloffset_MultiTexCoord4dARB }, + { 23948, _gloffset_MultiTexCoord1sARB }, + { 24152, _gloffset_MultiTexCoord1dvARB }, + { 24994, _gloffset_MultiTexCoord1ivARB }, + { 25087, _gloffset_MultiTexCoord2ivARB }, + { 25426, _gloffset_MultiTexCoord1iARB }, + { 26728, _gloffset_MultiTexCoord4svARB }, + { 27266, _gloffset_MultiTexCoord1fARB }, + { 27529, _gloffset_MultiTexCoord4fARB }, + { 29794, _gloffset_MultiTexCoord2fvARB }, { -1, -1 } }; @@ -5004,7 +5009,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[] = { - { 8386, -1 }, /* TbufferMask3DFX */ + { 8425, -1 }, /* TbufferMask3DFX */ { -1, -1 } }; #endif @@ -5037,6 +5042,13 @@ static const struct gl_function_remap GL_APPLE_vertex_array_object_functions[] = }; #endif +#if defined(need_GL_ARB_color_buffer_float) +/* functions defined in MESA_remap_table_functions are excluded */ +static const struct gl_function_remap GL_ARB_color_buffer_float_functions[] = { + { -1, -1 } +}; +#endif + #if defined(need_GL_ARB_copy_buffer) /* functions defined in MESA_remap_table_functions are excluded */ static const struct gl_function_remap GL_ARB_copy_buffer_functions[] = { @@ -5075,7 +5087,7 @@ 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[] = { - { 11333, -1 }, /* FramebufferTextureLayer */ + { 11411, -1 }, /* FramebufferTextureLayer */ { -1, -1 } }; #endif @@ -5089,11 +5101,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[] = { - { 3339, -1 }, /* MatrixIndexusvARB */ - { 11974, -1 }, /* MatrixIndexuivARB */ - { 13295, -1 }, /* MatrixIndexPointerARB */ - { 18136, -1 }, /* CurrentPaletteMatrixARB */ - { 21056, -1 }, /* MatrixIndexubvARB */ + { 3378, -1 }, /* MatrixIndexusvARB */ + { 12052, -1 }, /* MatrixIndexuivARB */ + { 13302, -1 }, /* MatrixIndexPointerARB */ + { 18143, -1 }, /* CurrentPaletteMatrixARB */ + { 21063, -1 }, /* MatrixIndexubvARB */ { -1, -1 } }; #endif @@ -5170,16 +5182,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[] = { - { 2226, -1 }, /* WeightubvARB */ - { 5746, -1 }, /* WeightivARB */ - { 10084, -1 }, /* WeightPointerARB */ - { 12674, -1 }, /* WeightfvARB */ - { 16175, -1 }, /* WeightbvARB */ - { 19349, -1 }, /* WeightusvARB */ - { 22082, -1 }, /* VertexBlendARB */ - { 27291, -1 }, /* WeightsvARB */ - { 29276, -1 }, /* WeightdvARB */ - { 29974, -1 }, /* WeightuivARB */ + { 2265, -1 }, /* WeightubvARB */ + { 5785, -1 }, /* WeightivARB */ + { 10123, -1 }, /* WeightPointerARB */ + { 12720, -1 }, /* WeightfvARB */ + { 16182, -1 }, /* WeightbvARB */ + { 19356, -1 }, /* WeightusvARB */ + { 22089, -1 }, /* VertexBlendARB */ + { 27350, -1 }, /* WeightsvARB */ + { 29296, -1 }, /* WeightdvARB */ + { 29994, -1 }, /* WeightuivARB */ { -1, -1 } }; #endif @@ -5249,7 +5261,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[] = { - { 2440, _gloffset_BlendColor }, + { 2479, _gloffset_BlendColor }, { -1, -1 } }; #endif @@ -5270,15 +5282,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[] = { - { 10219, _gloffset_BlendEquation }, + { 10258, _gloffset_BlendEquation }, { -1, -1 } }; #endif #if defined(need_GL_EXT_color_subtable) static const struct gl_function_remap GL_EXT_color_subtable_functions[] = { - { 15623, _gloffset_ColorSubTable }, - { 29226, _gloffset_CopyColorSubTable }, + { 15630, _gloffset_ColorSubTable }, + { 29246, _gloffset_CopyColorSubTable }, { -1, -1 } }; #endif @@ -5292,58 +5304,58 @@ 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[] = { - { 213, _gloffset_ConvolutionFilter1D }, - { 2284, _gloffset_CopyConvolutionFilter1D }, - { 3624, _gloffset_GetConvolutionParameteriv }, - { 7702, _gloffset_ConvolutionFilter2D }, - { 7868, _gloffset_ConvolutionParameteriv }, - { 8328, _gloffset_ConvolutionParameterfv }, - { 18885, _gloffset_GetSeparableFilter }, - { 22156, _gloffset_SeparableFilter2D }, - { 22968, _gloffset_ConvolutionParameteri }, - { 23091, _gloffset_ConvolutionParameterf }, - { 24608, _gloffset_GetConvolutionParameterfv }, - { 25430, _gloffset_GetConvolutionFilter }, - { 27705, _gloffset_CopyConvolutionFilter2D }, + { 252, _gloffset_ConvolutionFilter1D }, + { 2323, _gloffset_CopyConvolutionFilter1D }, + { 3663, _gloffset_GetConvolutionParameteriv }, + { 7741, _gloffset_ConvolutionFilter2D }, + { 7907, _gloffset_ConvolutionParameteriv }, + { 8367, _gloffset_ConvolutionParameterfv }, + { 18892, _gloffset_GetSeparableFilter }, + { 22163, _gloffset_SeparableFilter2D }, + { 22975, _gloffset_ConvolutionParameteri }, + { 23098, _gloffset_ConvolutionParameterf }, + { 24615, _gloffset_GetConvolutionParameterfv }, + { 25469, _gloffset_GetConvolutionFilter }, + { 27764, _gloffset_CopyConvolutionFilter2D }, { -1, -1 } }; #endif #if defined(need_GL_EXT_coordinate_frame) static const struct gl_function_remap GL_EXT_coordinate_frame_functions[] = { - { 9563, -1 }, /* TangentPointerEXT */ - { 11488, -1 }, /* Binormal3ivEXT */ - { 12106, -1 }, /* Tangent3sEXT */ - { 13360, -1 }, /* Tangent3fvEXT */ - { 17107, -1 }, /* Tangent3dvEXT */ - { 17834, -1 }, /* Binormal3bvEXT */ - { 18938, -1 }, /* Binormal3dEXT */ - { 20988, -1 }, /* Tangent3fEXT */ - { 23040, -1 }, /* Binormal3sEXT */ - { 23485, -1 }, /* Tangent3ivEXT */ - { 23504, -1 }, /* Tangent3dEXT */ - { 24372, -1 }, /* Binormal3svEXT */ - { 24853, -1 }, /* Binormal3fEXT */ - { 25705, -1 }, /* Binormal3dvEXT */ - { 26911, -1 }, /* Tangent3iEXT */ - { 27990, -1 }, /* Tangent3bvEXT */ - { 28435, -1 }, /* Tangent3bEXT */ - { 28999, -1 }, /* Binormal3fvEXT */ - { 29673, -1 }, /* BinormalPointerEXT */ - { 30078, -1 }, /* Tangent3svEXT */ - { 30515, -1 }, /* Binormal3bEXT */ - { 30692, -1 }, /* Binormal3iEXT */ + { 9602, -1 }, /* TangentPointerEXT */ + { 11566, -1 }, /* Binormal3ivEXT */ + { 12184, -1 }, /* Tangent3sEXT */ + { 13367, -1 }, /* Tangent3fvEXT */ + { 17114, -1 }, /* Tangent3dvEXT */ + { 17841, -1 }, /* Binormal3bvEXT */ + { 18945, -1 }, /* Binormal3dEXT */ + { 20995, -1 }, /* Tangent3fEXT */ + { 23047, -1 }, /* Binormal3sEXT */ + { 23492, -1 }, /* Tangent3ivEXT */ + { 23511, -1 }, /* Tangent3dEXT */ + { 24379, -1 }, /* Binormal3svEXT */ + { 24892, -1 }, /* Binormal3fEXT */ + { 25744, -1 }, /* Binormal3dvEXT */ + { 26950, -1 }, /* Tangent3iEXT */ + { 28049, -1 }, /* Tangent3bvEXT */ + { 28494, -1 }, /* Tangent3bEXT */ + { 29019, -1 }, /* Binormal3fvEXT */ + { 29693, -1 }, /* BinormalPointerEXT */ + { 30098, -1 }, /* Tangent3svEXT */ + { 30535, -1 }, /* Binormal3bEXT */ + { 30712, -1 }, /* Binormal3iEXT */ { -1, -1 } }; #endif #if defined(need_GL_EXT_copy_texture) static const struct gl_function_remap GL_EXT_copy_texture_functions[] = { - { 13803, _gloffset_CopyTexSubImage3D }, - { 15363, _gloffset_CopyTexImage2D }, - { 22576, _gloffset_CopyTexImage1D }, - { 25111, _gloffset_CopyTexSubImage2D }, - { 27343, _gloffset_CopyTexSubImage1D }, + { 13810, _gloffset_CopyTexSubImage3D }, + { 15370, _gloffset_CopyTexImage2D }, + { 22583, _gloffset_CopyTexImage1D }, + { 25150, _gloffset_CopyTexSubImage2D }, + { 27402, _gloffset_CopyTexSubImage1D }, { -1, -1 } }; #endif @@ -5378,7 +5390,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[] = { - { 8665, _gloffset_DrawRangeElements }, + { 8704, _gloffset_DrawRangeElements }, { -1, -1 } }; #endif @@ -5420,39 +5432,39 @@ static const struct gl_function_remap GL_EXT_gpu_program_parameters_functions[] #if defined(need_GL_EXT_histogram) static const struct gl_function_remap GL_EXT_histogram_functions[] = { - { 812, _gloffset_Histogram }, - { 3088, _gloffset_ResetHistogram }, - { 9065, _gloffset_GetMinmax }, - { 14137, _gloffset_GetHistogramParameterfv }, - { 22501, _gloffset_GetMinmaxParameteriv }, - { 24498, _gloffset_ResetMinmax }, - { 25327, _gloffset_GetHistogramParameteriv }, - { 26414, _gloffset_GetHistogram }, - { 28812, _gloffset_Minmax }, - { 30313, _gloffset_GetMinmaxParameterfv }, + { 851, _gloffset_Histogram }, + { 3127, _gloffset_ResetHistogram }, + { 9104, _gloffset_GetMinmax }, + { 14144, _gloffset_GetHistogramParameterfv }, + { 22508, _gloffset_GetMinmaxParameteriv }, + { 24505, _gloffset_ResetMinmax }, + { 25366, _gloffset_GetHistogramParameteriv }, + { 26453, _gloffset_GetHistogram }, + { 28871, _gloffset_Minmax }, + { 30333, _gloffset_GetMinmaxParameterfv }, { -1, -1 } }; #endif #if defined(need_GL_EXT_index_func) static const struct gl_function_remap GL_EXT_index_func_functions[] = { - { 10446, -1 }, /* IndexFuncEXT */ + { 10485, -1 }, /* IndexFuncEXT */ { -1, -1 } }; #endif #if defined(need_GL_EXT_index_material) static const struct gl_function_remap GL_EXT_index_material_functions[] = { - { 19436, -1 }, /* IndexMaterialEXT */ + { 19443, -1 }, /* IndexMaterialEXT */ { -1, -1 } }; #endif #if defined(need_GL_EXT_light_texture) static const struct gl_function_remap GL_EXT_light_texture_functions[] = { - { 24392, -1 }, /* ApplyTextureEXT */ - { 24452, -1 }, /* TextureMaterialEXT */ - { 24477, -1 }, /* TextureLightEXT */ + { 24399, -1 }, /* ApplyTextureEXT */ + { 24459, -1 }, /* TextureMaterialEXT */ + { 24484, -1 }, /* TextureLightEXT */ { -1, -1 } }; #endif @@ -5473,20 +5485,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[] = { - { 7564, _gloffset_ColorTable }, - { 13983, _gloffset_GetColorTable }, - { 21171, _gloffset_GetColorTableParameterfv }, - { 23147, _gloffset_GetColorTableParameteriv }, + { 7603, _gloffset_ColorTable }, + { 13990, _gloffset_GetColorTable }, + { 21178, _gloffset_GetColorTableParameterfv }, + { 23154, _gloffset_GetColorTableParameteriv }, { -1, -1 } }; #endif #if defined(need_GL_EXT_pixel_transform) static const struct gl_function_remap GL_EXT_pixel_transform_functions[] = { - { 20087, -1 }, /* PixelTransformParameterfEXT */ - { 20167, -1 }, /* PixelTransformParameteriEXT */ - { 28173, -1 }, /* PixelTransformParameterfvEXT */ - { 29637, -1 }, /* PixelTransformParameterivEXT */ + { 20094, -1 }, /* PixelTransformParameterfEXT */ + { 20174, -1 }, /* PixelTransformParameteriEXT */ + { 28232, -1 }, /* PixelTransformParameterfvEXT */ + { 29657, -1 }, /* PixelTransformParameterivEXT */ { -1, -1 } }; #endif @@ -5528,16 +5540,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[] = { - { 6285, _gloffset_TexSubImage1D }, - { 9679, _gloffset_TexSubImage2D }, + { 6324, _gloffset_TexSubImage1D }, + { 9718, _gloffset_TexSubImage2D }, { -1, -1 } }; #endif #if defined(need_GL_EXT_texture3D) static const struct gl_function_remap GL_EXT_texture3D_functions[] = { - { 1658, _gloffset_TexImage3D }, - { 20940, _gloffset_TexSubImage3D }, + { 1697, _gloffset_TexImage3D }, + { 20947, _gloffset_TexSubImage3D }, { -1, -1 } }; #endif @@ -5551,19 +5563,19 @@ static const struct gl_function_remap GL_EXT_texture_array_functions[] = { #if defined(need_GL_EXT_texture_object) static const struct gl_function_remap GL_EXT_texture_object_functions[] = { - { 2964, _gloffset_PrioritizeTextures }, - { 6734, _gloffset_AreTexturesResident }, - { 12382, _gloffset_GenTextures }, - { 14469, _gloffset_DeleteTextures }, - { 17887, _gloffset_IsTexture }, - { 27408, _gloffset_BindTexture }, + { 3003, _gloffset_PrioritizeTextures }, + { 6773, _gloffset_AreTexturesResident }, + { 12460, _gloffset_GenTextures }, + { 14476, _gloffset_DeleteTextures }, + { 17894, _gloffset_IsTexture }, + { 27467, _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[] = { - { 12624, -1 }, /* TextureNormalEXT */ + { 12670, -1 }, /* TextureNormalEXT */ { -1, -1 } }; #endif @@ -5585,30 +5597,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[] = { - { 22328, _gloffset_ArrayElement }, - { 28400, _gloffset_GetPointerv }, - { 29940, _gloffset_DrawArrays }, + { 22335, _gloffset_ArrayElement }, + { 28459, _gloffset_GetPointerv }, + { 29960, _gloffset_DrawArrays }, { -1, -1 } }; #endif #if defined(need_GL_EXT_vertex_weighting) static const struct gl_function_remap GL_EXT_vertex_weighting_functions[] = { - { 17917, -1 }, /* VertexWeightfvEXT */ - { 24831, -1 }, /* VertexWeightfEXT */ - { 26383, -1 }, /* VertexWeightPointerEXT */ + { 17924, -1 }, /* VertexWeightfvEXT */ + { 24870, -1 }, /* VertexWeightfEXT */ + { 26422, -1 }, /* VertexWeightPointerEXT */ { -1, -1 } }; #endif #if defined(need_GL_HP_image_transform) static const struct gl_function_remap GL_HP_image_transform_functions[] = { - { 2157, -1 }, /* GetImageTransformParameterfvHP */ - { 3305, -1 }, /* ImageTransformParameterfHP */ - { 9257, -1 }, /* ImageTransformParameterfvHP */ - { 10915, -1 }, /* ImageTransformParameteriHP */ - { 11223, -1 }, /* GetImageTransformParameterivHP */ - { 17981, -1 }, /* ImageTransformParameterivHP */ + { 2196, -1 }, /* GetImageTransformParameterfvHP */ + { 3344, -1 }, /* ImageTransformParameterfHP */ + { 9296, -1 }, /* ImageTransformParameterfvHP */ + { 10954, -1 }, /* ImageTransformParameteriHP */ + { 11301, -1 }, /* GetImageTransformParameterivHP */ + { 17988, -1 }, /* ImageTransformParameterivHP */ { -1, -1 } }; #endif @@ -5622,14 +5634,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[] = { - { 3857, -1 }, /* SecondaryColorPointerListIBM */ - { 5252, -1 }, /* NormalPointerListIBM */ - { 6908, -1 }, /* FogCoordPointerListIBM */ - { 7215, -1 }, /* VertexPointerListIBM */ - { 10836, -1 }, /* ColorPointerListIBM */ - { 12213, -1 }, /* TexCoordPointerListIBM */ - { 12646, -1 }, /* IndexPointerListIBM */ - { 30256, -1 }, /* EdgeFlagPointerListIBM */ + { 3896, -1 }, /* SecondaryColorPointerListIBM */ + { 5291, -1 }, /* NormalPointerListIBM */ + { 6947, -1 }, /* FogCoordPointerListIBM */ + { 7254, -1 }, /* VertexPointerListIBM */ + { 10875, -1 }, /* ColorPointerListIBM */ + { 12291, -1 }, /* TexCoordPointerListIBM */ + { 12692, -1 }, /* IndexPointerListIBM */ + { 30276, -1 }, /* EdgeFlagPointerListIBM */ { -1, -1 } }; #endif @@ -5643,10 +5655,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[] = { - { 11600, -1 }, /* VertexPointervINTEL */ - { 14230, -1 }, /* ColorPointervINTEL */ - { 27679, -1 }, /* NormalPointervINTEL */ - { 28105, -1 }, /* TexCoordPointervINTEL */ + { 11678, -1 }, /* VertexPointervINTEL */ + { 14237, -1 }, /* ColorPointervINTEL */ + { 27738, -1 }, /* NormalPointervINTEL */ + { 28164, -1 }, /* TexCoordPointervINTEL */ { -1, -1 } }; #endif @@ -5660,10 +5672,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[] = { - { 1522, -1 }, /* GetDebugLogLengthMESA */ - { 3063, -1 }, /* ClearDebugLogMESA */ - { 4018, -1 }, /* GetDebugLogMESA */ - { 28593, -1 }, /* CreateDebugObjectMESA */ + { 1561, -1 }, /* GetDebugLogLengthMESA */ + { 3102, -1 }, /* ClearDebugLogMESA */ + { 4057, -1 }, /* GetDebugLogMESA */ + { 28652, -1 }, /* CreateDebugObjectMESA */ { -1, -1 } }; #endif @@ -5684,15 +5696,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[] = { - { 5947, -1 }, /* GetMapAttribParameterivNV */ - { 7670, -1 }, /* MapControlPointsNV */ - { 7769, -1 }, /* MapParameterfvNV */ - { 9662, -1 }, /* EvalMapsNV */ - { 15845, -1 }, /* GetMapAttribParameterfvNV */ - { 16011, -1 }, /* MapParameterivNV */ - { 22891, -1 }, /* GetMapParameterivNV */ - { 23389, -1 }, /* GetMapParameterfvNV */ - { 27015, -1 }, /* GetMapControlPointsNV */ + { 5986, -1 }, /* GetMapAttribParameterivNV */ + { 7709, -1 }, /* MapControlPointsNV */ + { 7808, -1 }, /* MapParameterfvNV */ + { 9701, -1 }, /* EvalMapsNV */ + { 15852, -1 }, /* GetMapAttribParameterfvNV */ + { 16018, -1 }, /* MapParameterivNV */ + { 22898, -1 }, /* GetMapParameterivNV */ + { 23396, -1 }, /* GetMapParameterfvNV */ + { 27074, -1 }, /* GetMapControlPointsNV */ { -1, -1 } }; #endif @@ -5727,8 +5739,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[] = { - { 14700, -1 }, /* CombinerStageParameterfvNV */ - { 15015, -1 }, /* GetCombinerStageParameterfvNV */ + { 14707, -1 }, /* CombinerStageParameterfvNV */ + { 15022, -1 }, /* GetCombinerStageParameterfvNV */ { -1, -1 } }; #endif @@ -5756,23 +5768,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[] = { - { 7854, -1 }, /* HintPGI */ + { 7893, -1 }, /* HintPGI */ { -1, -1 } }; #endif #if defined(need_GL_SGIS_detail_texture) static const struct gl_function_remap GL_SGIS_detail_texture_functions[] = { - { 14988, -1 }, /* GetDetailTexFuncSGIS */ - { 15308, -1 }, /* DetailTexFuncSGIS */ + { 14995, -1 }, /* GetDetailTexFuncSGIS */ + { 15315, -1 }, /* DetailTexFuncSGIS */ { -1, -1 } }; #endif #if defined(need_GL_SGIS_fog_function) static const struct gl_function_remap GL_SGIS_fog_function_functions[] = { - { 25093, -1 }, /* FogFuncSGIS */ - { 25758, -1 }, /* GetFogFuncSGIS */ + { 25132, -1 }, /* FogFuncSGIS */ + { 25797, -1 }, /* GetFogFuncSGIS */ { -1, -1 } }; #endif @@ -5800,112 +5812,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[] = { - { 6008, -1 }, /* GetSharpenTexFuncSGIS */ - { 20407, -1 }, /* SharpenTexFuncSGIS */ + { 6047, -1 }, /* GetSharpenTexFuncSGIS */ + { 20414, -1 }, /* SharpenTexFuncSGIS */ { -1, -1 } }; #endif #if defined(need_GL_SGIS_texture4D) static const struct gl_function_remap GL_SGIS_texture4D_functions[] = { - { 894, -1 }, /* TexImage4DSGIS */ - { 14538, -1 }, /* TexSubImage4DSGIS */ + { 933, -1 }, /* TexImage4DSGIS */ + { 14545, -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[] = { - { 13936, -1 }, /* TextureColorMaskSGIS */ + { 13943, -1 }, /* TextureColorMaskSGIS */ { -1, -1 } }; #endif #if defined(need_GL_SGIS_texture_filter4) static const struct gl_function_remap GL_SGIS_texture_filter4_functions[] = { - { 6185, -1 }, /* GetTexFilterFuncSGIS */ - { 15134, -1 }, /* TexFilterFuncSGIS */ + { 6224, -1 }, /* GetTexFilterFuncSGIS */ + { 15141, -1 }, /* TexFilterFuncSGIS */ { -1, -1 } }; #endif #if defined(need_GL_SGIX_async) static const struct gl_function_remap GL_SGIX_async_functions[] = { - { 3014, -1 }, /* AsyncMarkerSGIX */ - { 3997, -1 }, /* FinishAsyncSGIX */ - { 4762, -1 }, /* PollAsyncSGIX */ - { 20554, -1 }, /* DeleteAsyncMarkersSGIX */ - { 20609, -1 }, /* IsAsyncMarkerSGIX */ - { 30053, -1 }, /* GenAsyncMarkersSGIX */ + { 3053, -1 }, /* AsyncMarkerSGIX */ + { 4036, -1 }, /* FinishAsyncSGIX */ + { 4830, -1 }, /* PollAsyncSGIX */ + { 20561, -1 }, /* DeleteAsyncMarkersSGIX */ + { 20616, -1 }, /* IsAsyncMarkerSGIX */ + { 30073, -1 }, /* GenAsyncMarkersSGIX */ { -1, -1 } }; #endif #if defined(need_GL_SGIX_flush_raster) static const struct gl_function_remap GL_SGIX_flush_raster_functions[] = { - { 6562, -1 }, /* FlushRasterSGIX */ + { 6601, -1 }, /* FlushRasterSGIX */ { -1, -1 } }; #endif #if defined(need_GL_SGIX_fragment_lighting) static const struct gl_function_remap GL_SGIX_fragment_lighting_functions[] = { - { 2410, -1 }, /* FragmentMaterialfvSGIX */ - { 4713, -1 }, /* FragmentLightiSGIX */ - { 5688, -1 }, /* GetFragmentMaterialfvSGIX */ - { 7282, -1 }, /* FragmentMaterialfSGIX */ - { 7443, -1 }, /* GetFragmentLightivSGIX */ - { 8280, -1 }, /* FragmentLightModeliSGIX */ - { 9725, -1 }, /* FragmentLightivSGIX */ - { 10027, -1 }, /* GetFragmentMaterialivSGIX */ - { 17804, -1 }, /* FragmentLightModelfSGIX */ - { 18104, -1 }, /* FragmentColorMaterialSGIX */ - { 18504, -1 }, /* FragmentMaterialiSGIX */ - { 19764, -1 }, /* LightEnviSGIX */ - { 21263, -1 }, /* FragmentLightModelfvSGIX */ - { 21572, -1 }, /* FragmentLightfvSGIX */ - { 26142, -1 }, /* FragmentLightModelivSGIX */ - { 26265, -1 }, /* FragmentLightfSGIX */ - { 28969, -1 }, /* GetFragmentLightfvSGIX */ - { 30536, -1 }, /* FragmentMaterialivSGIX */ + { 2449, -1 }, /* FragmentMaterialfvSGIX */ + { 4781, -1 }, /* FragmentLightiSGIX */ + { 5727, -1 }, /* GetFragmentMaterialfvSGIX */ + { 7321, -1 }, /* FragmentMaterialfSGIX */ + { 7482, -1 }, /* GetFragmentLightivSGIX */ + { 8319, -1 }, /* FragmentLightModeliSGIX */ + { 9764, -1 }, /* FragmentLightivSGIX */ + { 10066, -1 }, /* GetFragmentMaterialivSGIX */ + { 17811, -1 }, /* FragmentLightModelfSGIX */ + { 18111, -1 }, /* FragmentColorMaterialSGIX */ + { 18511, -1 }, /* FragmentMaterialiSGIX */ + { 19771, -1 }, /* LightEnviSGIX */ + { 21270, -1 }, /* FragmentLightModelfvSGIX */ + { 21579, -1 }, /* FragmentLightfvSGIX */ + { 26181, -1 }, /* FragmentLightModelivSGIX */ + { 26304, -1 }, /* FragmentLightfSGIX */ + { 28989, -1 }, /* GetFragmentLightfvSGIX */ + { 30556, -1 }, /* FragmentMaterialivSGIX */ { -1, -1 } }; #endif #if defined(need_GL_SGIX_framezoom) static const struct gl_function_remap GL_SGIX_framezoom_functions[] = { - { 20632, -1 }, /* FrameZoomSGIX */ + { 20639, -1 }, /* FrameZoomSGIX */ { -1, -1 } }; #endif #if defined(need_GL_SGIX_igloo_interface) static const struct gl_function_remap GL_SGIX_igloo_interface_functions[] = { - { 26573, -1 }, /* IglooInterfaceSGIX */ + { 26612, -1 }, /* IglooInterfaceSGIX */ { -1, -1 } }; #endif #if defined(need_GL_SGIX_instruments) static const struct gl_function_remap GL_SGIX_instruments_functions[] = { - { 2573, -1 }, /* ReadInstrumentsSGIX */ - { 5764, -1 }, /* PollInstrumentsSGIX */ - { 9623, -1 }, /* GetInstrumentsSGIX */ - { 11811, -1 }, /* StartInstrumentsSGIX */ - { 14734, -1 }, /* StopInstrumentsSGIX */ - { 16388, -1 }, /* InstrumentsBufferSGIX */ + { 2612, -1 }, /* ReadInstrumentsSGIX */ + { 5803, -1 }, /* PollInstrumentsSGIX */ + { 9662, -1 }, /* GetInstrumentsSGIX */ + { 11889, -1 }, /* StartInstrumentsSGIX */ + { 14741, -1 }, /* StopInstrumentsSGIX */ + { 16395, -1 }, /* InstrumentsBufferSGIX */ { -1, -1 } }; #endif #if defined(need_GL_SGIX_list_priority) static const struct gl_function_remap GL_SGIX_list_priority_functions[] = { - { 1125, -1 }, /* ListParameterfSGIX */ - { 2763, -1 }, /* GetListParameterfvSGIX */ - { 16303, -1 }, /* ListParameteriSGIX */ - { 17057, -1 }, /* ListParameterfvSGIX */ - { 19170, -1 }, /* ListParameterivSGIX */ - { 30097, -1 }, /* GetListParameterivSGIX */ + { 1164, -1 }, /* ListParameterfSGIX */ + { 2802, -1 }, /* GetListParameterfvSGIX */ + { 16310, -1 }, /* ListParameteriSGIX */ + { 17064, -1 }, /* ListParameterfvSGIX */ + { 19177, -1 }, /* ListParameterivSGIX */ + { 30117, -1 }, /* GetListParameterivSGIX */ { -1, -1 } }; #endif @@ -5919,134 +5931,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[] = { - { 3251, -1 }, /* LoadIdentityDeformationMapSGIX */ - { 14834, -1 }, /* DeformSGIX */ - { 22440, -1 }, /* DeformationMap3fSGIX */ - { 28857, -1 }, /* DeformationMap3dSGIX */ + { 3290, -1 }, /* LoadIdentityDeformationMapSGIX */ + { 11175, -1 }, /* DeformationMap3dSGIX */ + { 14841, -1 }, /* DeformSGIX */ + { 22447, -1 }, /* DeformationMap3fSGIX */ { -1, -1 } }; #endif #if defined(need_GL_SGIX_reference_plane) static const struct gl_function_remap GL_SGIX_reference_plane_functions[] = { - { 13487, -1 }, /* ReferencePlaneSGIX */ + { 13494, -1 }, /* ReferencePlaneSGIX */ { -1, -1 } }; #endif #if defined(need_GL_SGIX_sprite) static const struct gl_function_remap GL_SGIX_sprite_functions[] = { - { 8778, -1 }, /* SpriteParameterfvSGIX */ - { 18959, -1 }, /* SpriteParameteriSGIX */ - { 24532, -1 }, /* SpriteParameterfSGIX */ - { 27137, -1 }, /* SpriteParameterivSGIX */ + { 8817, -1 }, /* SpriteParameterfvSGIX */ + { 18966, -1 }, /* SpriteParameteriSGIX */ + { 24539, -1 }, /* SpriteParameterfSGIX */ + { 27196, -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[] = { - { 19018, -1 }, /* TagSampleBufferSGIX */ + { 19025, -1 }, /* TagSampleBufferSGIX */ { -1, -1 } }; #endif #if defined(need_GL_SGI_color_table) static const struct gl_function_remap GL_SGI_color_table_functions[] = { - { 6852, _gloffset_ColorTableParameteriv }, - { 7564, _gloffset_ColorTable }, - { 13983, _gloffset_GetColorTable }, - { 14093, _gloffset_CopyColorTable }, - { 17748, _gloffset_ColorTableParameterfv }, - { 21171, _gloffset_GetColorTableParameterfv }, - { 23147, _gloffset_GetColorTableParameteriv }, + { 6891, _gloffset_ColorTableParameteriv }, + { 7603, _gloffset_ColorTable }, + { 13990, _gloffset_GetColorTable }, + { 14100, _gloffset_CopyColorTable }, + { 17755, _gloffset_ColorTableParameterfv }, + { 21178, _gloffset_GetColorTableParameterfv }, + { 23154, _gloffset_GetColorTableParameteriv }, { -1, -1 } }; #endif #if defined(need_GL_SUNX_constant_data) static const struct gl_function_remap GL_SUNX_constant_data_functions[] = { - { 28947, -1 }, /* FinishTextureSUNX */ + { 28967, -1 }, /* FinishTextureSUNX */ { -1, -1 } }; #endif #if defined(need_GL_SUN_global_alpha) static const struct gl_function_remap GL_SUN_global_alpha_functions[] = { - { 3035, -1 }, /* GlobalAlphaFactorubSUN */ - { 4224, -1 }, /* GlobalAlphaFactoriSUN */ - { 5789, -1 }, /* GlobalAlphaFactordSUN */ - { 8862, -1 }, /* GlobalAlphaFactoruiSUN */ - { 9214, -1 }, /* GlobalAlphaFactorbSUN */ - { 12126, -1 }, /* GlobalAlphaFactorfSUN */ - { 12245, -1 }, /* GlobalAlphaFactorusSUN */ - { 20871, -1 }, /* GlobalAlphaFactorsSUN */ + { 3074, -1 }, /* GlobalAlphaFactorubSUN */ + { 4263, -1 }, /* GlobalAlphaFactoriSUN */ + { 5828, -1 }, /* GlobalAlphaFactordSUN */ + { 8901, -1 }, /* GlobalAlphaFactoruiSUN */ + { 9253, -1 }, /* GlobalAlphaFactorbSUN */ + { 12204, -1 }, /* GlobalAlphaFactorfSUN */ + { 12323, -1 }, /* GlobalAlphaFactorusSUN */ + { 20878, -1 }, /* GlobalAlphaFactorsSUN */ { -1, -1 } }; #endif #if defined(need_GL_SUN_mesh_array) static const struct gl_function_remap GL_SUN_mesh_array_functions[] = { - { 26949, -1 }, /* DrawMeshArraysSUN */ + { 27008, -1 }, /* DrawMeshArraysSUN */ { -1, -1 } }; #endif #if defined(need_GL_SUN_triangle_list) static const struct gl_function_remap GL_SUN_triangle_list_functions[] = { - { 3971, -1 }, /* ReplacementCodeubSUN */ - { 5600, -1 }, /* ReplacementCodeubvSUN */ - { 17469, -1 }, /* ReplacementCodeusvSUN */ - { 17657, -1 }, /* ReplacementCodePointerSUN */ - { 19828, -1 }, /* ReplacementCodeuiSUN */ - { 20583, -1 }, /* ReplacementCodeusSUN */ - { 27594, -1 }, /* ReplacementCodeuivSUN */ + { 4010, -1 }, /* ReplacementCodeubSUN */ + { 5639, -1 }, /* ReplacementCodeubvSUN */ + { 17476, -1 }, /* ReplacementCodeusvSUN */ + { 17664, -1 }, /* ReplacementCodePointerSUN */ + { 19835, -1 }, /* ReplacementCodeuiSUN */ + { 20590, -1 }, /* ReplacementCodeusSUN */ + { 27653, -1 }, /* ReplacementCodeuivSUN */ { -1, -1 } }; #endif #if defined(need_GL_SUN_vertex) static const struct gl_function_remap GL_SUN_vertex_functions[] = { - { 999, -1 }, /* ReplacementCodeuiColor3fVertex3fvSUN */ - { 1197, -1 }, /* TexCoord4fColor4fNormal3fVertex4fvSUN */ - { 1423, -1 }, /* TexCoord2fColor4ubVertex3fvSUN */ - { 1699, -1 }, /* ReplacementCodeuiVertex3fvSUN */ - { 1833, -1 }, /* ReplacementCodeuiTexCoord2fVertex3fvSUN */ - { 2346, -1 }, /* ReplacementCodeuiNormal3fVertex3fSUN */ - { 2642, -1 }, /* Color4ubVertex3fvSUN */ - { 4105, -1 }, /* Color4ubVertex3fSUN */ - { 4181, -1 }, /* TexCoord2fVertex3fSUN */ - { 4508, -1 }, /* TexCoord2fColor4fNormal3fVertex3fSUN */ - { 4866, -1 }, /* TexCoord2fNormal3fVertex3fvSUN */ - { 5495, -1 }, /* ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN */ - { 6240, -1 }, /* ReplacementCodeuiColor4ubVertex3fvSUN */ - { 6599, -1 }, /* ReplacementCodeuiTexCoord2fVertex3fSUN */ - { 7311, -1 }, /* TexCoord2fNormal3fVertex3fSUN */ - { 8079, -1 }, /* Color3fVertex3fSUN */ - { 9173, -1 }, /* Color3fVertex3fvSUN */ - { 9588, -1 }, /* Color4fNormal3fVertex3fvSUN */ - { 10325, -1 }, /* ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN */ - { 11674, -1 }, /* ReplacementCodeuiColor4fNormal3fVertex3fvSUN */ - { 13218, -1 }, /* ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN */ - { 13629, -1 }, /* TexCoord2fColor3fVertex3fSUN */ - { 14759, -1 }, /* TexCoord4fColor4fNormal3fVertex4fSUN */ - { 15093, -1 }, /* Color4ubVertex2fvSUN */ - { 15333, -1 }, /* Normal3fVertex3fSUN */ - { 16329, -1 }, /* ReplacementCodeuiColor4fNormal3fVertex3fSUN */ - { 16590, -1 }, /* TexCoord2fColor4fNormal3fVertex3fvSUN */ - { 17298, -1 }, /* TexCoord2fVertex3fvSUN */ - { 18074, -1 }, /* Color4ubVertex2fSUN */ - { 18295, -1 }, /* ReplacementCodeuiColor4ubVertex3fSUN */ - { 20253, -1 }, /* TexCoord2fColor4ubVertex3fSUN */ - { 20651, -1 }, /* Normal3fVertex3fvSUN */ - { 21080, -1 }, /* Color4fNormal3fVertex3fSUN */ - { 21989, -1 }, /* ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN */ - { 23984, -1 }, /* ReplacementCodeuiColor3fVertex3fSUN */ - { 25209, -1 }, /* TexCoord4fVertex4fSUN */ - { 25635, -1 }, /* TexCoord2fColor3fVertex3fvSUN */ - { 25986, -1 }, /* ReplacementCodeuiNormal3fVertex3fvSUN */ - { 26113, -1 }, /* TexCoord4fVertex4fvSUN */ - { 26821, -1 }, /* ReplacementCodeuiVertex3fSUN */ + { 1038, -1 }, /* ReplacementCodeuiColor3fVertex3fvSUN */ + { 1236, -1 }, /* TexCoord4fColor4fNormal3fVertex4fvSUN */ + { 1462, -1 }, /* TexCoord2fColor4ubVertex3fvSUN */ + { 1738, -1 }, /* ReplacementCodeuiVertex3fvSUN */ + { 1872, -1 }, /* ReplacementCodeuiTexCoord2fVertex3fvSUN */ + { 2385, -1 }, /* ReplacementCodeuiNormal3fVertex3fSUN */ + { 2681, -1 }, /* Color4ubVertex3fvSUN */ + { 4144, -1 }, /* Color4ubVertex3fSUN */ + { 4220, -1 }, /* TexCoord2fVertex3fSUN */ + { 4547, -1 }, /* TexCoord2fColor4fNormal3fVertex3fSUN */ + { 4934, -1 }, /* TexCoord2fNormal3fVertex3fvSUN */ + { 5534, -1 }, /* ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN */ + { 6279, -1 }, /* ReplacementCodeuiColor4ubVertex3fvSUN */ + { 6638, -1 }, /* ReplacementCodeuiTexCoord2fVertex3fSUN */ + { 7350, -1 }, /* TexCoord2fNormal3fVertex3fSUN */ + { 8118, -1 }, /* Color3fVertex3fSUN */ + { 9212, -1 }, /* Color3fVertex3fvSUN */ + { 9627, -1 }, /* Color4fNormal3fVertex3fvSUN */ + { 10364, -1 }, /* ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN */ + { 11752, -1 }, /* ReplacementCodeuiColor4fNormal3fVertex3fvSUN */ + { 13225, -1 }, /* ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN */ + { 13636, -1 }, /* TexCoord2fColor3fVertex3fSUN */ + { 14766, -1 }, /* TexCoord4fColor4fNormal3fVertex4fSUN */ + { 15100, -1 }, /* Color4ubVertex2fvSUN */ + { 15340, -1 }, /* Normal3fVertex3fSUN */ + { 16336, -1 }, /* ReplacementCodeuiColor4fNormal3fVertex3fSUN */ + { 16597, -1 }, /* TexCoord2fColor4fNormal3fVertex3fvSUN */ + { 17305, -1 }, /* TexCoord2fVertex3fvSUN */ + { 18081, -1 }, /* Color4ubVertex2fSUN */ + { 18302, -1 }, /* ReplacementCodeuiColor4ubVertex3fSUN */ + { 20260, -1 }, /* TexCoord2fColor4ubVertex3fSUN */ + { 20658, -1 }, /* Normal3fVertex3fvSUN */ + { 21087, -1 }, /* Color4fNormal3fVertex3fSUN */ + { 21996, -1 }, /* ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN */ + { 23991, -1 }, /* ReplacementCodeuiColor3fVertex3fSUN */ + { 25248, -1 }, /* TexCoord4fVertex4fSUN */ + { 25674, -1 }, /* TexCoord2fColor3fVertex3fvSUN */ + { 26025, -1 }, /* ReplacementCodeuiNormal3fVertex3fvSUN */ + { 26152, -1 }, /* TexCoord4fVertex4fvSUN */ + { 26860, -1 }, /* ReplacementCodeuiVertex3fSUN */ { -1, -1 } }; #endif @@ -6054,40 +6066,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[] = { - { 381, _gloffset_MultiTexCoord3sARB }, - { 613, _gloffset_ActiveTextureARB }, - { 3761, _gloffset_MultiTexCoord1fvARB }, - { 5386, _gloffset_MultiTexCoord3dARB }, - { 5431, _gloffset_MultiTexCoord2iARB }, - { 5555, _gloffset_MultiTexCoord2svARB }, - { 7520, _gloffset_MultiTexCoord2fARB }, - { 9424, _gloffset_MultiTexCoord3fvARB }, - { 9981, _gloffset_MultiTexCoord4sARB }, - { 10615, _gloffset_MultiTexCoord2dvARB }, - { 10997, _gloffset_MultiTexCoord1svARB }, - { 11369, _gloffset_MultiTexCoord3svARB }, - { 11430, _gloffset_MultiTexCoord4iARB }, - { 12153, _gloffset_MultiTexCoord3iARB }, - { 12956, _gloffset_MultiTexCoord1dARB }, - { 13173, _gloffset_MultiTexCoord3dvARB }, - { 14337, _gloffset_MultiTexCoord3ivARB }, - { 14382, _gloffset_MultiTexCoord2sARB }, - { 15680, _gloffset_MultiTexCoord4ivARB }, - { 17398, _gloffset_ClientActiveTextureARB }, - { 19681, _gloffset_MultiTexCoord2dARB }, - { 20122, _gloffset_MultiTexCoord4dvARB }, - { 20433, _gloffset_MultiTexCoord4fvARB }, - { 21312, _gloffset_MultiTexCoord3fARB }, - { 23675, _gloffset_MultiTexCoord4dARB }, - { 23941, _gloffset_MultiTexCoord1sARB }, - { 24145, _gloffset_MultiTexCoord1dvARB }, - { 24955, _gloffset_MultiTexCoord1ivARB }, - { 25048, _gloffset_MultiTexCoord2ivARB }, - { 25387, _gloffset_MultiTexCoord1iARB }, - { 26689, _gloffset_MultiTexCoord4svARB }, - { 27207, _gloffset_MultiTexCoord1fARB }, - { 27470, _gloffset_MultiTexCoord4fARB }, - { 29774, _gloffset_MultiTexCoord2fvARB }, + { 420, _gloffset_MultiTexCoord3sARB }, + { 652, _gloffset_ActiveTextureARB }, + { 3800, _gloffset_MultiTexCoord1fvARB }, + { 5425, _gloffset_MultiTexCoord3dARB }, + { 5470, _gloffset_MultiTexCoord2iARB }, + { 5594, _gloffset_MultiTexCoord2svARB }, + { 7559, _gloffset_MultiTexCoord2fARB }, + { 9463, _gloffset_MultiTexCoord3fvARB }, + { 10020, _gloffset_MultiTexCoord4sARB }, + { 10654, _gloffset_MultiTexCoord2dvARB }, + { 11036, _gloffset_MultiTexCoord1svARB }, + { 11447, _gloffset_MultiTexCoord3svARB }, + { 11508, _gloffset_MultiTexCoord4iARB }, + { 12231, _gloffset_MultiTexCoord3iARB }, + { 12963, _gloffset_MultiTexCoord1dARB }, + { 13180, _gloffset_MultiTexCoord3dvARB }, + { 14344, _gloffset_MultiTexCoord3ivARB }, + { 14389, _gloffset_MultiTexCoord2sARB }, + { 15687, _gloffset_MultiTexCoord4ivARB }, + { 17405, _gloffset_ClientActiveTextureARB }, + { 19688, _gloffset_MultiTexCoord2dARB }, + { 20129, _gloffset_MultiTexCoord4dvARB }, + { 20440, _gloffset_MultiTexCoord4fvARB }, + { 21319, _gloffset_MultiTexCoord3fARB }, + { 23682, _gloffset_MultiTexCoord4dARB }, + { 23948, _gloffset_MultiTexCoord1sARB }, + { 24152, _gloffset_MultiTexCoord1dvARB }, + { 24994, _gloffset_MultiTexCoord1ivARB }, + { 25087, _gloffset_MultiTexCoord2ivARB }, + { 25426, _gloffset_MultiTexCoord1iARB }, + { 26728, _gloffset_MultiTexCoord4svARB }, + { 27266, _gloffset_MultiTexCoord1fARB }, + { 27529, _gloffset_MultiTexCoord4fARB }, + { 29794, _gloffset_MultiTexCoord2fvARB }, { -1, -1 } }; #endif |