From a83c1d61c2919485b1e8ad33fcf658c85b67ba3a Mon Sep 17 00:00:00 2001 From: Dave Airlie Date: Sat, 19 Nov 2011 13:17:07 +0000 Subject: [PATCH] glapi: ARB_blend_func_extended support + regen. (v2) This adds the xml file covering ARB_blend_func_extended. v2: fix SRC1_ALPHA Reviewed-by: Kenneth Graunke Reviewed-by: Eric Anholt Signed-off-by: Dave Airlie --- .../glapi/gen/ARB_blend_func_extended.xml | 32 + src/mapi/glapi/gen/gl_API.xml | 1 + src/mapi/glapi/glapi_gentable.c | 14 + src/mapi/glapi/glapi_mapi_tmp.h | 1868 +++---- src/mapi/glapi/glapi_sparc.S | 744 +-- src/mapi/glapi/glapi_x86-64.S | 3446 ++++++------- src/mapi/glapi/glapi_x86.S | 1084 ++--- src/mapi/glapi/glapitable.h | 754 +-- src/mapi/glapi/glapitemp.h | 202 +- src/mapi/glapi/glprocs.h | 1580 +++--- src/mesa/main/dispatch.h | 1536 +++--- src/mesa/main/enums.c | 4294 +++++++++-------- src/mesa/main/remap_helper.h | 3728 +++++++------- 13 files changed, 9754 insertions(+), 9529 deletions(-) create mode 100644 src/mapi/glapi/gen/ARB_blend_func_extended.xml diff --git a/src/mapi/glapi/gen/ARB_blend_func_extended.xml b/src/mapi/glapi/gen/ARB_blend_func_extended.xml new file mode 100644 index 00000000000..32adcde7733 --- /dev/null +++ b/src/mapi/glapi/gen/ARB_blend_func_extended.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/mapi/glapi/gen/gl_API.xml b/src/mapi/glapi/gen/gl_API.xml index 9f863561168..779931d753d 100644 --- a/src/mapi/glapi/gen/gl_API.xml +++ b/src/mapi/glapi/gen/gl_API.xml @@ -12430,4 +12430,5 @@ + diff --git a/src/mapi/glapi/glapi_gentable.c b/src/mapi/glapi/glapi_gentable.c index abb0d01092e..d459ae85112 100644 --- a/src/mapi/glapi/glapi_gentable.c +++ b/src/mapi/glapi/glapi_gentable.c @@ -5813,6 +5813,20 @@ _glapi_create_table_from_handle(void *handle, const char *symbol_prefix) { } + if(!disp->BindFragDataLocationIndexed) { + void ** procp = (void **) &disp->BindFragDataLocationIndexed; + snprintf(symboln, sizeof(symboln), "%sBindFragDataLocationIndexed", symbol_prefix); + *procp = dlsym(handle, symboln); + } + + + if(!disp->GetFragDataIndex) { + void ** procp = (void **) &disp->GetFragDataIndex; + snprintf(symboln, sizeof(symboln), "%sGetFragDataIndex", symbol_prefix); + *procp = dlsym(handle, symboln); + } + + if(!disp->BindSampler) { void ** procp = (void **) &disp->BindSampler; snprintf(symboln, sizeof(symboln), "%sBindSampler", symbol_prefix); diff --git a/src/mapi/glapi/glapi_mapi_tmp.h b/src/mapi/glapi/glapi_mapi_tmp.h index 647ac9d795b..dea5d875e10 100644 --- a/src/mapi/glapi/glapi_mapi_tmp.h +++ b/src/mapi/glapi/glapi_mapi_tmp.h @@ -813,6 +813,8 @@ GLAPI void APIENTRY GLAPI_PREFIX(BlendFuncSeparateiARB)(GLuint buf, GLenum srcRG GLAPI void APIENTRY GLAPI_PREFIX(BlendFuncSeparateIndexedAMD)(GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcA, GLenum dstA); GLAPI void APIENTRY GLAPI_PREFIX(BlendFunciARB)(GLuint buf, GLenum src, GLenum dst); GLAPI void APIENTRY GLAPI_PREFIX(BlendFuncIndexedAMD)(GLuint buf, GLenum src, GLenum dst); +GLAPI void APIENTRY GLAPI_PREFIX(BindFragDataLocationIndexed)(GLuint program, GLuint colorNumber, GLuint index, const GLchar *name); +GLAPI GLint APIENTRY GLAPI_PREFIX(GetFragDataIndex)(GLuint program, const GLchar *name); GLAPI void APIENTRY GLAPI_PREFIX(BindSampler)(GLuint unit, GLuint sampler); GLAPI void APIENTRY GLAPI_PREFIX(DeleteSamplers)(GLsizei count, const GLuint *samplers); GLAPI void APIENTRY GLAPI_PREFIX(GenSamplers)(GLsizei count, GLuint *samplers); @@ -877,9 +879,9 @@ GLAPI void APIENTRY GLAPI_PREFIX(DepthRangef)(GLclampf zNear, GLclampf zFar); GLAPI void APIENTRY GLAPI_PREFIX(GetShaderPrecisionFormat)(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision); GLAPI void APIENTRY GLAPI_PREFIX(ReleaseShaderCompiler)(void); GLAPI void APIENTRY GLAPI_PREFIX(ShaderBinary)(GLsizei n, const GLuint *shaders, GLenum binaryformat, const GLvoid *binary, GLsizei length); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_665)(GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_666)(GLuint program, GLenum binaryFormat, const GLvoid *binary, GLsizei length); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_667)(GLuint program, GLenum pname, GLint value); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_667)(GLuint program, GLsizei bufSize, GLsizei *length, GLenum *binaryFormat, GLvoid *binary); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_668)(GLuint program, GLenum binaryFormat, const GLvoid *binary, GLsizei length); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_669)(GLuint program, GLenum pname, GLint value); GLAPI void APIENTRY GLAPI_PREFIX(DebugMessageCallbackARB)(GLDEBUGPROCARB callback, GLvoid *userParam); GLAPI void APIENTRY GLAPI_PREFIX(DebugMessageControlARB)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled); GLAPI void APIENTRY GLAPI_PREFIX(DebugMessageInsertARB)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLcharARB *buf); @@ -911,24 +913,24 @@ GLAPI void APIENTRY GLAPI_PREFIX(TextureStorage1DEXT)(GLuint texture, GLenum tar GLAPI void APIENTRY GLAPI_PREFIX(TextureStorage2DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); GLAPI void APIENTRY GLAPI_PREFIX(TextureStorage3DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); GLAPI void APIENTRY GLAPI_PREFIX(PolygonOffsetEXT)(GLfloat factor, GLfloat bias); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_699)(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_700)(const GLfloat *coords); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_701)(GLint x, GLint y, GLint z, GLint width, GLint height); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_702)(const GLint *coords); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_703)(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_704)(const GLshort *coords); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_705)(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_706)(const GLfixed *coords); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_707)(GLenum type, GLsizei stride, const GLvoid *pointer); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_708)(GLenum pname, GLfloat *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_709)(GLenum pname, GLint *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_710)(GLenum pname, GLfloat param); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_711)(GLenum pname, const GLfloat *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_712)(GLenum pname, GLint param); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_713)(GLenum pname, const GLint *params); -GLbitfield APIENTRY GLAPI_PREFIX(_dispatch_stub_714)(GLfixed *mantissa, GLint *exponent); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_715)(GLclampf value, GLboolean invert); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_716)(GLenum pattern); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_701)(GLfloat x, GLfloat y, GLfloat z, GLfloat width, GLfloat height); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_702)(const GLfloat *coords); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_703)(GLint x, GLint y, GLint z, GLint width, GLint height); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_704)(const GLint *coords); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_705)(GLshort x, GLshort y, GLshort z, GLshort width, GLshort height); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_706)(const GLshort *coords); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_707)(GLfixed x, GLfixed y, GLfixed z, GLfixed width, GLfixed height); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_708)(const GLfixed *coords); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_709)(GLenum type, GLsizei stride, const GLvoid *pointer); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_710)(GLenum pname, GLfloat *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_711)(GLenum pname, GLint *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_712)(GLenum pname, GLfloat param); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_713)(GLenum pname, const GLfloat *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_714)(GLenum pname, GLint param); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_715)(GLenum pname, const GLint *params); +GLbitfield APIENTRY GLAPI_PREFIX(_dispatch_stub_716)(GLfixed *mantissa, GLint *exponent); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_717)(GLclampf value, GLboolean invert); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_718)(GLenum pattern); GLAPI void APIENTRY GLAPI_PREFIX(ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); GLAPI void APIENTRY GLAPI_PREFIX(EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean *pointer); GLAPI void APIENTRY GLAPI_PREFIX(IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer); @@ -991,7 +993,7 @@ GLAPI void APIENTRY GLAPI_PREFIX(FogCoordfEXT)(GLfloat coord); GLAPI void APIENTRY GLAPI_PREFIX(FogCoordf)(GLfloat coord); GLAPI void APIENTRY GLAPI_PREFIX(FogCoordfvEXT)(const GLfloat *coord); GLAPI void APIENTRY GLAPI_PREFIX(FogCoordfv)(const GLfloat *coord); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_751)(GLenum mode); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_753)(GLenum mode); GLAPI void APIENTRY GLAPI_PREFIX(BlendFuncSeparateEXT)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); GLAPI void APIENTRY GLAPI_PREFIX(BlendFuncSeparate)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); GLAPI void APIENTRY GLAPI_PREFIX(FlushVertexArrayRangeNV)(void); @@ -1066,15 +1068,15 @@ GLAPI void APIENTRY GLAPI_PREFIX(WindowPos4iMESA)(GLint x, GLint y, GLint z, GLi GLAPI void APIENTRY GLAPI_PREFIX(WindowPos4ivMESA)(const GLint *v); GLAPI void APIENTRY GLAPI_PREFIX(WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); GLAPI void APIENTRY GLAPI_PREFIX(WindowPos4svMESA)(const GLshort *v); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_793)(const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_794)(const GLenum *mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, GLint modestride); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_795)(GLsizei n, const GLuint *fences); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_796)(GLuint fence); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_797)(GLsizei n, GLuint *fences); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_798)(GLuint fence, GLenum pname, GLint *params); -GLboolean APIENTRY GLAPI_PREFIX(_dispatch_stub_799)(GLuint fence); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_800)(GLuint fence, GLenum condition); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_795)(const GLenum *mode, const GLint *first, const GLsizei *count, GLsizei primcount, GLint modestride); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_796)(const GLenum *mode, const GLsizei *count, GLenum type, const GLvoid * const *indices, GLsizei primcount, GLint modestride); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_797)(GLsizei n, const GLuint *fences); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_798)(GLuint fence); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_799)(GLsizei n, GLuint *fences); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_800)(GLuint fence, GLenum pname, GLint *params); GLboolean APIENTRY GLAPI_PREFIX(_dispatch_stub_801)(GLuint fence); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_802)(GLuint fence, GLenum condition); +GLboolean APIENTRY GLAPI_PREFIX(_dispatch_stub_803)(GLuint fence); GLAPI GLboolean APIENTRY GLAPI_PREFIX(AreProgramsResidentNV)(GLsizei n, const GLuint *ids, GLboolean *residences); GLAPI void APIENTRY GLAPI_PREFIX(BindProgramNV)(GLenum target, GLuint program); GLAPI void APIENTRY GLAPI_PREFIX(BindProgramARB)(GLenum target, GLuint program); @@ -1163,12 +1165,12 @@ GLAPI void APIENTRY GLAPI_PREFIX(PointParameteriNV)(GLenum pname, GLint param); GLAPI void APIENTRY GLAPI_PREFIX(PointParameteri)(GLenum pname, GLint param); GLAPI void APIENTRY GLAPI_PREFIX(PointParameterivNV)(GLenum pname, const GLint *params); GLAPI void APIENTRY GLAPI_PREFIX(PointParameteriv)(GLenum pname, const GLint *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_882)(GLenum face); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_883)(GLuint array); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_884)(GLsizei n, const GLuint *arrays); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_884)(GLenum face); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_885)(GLuint array); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_886)(GLsizei n, const GLuint *arrays); GLAPI void APIENTRY GLAPI_PREFIX(DeleteVertexArrays)(GLsizei n, const GLuint *arrays); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_885)(GLsizei n, GLuint *arrays); -GLboolean APIENTRY GLAPI_PREFIX(_dispatch_stub_886)(GLuint array); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_887)(GLsizei n, GLuint *arrays); +GLboolean APIENTRY GLAPI_PREFIX(_dispatch_stub_888)(GLuint array); GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsVertexArray)(GLuint array); GLAPI void APIENTRY GLAPI_PREFIX(GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte *name, GLdouble *params); GLAPI void APIENTRY GLAPI_PREFIX(GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte *name, GLfloat *params); @@ -1179,54 +1181,54 @@ GLAPI void APIENTRY GLAPI_PREFIX(ProgramNamedParameter4fvNV)(GLuint id, GLsizei GLAPI void APIENTRY GLAPI_PREFIX(PrimitiveRestartIndexNV)(GLuint index); GLAPI void APIENTRY GLAPI_PREFIX(PrimitiveRestartIndex)(GLuint index); GLAPI void APIENTRY GLAPI_PREFIX(PrimitiveRestartNV)(void); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_895)(GLenum func, GLclampx ref); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_896)(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_897)(GLclampx depth); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_898)(GLenum plane, const GLfixed *equation); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_899)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_900)(GLclampx zNear, GLclampx zFar); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_901)(GLenum pname, GLfixed param); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_902)(GLenum pname, const GLfixed *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_903)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_904)(GLenum plane, GLfixed *equation); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_905)(GLenum pname, GLfixed *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_906)(GLenum light, GLenum pname, GLfixed *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_907)(GLenum face, GLenum pname, GLfixed *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_908)(GLenum target, GLenum pname, GLfixed *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_909)(GLenum coord, GLenum pname, GLfixed *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_897)(GLenum func, GLclampx ref); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_898)(GLclampx red, GLclampx green, GLclampx blue, GLclampx alpha); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_899)(GLclampx depth); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_900)(GLenum plane, const GLfixed *equation); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_901)(GLfixed red, GLfixed green, GLfixed blue, GLfixed alpha); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_902)(GLclampx zNear, GLclampx zFar); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_903)(GLenum pname, GLfixed param); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_904)(GLenum pname, const GLfixed *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_905)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_906)(GLenum plane, GLfixed *equation); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_907)(GLenum pname, GLfixed *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_908)(GLenum light, GLenum pname, GLfixed *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_909)(GLenum face, GLenum pname, GLfixed *params); void APIENTRY GLAPI_PREFIX(_dispatch_stub_910)(GLenum target, GLenum pname, GLfixed *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_911)(GLenum pname, GLfixed param); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_912)(GLenum pname, const GLfixed *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_913)(GLenum light, GLenum pname, GLfixed param); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_914)(GLenum light, GLenum pname, const GLfixed *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_915)(GLfixed width); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_916)(const GLfixed *m); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_917)(GLenum face, GLenum pname, GLfixed param); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_918)(GLenum face, GLenum pname, const GLfixed *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_919)(const GLfixed *m); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_920)(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_921)(GLfixed nx, GLfixed ny, GLfixed nz); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_922)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_923)(GLenum pname, GLfixed param); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_924)(GLenum pname, const GLfixed *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_925)(GLfixed size); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_926)(GLfixed factor, GLfixed units); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_927)(GLfixed angle, GLfixed x, GLfixed y, GLfixed z); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_928)(GLclampx value, GLboolean invert); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_929)(GLfixed x, GLfixed y, GLfixed z); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_930)(GLenum target, GLenum pname, GLfixed param); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_931)(GLenum target, GLenum pname, const GLfixed *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_932)(GLenum coord, GLenum pname, GLint param); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_933)(GLenum coord, GLenum pname, const GLfixed *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_934)(GLenum target, GLenum pname, GLfixed param); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_935)(GLenum target, GLenum pname, const GLfixed *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_936)(GLfixed x, GLfixed y, GLfixed z); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_937)(GLenum plane, const GLfloat *equation); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_938)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_939)(GLenum plane, GLfloat *equation); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_911)(GLenum coord, GLenum pname, GLfixed *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_912)(GLenum target, GLenum pname, GLfixed *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_913)(GLenum pname, GLfixed param); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_914)(GLenum pname, const GLfixed *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_915)(GLenum light, GLenum pname, GLfixed param); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_916)(GLenum light, GLenum pname, const GLfixed *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_917)(GLfixed width); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_918)(const GLfixed *m); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_919)(GLenum face, GLenum pname, GLfixed param); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_920)(GLenum face, GLenum pname, const GLfixed *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_921)(const GLfixed *m); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_922)(GLenum target, GLfixed s, GLfixed t, GLfixed r, GLfixed q); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_923)(GLfixed nx, GLfixed ny, GLfixed nz); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_924)(GLfixed left, GLfixed right, GLfixed bottom, GLfixed top, GLfixed zNear, GLfixed zFar); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_925)(GLenum pname, GLfixed param); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_926)(GLenum pname, const GLfixed *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_927)(GLfixed size); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_928)(GLfixed factor, GLfixed units); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_929)(GLfixed angle, GLfixed x, GLfixed y, GLfixed z); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_930)(GLclampx value, GLboolean invert); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_931)(GLfixed x, GLfixed y, GLfixed z); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_932)(GLenum target, GLenum pname, GLfixed param); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_933)(GLenum target, GLenum pname, const GLfixed *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_934)(GLenum coord, GLenum pname, GLint param); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_935)(GLenum coord, GLenum pname, const GLfixed *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_936)(GLenum target, GLenum pname, GLfixed param); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_937)(GLenum target, GLenum pname, const GLfixed *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_938)(GLfixed x, GLfixed y, GLfixed z); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_939)(GLenum plane, const GLfloat *equation); void APIENTRY GLAPI_PREFIX(_dispatch_stub_940)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_941)(GLclampd zmin, GLclampd zmax); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_942)(GLenum modeRGB, GLenum modeA); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_941)(GLenum plane, GLfloat *equation); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_942)(GLfloat left, GLfloat right, GLfloat bottom, GLfloat top, GLfloat zNear, GLfloat zFar); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_943)(GLclampd zmin, GLclampd zmax); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_944)(GLenum modeRGB, GLenum modeA); GLAPI void APIENTRY GLAPI_PREFIX(BlendEquationSeparate)(GLenum modeRGB, GLenum modeA); GLAPI void APIENTRY GLAPI_PREFIX(BindFramebufferEXT)(GLenum target, GLuint framebuffer); GLAPI void APIENTRY GLAPI_PREFIX(BindFramebuffer)(GLenum target, GLuint framebuffer); @@ -1262,10 +1264,10 @@ GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsRenderbufferEXT)(GLuint renderbuffer); GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsRenderbuffer)(GLuint renderbuffer); GLAPI void APIENTRY GLAPI_PREFIX(RenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); GLAPI void APIENTRY GLAPI_PREFIX(RenderbufferStorage)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_960)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_962)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); GLAPI void APIENTRY GLAPI_PREFIX(BlitFramebuffer)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_961)(GLenum target, GLenum pname, GLint param); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_962)(GLenum target, GLintptr offset, GLsizeiptr size); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_963)(GLenum target, GLenum pname, GLint param); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_964)(GLenum target, GLintptr offset, GLsizeiptr size); GLAPI void APIENTRY GLAPI_PREFIX(BindFragDataLocationEXT)(GLuint program, GLuint colorNumber, const GLchar *name); GLAPI void APIENTRY GLAPI_PREFIX(BindFragDataLocation)(GLuint program, GLuint colorNumber, const GLchar *name); GLAPI GLint APIENTRY GLAPI_PREFIX(GetFragDataLocationEXT)(GLuint program, const GLchar *name); @@ -1378,8 +1380,8 @@ GLAPI void APIENTRY GLAPI_PREFIX(TransformFeedbackVaryingsEXT)(GLuint program, G GLAPI void APIENTRY GLAPI_PREFIX(TransformFeedbackVaryings)(GLuint program, GLsizei count, const GLchar* *varyings, GLenum bufferMode); GLAPI void APIENTRY GLAPI_PREFIX(ProvokingVertexEXT)(GLenum mode); GLAPI void APIENTRY GLAPI_PREFIX(ProvokingVertex)(GLenum mode); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_1020)(GLenum target, GLenum pname, GLvoid **params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_1021)(GLenum target, GLsizei length, GLvoid *pointer); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_1022)(GLenum target, GLenum pname, GLvoid **params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_1023)(GLenum target, GLsizei length, GLvoid *pointer); GLAPI void APIENTRY GLAPI_PREFIX(GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint *value); GLAPI GLenum APIENTRY GLAPI_PREFIX(ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); GLAPI GLenum APIENTRY GLAPI_PREFIX(ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); @@ -1387,11 +1389,11 @@ GLAPI void APIENTRY GLAPI_PREFIX(ActiveProgramEXT)(GLuint program); GLAPI GLuint APIENTRY GLAPI_PREFIX(CreateShaderProgramEXT)(GLenum type, const GLchar *string); GLAPI void APIENTRY GLAPI_PREFIX(UseShaderProgramEXT)(GLenum type, GLuint program); GLAPI void APIENTRY GLAPI_PREFIX(TextureBarrierNV)(void); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_1029)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_1030)(GLenum target, GLuint index, GLsizei count, const GLfloat *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_1031)(GLenum target, GLuint index, GLsizei count, const GLfloat *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_1032)(GLuint id, GLenum pname, GLint64EXT *params); -void APIENTRY GLAPI_PREFIX(_dispatch_stub_1033)(GLuint id, GLenum pname, GLuint64EXT *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_1031)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_1032)(GLenum target, GLuint index, GLsizei count, const GLfloat *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_1033)(GLenum target, GLuint index, GLsizei count, const GLfloat *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_1034)(GLuint id, GLenum pname, GLint64EXT *params); +void APIENTRY GLAPI_PREFIX(_dispatch_stub_1035)(GLuint id, GLenum pname, GLuint64EXT *params); GLAPI void APIENTRY GLAPI_PREFIX(EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid *writeOffset); GLAPI void APIENTRY GLAPI_PREFIX(EGLImageTargetTexture2DOES)(GLenum target, GLvoid *writeOffset); #undef MAPI_TMP_DEFINES @@ -6879,3412 +6881,3426 @@ GLAPI void APIENTRY GLAPI_PREFIX(BlendFuncIndexedAMD)(GLuint buf, GLenum src, GL ((void (APIENTRY *)(GLuint buf, GLenum src, GLenum dst)) _func)(buf, src, dst); } -GLAPI void APIENTRY GLAPI_PREFIX(BindSampler)(GLuint unit, GLuint sampler) +GLAPI void APIENTRY GLAPI_PREFIX(BindFragDataLocationIndexed)(GLuint program, GLuint colorNumber, GLuint index, const GLchar *name) { const struct mapi_table *_tbl = entry_current_get(); mapi_func _func = ((const mapi_func *) _tbl)[601]; + ((void (APIENTRY *)(GLuint program, GLuint colorNumber, GLuint index, const GLchar *name)) _func)(program, colorNumber, index, name); +} + +GLAPI GLint APIENTRY GLAPI_PREFIX(GetFragDataIndex)(GLuint program, const GLchar *name) +{ + const struct mapi_table *_tbl = entry_current_get(); + mapi_func _func = ((const mapi_func *) _tbl)[602]; + return ((GLint (APIENTRY *)(GLuint program, const GLchar *name)) _func)(program, name); +} + +GLAPI void APIENTRY GLAPI_PREFIX(BindSampler)(GLuint unit, GLuint sampler) +{ + const struct mapi_table *_tbl = entry_current_get(); + mapi_func _func = ((const mapi_func *) _tbl)[603]; ((void (APIENTRY *)(GLuint unit, GLuint sampler)) _func)(unit, sampler); } GLAPI void APIENTRY GLAPI_PREFIX(DeleteSamplers)(GLsizei count, const GLuint *samplers) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[602]; + mapi_func _func = ((const mapi_func *) _tbl)[604]; ((void (APIENTRY *)(GLsizei count, const GLuint *samplers)) _func)(count, samplers); } GLAPI void APIENTRY GLAPI_PREFIX(GenSamplers)(GLsizei count, GLuint *samplers) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[603]; + mapi_func _func = ((const mapi_func *) _tbl)[605]; ((void (APIENTRY *)(GLsizei count, GLuint *samplers)) _func)(count, samplers); } GLAPI void APIENTRY GLAPI_PREFIX(GetSamplerParameterIiv)(GLuint sampler, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[604]; + mapi_func _func = ((const mapi_func *) _tbl)[606]; ((void (APIENTRY *)(GLuint sampler, GLenum pname, GLint *params)) _func)(sampler, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetSamplerParameterIuiv)(GLuint sampler, GLenum pname, GLuint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[605]; + mapi_func _func = ((const mapi_func *) _tbl)[607]; ((void (APIENTRY *)(GLuint sampler, GLenum pname, GLuint *params)) _func)(sampler, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetSamplerParameterfv)(GLuint sampler, GLenum pname, GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[606]; + mapi_func _func = ((const mapi_func *) _tbl)[608]; ((void (APIENTRY *)(GLuint sampler, GLenum pname, GLfloat *params)) _func)(sampler, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetSamplerParameteriv)(GLuint sampler, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[607]; + mapi_func _func = ((const mapi_func *) _tbl)[609]; ((void (APIENTRY *)(GLuint sampler, GLenum pname, GLint *params)) _func)(sampler, pname, params); } GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsSampler)(GLuint sampler) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[608]; + mapi_func _func = ((const mapi_func *) _tbl)[610]; return ((GLboolean (APIENTRY *)(GLuint sampler)) _func)(sampler); } GLAPI void APIENTRY GLAPI_PREFIX(SamplerParameterIiv)(GLuint sampler, GLenum pname, const GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[609]; + mapi_func _func = ((const mapi_func *) _tbl)[611]; ((void (APIENTRY *)(GLuint sampler, GLenum pname, const GLint *params)) _func)(sampler, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(SamplerParameterIuiv)(GLuint sampler, GLenum pname, const GLuint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[610]; + mapi_func _func = ((const mapi_func *) _tbl)[612]; ((void (APIENTRY *)(GLuint sampler, GLenum pname, const GLuint *params)) _func)(sampler, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(SamplerParameterf)(GLuint sampler, GLenum pname, GLfloat param) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[611]; + mapi_func _func = ((const mapi_func *) _tbl)[613]; ((void (APIENTRY *)(GLuint sampler, GLenum pname, GLfloat param)) _func)(sampler, pname, param); } GLAPI void APIENTRY GLAPI_PREFIX(SamplerParameterfv)(GLuint sampler, GLenum pname, const GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[612]; + mapi_func _func = ((const mapi_func *) _tbl)[614]; ((void (APIENTRY *)(GLuint sampler, GLenum pname, const GLfloat *params)) _func)(sampler, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(SamplerParameteri)(GLuint sampler, GLenum pname, GLint param) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[613]; + mapi_func _func = ((const mapi_func *) _tbl)[615]; ((void (APIENTRY *)(GLuint sampler, GLenum pname, GLint param)) _func)(sampler, pname, param); } GLAPI void APIENTRY GLAPI_PREFIX(SamplerParameteriv)(GLuint sampler, GLenum pname, const GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[614]; + mapi_func _func = ((const mapi_func *) _tbl)[616]; ((void (APIENTRY *)(GLuint sampler, GLenum pname, const GLint *params)) _func)(sampler, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(ColorP3ui)(GLenum type, GLuint color) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[615]; + mapi_func _func = ((const mapi_func *) _tbl)[617]; ((void (APIENTRY *)(GLenum type, GLuint color)) _func)(type, color); } GLAPI void APIENTRY GLAPI_PREFIX(ColorP3uiv)(GLenum type, const GLuint *color) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[616]; + mapi_func _func = ((const mapi_func *) _tbl)[618]; ((void (APIENTRY *)(GLenum type, const GLuint *color)) _func)(type, color); } GLAPI void APIENTRY GLAPI_PREFIX(ColorP4ui)(GLenum type, GLuint color) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[617]; + mapi_func _func = ((const mapi_func *) _tbl)[619]; ((void (APIENTRY *)(GLenum type, GLuint color)) _func)(type, color); } GLAPI void APIENTRY GLAPI_PREFIX(ColorP4uiv)(GLenum type, const GLuint *color) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[618]; + mapi_func _func = ((const mapi_func *) _tbl)[620]; ((void (APIENTRY *)(GLenum type, const GLuint *color)) _func)(type, color); } GLAPI void APIENTRY GLAPI_PREFIX(MultiTexCoordP1ui)(GLenum texture, GLenum type, GLuint coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[619]; + mapi_func _func = ((const mapi_func *) _tbl)[621]; ((void (APIENTRY *)(GLenum texture, GLenum type, GLuint coords)) _func)(texture, type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(MultiTexCoordP1uiv)(GLenum texture, GLenum type, const GLuint *coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[620]; + mapi_func _func = ((const mapi_func *) _tbl)[622]; ((void (APIENTRY *)(GLenum texture, GLenum type, const GLuint *coords)) _func)(texture, type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(MultiTexCoordP2ui)(GLenum texture, GLenum type, GLuint coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[621]; + mapi_func _func = ((const mapi_func *) _tbl)[623]; ((void (APIENTRY *)(GLenum texture, GLenum type, GLuint coords)) _func)(texture, type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(MultiTexCoordP2uiv)(GLenum texture, GLenum type, const GLuint *coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[622]; + mapi_func _func = ((const mapi_func *) _tbl)[624]; ((void (APIENTRY *)(GLenum texture, GLenum type, const GLuint *coords)) _func)(texture, type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(MultiTexCoordP3ui)(GLenum texture, GLenum type, GLuint coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[623]; + mapi_func _func = ((const mapi_func *) _tbl)[625]; ((void (APIENTRY *)(GLenum texture, GLenum type, GLuint coords)) _func)(texture, type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(MultiTexCoordP3uiv)(GLenum texture, GLenum type, const GLuint *coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[624]; + mapi_func _func = ((const mapi_func *) _tbl)[626]; ((void (APIENTRY *)(GLenum texture, GLenum type, const GLuint *coords)) _func)(texture, type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(MultiTexCoordP4ui)(GLenum texture, GLenum type, GLuint coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[625]; + mapi_func _func = ((const mapi_func *) _tbl)[627]; ((void (APIENTRY *)(GLenum texture, GLenum type, GLuint coords)) _func)(texture, type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(MultiTexCoordP4uiv)(GLenum texture, GLenum type, const GLuint *coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[626]; + mapi_func _func = ((const mapi_func *) _tbl)[628]; ((void (APIENTRY *)(GLenum texture, GLenum type, const GLuint *coords)) _func)(texture, type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(NormalP3ui)(GLenum type, GLuint coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[627]; + mapi_func _func = ((const mapi_func *) _tbl)[629]; ((void (APIENTRY *)(GLenum type, GLuint coords)) _func)(type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(NormalP3uiv)(GLenum type, const GLuint *coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[628]; + mapi_func _func = ((const mapi_func *) _tbl)[630]; ((void (APIENTRY *)(GLenum type, const GLuint *coords)) _func)(type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColorP3ui)(GLenum type, GLuint color) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[629]; + mapi_func _func = ((const mapi_func *) _tbl)[631]; ((void (APIENTRY *)(GLenum type, GLuint color)) _func)(type, color); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColorP3uiv)(GLenum type, const GLuint *color) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[630]; + mapi_func _func = ((const mapi_func *) _tbl)[632]; ((void (APIENTRY *)(GLenum type, const GLuint *color)) _func)(type, color); } GLAPI void APIENTRY GLAPI_PREFIX(TexCoordP1ui)(GLenum type, GLuint coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[631]; + mapi_func _func = ((const mapi_func *) _tbl)[633]; ((void (APIENTRY *)(GLenum type, GLuint coords)) _func)(type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(TexCoordP1uiv)(GLenum type, const GLuint *coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[632]; + mapi_func _func = ((const mapi_func *) _tbl)[634]; ((void (APIENTRY *)(GLenum type, const GLuint *coords)) _func)(type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(TexCoordP2ui)(GLenum type, GLuint coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[633]; + mapi_func _func = ((const mapi_func *) _tbl)[635]; ((void (APIENTRY *)(GLenum type, GLuint coords)) _func)(type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(TexCoordP2uiv)(GLenum type, const GLuint *coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[634]; + mapi_func _func = ((const mapi_func *) _tbl)[636]; ((void (APIENTRY *)(GLenum type, const GLuint *coords)) _func)(type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(TexCoordP3ui)(GLenum type, GLuint coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[635]; + mapi_func _func = ((const mapi_func *) _tbl)[637]; ((void (APIENTRY *)(GLenum type, GLuint coords)) _func)(type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(TexCoordP3uiv)(GLenum type, const GLuint *coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[636]; + mapi_func _func = ((const mapi_func *) _tbl)[638]; ((void (APIENTRY *)(GLenum type, const GLuint *coords)) _func)(type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(TexCoordP4ui)(GLenum type, GLuint coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[637]; + mapi_func _func = ((const mapi_func *) _tbl)[639]; ((void (APIENTRY *)(GLenum type, GLuint coords)) _func)(type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(TexCoordP4uiv)(GLenum type, const GLuint *coords) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[638]; + mapi_func _func = ((const mapi_func *) _tbl)[640]; ((void (APIENTRY *)(GLenum type, const GLuint *coords)) _func)(type, coords); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribP1ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[639]; + mapi_func _func = ((const mapi_func *) _tbl)[641]; ((void (APIENTRY *)(GLuint index, GLenum type, GLboolean normalized, GLuint value)) _func)(index, type, normalized, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribP1uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[640]; + mapi_func _func = ((const mapi_func *) _tbl)[642]; ((void (APIENTRY *)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value)) _func)(index, type, normalized, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribP2ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[641]; + mapi_func _func = ((const mapi_func *) _tbl)[643]; ((void (APIENTRY *)(GLuint index, GLenum type, GLboolean normalized, GLuint value)) _func)(index, type, normalized, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribP2uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[642]; + mapi_func _func = ((const mapi_func *) _tbl)[644]; ((void (APIENTRY *)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value)) _func)(index, type, normalized, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribP3ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[643]; + mapi_func _func = ((const mapi_func *) _tbl)[645]; ((void (APIENTRY *)(GLuint index, GLenum type, GLboolean normalized, GLuint value)) _func)(index, type, normalized, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribP3uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[644]; + mapi_func _func = ((const mapi_func *) _tbl)[646]; ((void (APIENTRY *)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value)) _func)(index, type, normalized, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribP4ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[645]; + mapi_func _func = ((const mapi_func *) _tbl)[647]; ((void (APIENTRY *)(GLuint index, GLenum type, GLboolean normalized, GLuint value)) _func)(index, type, normalized, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribP4uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[646]; + mapi_func _func = ((const mapi_func *) _tbl)[648]; ((void (APIENTRY *)(GLuint index, GLenum type, GLboolean normalized, const GLuint *value)) _func)(index, type, normalized, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexP2ui)(GLenum type, GLuint value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[647]; + mapi_func _func = ((const mapi_func *) _tbl)[649]; ((void (APIENTRY *)(GLenum type, GLuint value)) _func)(type, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexP2uiv)(GLenum type, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[648]; + mapi_func _func = ((const mapi_func *) _tbl)[650]; ((void (APIENTRY *)(GLenum type, const GLuint *value)) _func)(type, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexP3ui)(GLenum type, GLuint value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[649]; + mapi_func _func = ((const mapi_func *) _tbl)[651]; ((void (APIENTRY *)(GLenum type, GLuint value)) _func)(type, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexP3uiv)(GLenum type, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[650]; + mapi_func _func = ((const mapi_func *) _tbl)[652]; ((void (APIENTRY *)(GLenum type, const GLuint *value)) _func)(type, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexP4ui)(GLenum type, GLuint value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[651]; + mapi_func _func = ((const mapi_func *) _tbl)[653]; ((void (APIENTRY *)(GLenum type, GLuint value)) _func)(type, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexP4uiv)(GLenum type, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[652]; + mapi_func _func = ((const mapi_func *) _tbl)[654]; ((void (APIENTRY *)(GLenum type, const GLuint *value)) _func)(type, value); } GLAPI void APIENTRY GLAPI_PREFIX(BindTransformFeedback)(GLenum target, GLuint id) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[653]; + mapi_func _func = ((const mapi_func *) _tbl)[655]; ((void (APIENTRY *)(GLenum target, GLuint id)) _func)(target, id); } GLAPI void APIENTRY GLAPI_PREFIX(DeleteTransformFeedbacks)(GLsizei n, const GLuint *ids) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[654]; + mapi_func _func = ((const mapi_func *) _tbl)[656]; ((void (APIENTRY *)(GLsizei n, const GLuint *ids)) _func)(n, ids); } GLAPI void APIENTRY GLAPI_PREFIX(DrawTransformFeedback)(GLenum mode, GLuint id) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[655]; + mapi_func _func = ((const mapi_func *) _tbl)[657]; ((void (APIENTRY *)(GLenum mode, GLuint id)) _func)(mode, id); } GLAPI void APIENTRY GLAPI_PREFIX(GenTransformFeedbacks)(GLsizei n, GLuint *ids) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[656]; + mapi_func _func = ((const mapi_func *) _tbl)[658]; ((void (APIENTRY *)(GLsizei n, GLuint *ids)) _func)(n, ids); } GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsTransformFeedback)(GLuint id) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[657]; + mapi_func _func = ((const mapi_func *) _tbl)[659]; return ((GLboolean (APIENTRY *)(GLuint id)) _func)(id); } GLAPI void APIENTRY GLAPI_PREFIX(PauseTransformFeedback)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[658]; + mapi_func _func = ((const mapi_func *) _tbl)[660]; ((void (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(ResumeTransformFeedback)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[659]; + mapi_func _func = ((const mapi_func *) _tbl)[661]; ((void (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(ClearDepthf)(GLclampf depth) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[660]; + mapi_func _func = ((const mapi_func *) _tbl)[662]; ((void (APIENTRY *)(GLclampf depth)) _func)(depth); } GLAPI void APIENTRY GLAPI_PREFIX(DepthRangef)(GLclampf zNear, GLclampf zFar) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[661]; + mapi_func _func = ((const mapi_func *) _tbl)[663]; ((void (APIENTRY *)(GLclampf zNear, GLclampf zFar)) _func)(zNear, zFar); } GLAPI void APIENTRY GLAPI_PREFIX(GetShaderPrecisionFormat)(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[662]; + mapi_func _func = ((const mapi_func *) _tbl)[664]; ((void (APIENTRY *)(GLenum shadertype, GLenum precisiontype, GLint *range, GLint *precision)) _func)(shadertype, precisiontype, range, precision); } GLAPI void APIENTRY GLAPI_PREFIX(ReleaseShaderCompiler)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[663]; + mapi_func _func = ((const mapi_func *) _tbl)[665]; ((void (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(ShaderBinary)(GLsizei n, const GLuint *shaders, GLenum binaryformat, const GLvoid *binary, GLsizei length) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[664]; + mapi_func _func = ((const mapi_func *) _tbl)[666]; ((void (APIENTRY *)(GLsizei n, const GLuint *shaders, GLenum binaryformat, const GLvoid *binary, GLsizei length)) _func)(n, shaders, binaryformat, binary, length); } GLAPI void APIENTRY GLAPI_PREFIX(DebugMessageCallbackARB)(GLDEBUGPROCARB callback, GLvoid *userParam) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[668]; + mapi_func _func = ((const mapi_func *) _tbl)[670]; ((void (APIENTRY *)(GLDEBUGPROCARB callback, GLvoid *userParam)) _func)(callback, userParam); } GLAPI void APIENTRY GLAPI_PREFIX(DebugMessageControlARB)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[669]; + mapi_func _func = ((const mapi_func *) _tbl)[671]; ((void (APIENTRY *)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint *ids, GLboolean enabled)) _func)(source, type, severity, count, ids, enabled); } GLAPI void APIENTRY GLAPI_PREFIX(DebugMessageInsertARB)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLcharARB *buf) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[670]; + mapi_func _func = ((const mapi_func *) _tbl)[672]; ((void (APIENTRY *)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLcharARB *buf)) _func)(source, type, id, severity, length, buf); } GLAPI GLuint APIENTRY GLAPI_PREFIX(GetDebugMessageLogARB)(GLuint count, GLsizei bufsize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLcharARB *messageLog) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[671]; + mapi_func _func = ((const mapi_func *) _tbl)[673]; return ((GLuint (APIENTRY *)(GLuint count, GLsizei bufsize, GLenum *sources, GLenum *types, GLuint *ids, GLenum *severities, GLsizei *lengths, GLcharARB *messageLog)) _func)(count, bufsize, sources, types, ids, severities, lengths, messageLog); } GLAPI GLenum APIENTRY GLAPI_PREFIX(GetGraphicsResetStatusARB)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[672]; + mapi_func _func = ((const mapi_func *) _tbl)[674]; return ((GLenum (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(GetnColorTableARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *table) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[673]; + mapi_func _func = ((const mapi_func *) _tbl)[675]; ((void (APIENTRY *)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *table)) _func)(target, format, type, bufSize, table); } GLAPI void APIENTRY GLAPI_PREFIX(GetnCompressedTexImageARB)(GLenum target, GLint lod, GLsizei bufSize, GLvoid *img) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[674]; + mapi_func _func = ((const mapi_func *) _tbl)[676]; ((void (APIENTRY *)(GLenum target, GLint lod, GLsizei bufSize, GLvoid *img)) _func)(target, lod, bufSize, img); } GLAPI void APIENTRY GLAPI_PREFIX(GetnConvolutionFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *image) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[675]; + mapi_func _func = ((const mapi_func *) _tbl)[677]; ((void (APIENTRY *)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid *image)) _func)(target, format, type, bufSize, image); } GLAPI void APIENTRY GLAPI_PREFIX(GetnHistogramARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[676]; + mapi_func _func = ((const mapi_func *) _tbl)[678]; ((void (APIENTRY *)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values)) _func)(target, reset, format, type, bufSize, values); } GLAPI void APIENTRY GLAPI_PREFIX(GetnMapdvARB)(GLenum target, GLenum query, GLsizei bufSize, GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[677]; + mapi_func _func = ((const mapi_func *) _tbl)[679]; ((void (APIENTRY *)(GLenum target, GLenum query, GLsizei bufSize, GLdouble *v)) _func)(target, query, bufSize, v); } GLAPI void APIENTRY GLAPI_PREFIX(GetnMapfvARB)(GLenum target, GLenum query, GLsizei bufSize, GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[678]; + mapi_func _func = ((const mapi_func *) _tbl)[680]; ((void (APIENTRY *)(GLenum target, GLenum query, GLsizei bufSize, GLfloat *v)) _func)(target, query, bufSize, v); } GLAPI void APIENTRY GLAPI_PREFIX(GetnMapivARB)(GLenum target, GLenum query, GLsizei bufSize, GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[679]; + mapi_func _func = ((const mapi_func *) _tbl)[681]; ((void (APIENTRY *)(GLenum target, GLenum query, GLsizei bufSize, GLint *v)) _func)(target, query, bufSize, v); } GLAPI void APIENTRY GLAPI_PREFIX(GetnMinmaxARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[680]; + mapi_func _func = ((const mapi_func *) _tbl)[682]; ((void (APIENTRY *)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid *values)) _func)(target, reset, format, type, bufSize, values); } GLAPI void APIENTRY GLAPI_PREFIX(GetnPixelMapfvARB)(GLenum map, GLsizei bufSize, GLfloat *values) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[681]; + mapi_func _func = ((const mapi_func *) _tbl)[683]; ((void (APIENTRY *)(GLenum map, GLsizei bufSize, GLfloat *values)) _func)(map, bufSize, values); } GLAPI void APIENTRY GLAPI_PREFIX(GetnPixelMapuivARB)(GLenum map, GLsizei bufSize, GLuint *values) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[682]; + mapi_func _func = ((const mapi_func *) _tbl)[684]; ((void (APIENTRY *)(GLenum map, GLsizei bufSize, GLuint *values)) _func)(map, bufSize, values); } GLAPI void APIENTRY GLAPI_PREFIX(GetnPixelMapusvARB)(GLenum map, GLsizei bufSize, GLushort *values) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[683]; + mapi_func _func = ((const mapi_func *) _tbl)[685]; ((void (APIENTRY *)(GLenum map, GLsizei bufSize, GLushort *values)) _func)(map, bufSize, values); } GLAPI void APIENTRY GLAPI_PREFIX(GetnPolygonStippleARB)(GLsizei bufSize, GLubyte *pattern) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[684]; + mapi_func _func = ((const mapi_func *) _tbl)[686]; ((void (APIENTRY *)(GLsizei bufSize, GLubyte *pattern)) _func)(bufSize, pattern); } GLAPI void APIENTRY GLAPI_PREFIX(GetnSeparableFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid *row, GLsizei columnBufSize, GLvoid *column, GLvoid *span) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[685]; + mapi_func _func = ((const mapi_func *) _tbl)[687]; ((void (APIENTRY *)(GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid *row, GLsizei columnBufSize, GLvoid *column, GLvoid *span)) _func)(target, format, type, rowBufSize, row, columnBufSize, column, span); } GLAPI void APIENTRY GLAPI_PREFIX(GetnTexImageARB)(GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid *img) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[686]; + mapi_func _func = ((const mapi_func *) _tbl)[688]; ((void (APIENTRY *)(GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid *img)) _func)(target, level, format, type, bufSize, img); } GLAPI void APIENTRY GLAPI_PREFIX(GetnUniformdvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLdouble *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[687]; + mapi_func _func = ((const mapi_func *) _tbl)[689]; ((void (APIENTRY *)(GLhandleARB program, GLint location, GLsizei bufSize, GLdouble *params)) _func)(program, location, bufSize, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetnUniformfvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[688]; + mapi_func _func = ((const mapi_func *) _tbl)[690]; ((void (APIENTRY *)(GLhandleARB program, GLint location, GLsizei bufSize, GLfloat *params)) _func)(program, location, bufSize, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetnUniformivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[689]; + mapi_func _func = ((const mapi_func *) _tbl)[691]; ((void (APIENTRY *)(GLhandleARB program, GLint location, GLsizei bufSize, GLint *params)) _func)(program, location, bufSize, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetnUniformuivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLuint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[690]; + mapi_func _func = ((const mapi_func *) _tbl)[692]; ((void (APIENTRY *)(GLhandleARB program, GLint location, GLsizei bufSize, GLuint *params)) _func)(program, location, bufSize, params); } GLAPI void APIENTRY GLAPI_PREFIX(ReadnPixelsARB)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid *data) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[691]; + mapi_func _func = ((const mapi_func *) _tbl)[693]; ((void (APIENTRY *)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid *data)) _func)(x, y, width, height, format, type, bufSize, data); } GLAPI void APIENTRY GLAPI_PREFIX(TexStorage1D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[692]; + mapi_func _func = ((const mapi_func *) _tbl)[694]; ((void (APIENTRY *)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width)) _func)(target, levels, internalFormat, width); } GLAPI void APIENTRY GLAPI_PREFIX(TexStorage2D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[693]; + mapi_func _func = ((const mapi_func *) _tbl)[695]; ((void (APIENTRY *)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height)) _func)(target, levels, internalFormat, width, height); } GLAPI void APIENTRY GLAPI_PREFIX(TexStorage3D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[694]; + mapi_func _func = ((const mapi_func *) _tbl)[696]; ((void (APIENTRY *)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth)) _func)(target, levels, internalFormat, width, height, depth); } GLAPI void APIENTRY GLAPI_PREFIX(TextureStorage1DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[695]; + mapi_func _func = ((const mapi_func *) _tbl)[697]; ((void (APIENTRY *)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width)) _func)(texture, target, levels, internalFormat, width); } GLAPI void APIENTRY GLAPI_PREFIX(TextureStorage2DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[696]; + mapi_func _func = ((const mapi_func *) _tbl)[698]; ((void (APIENTRY *)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height)) _func)(texture, target, levels, internalFormat, width, height); } GLAPI void APIENTRY GLAPI_PREFIX(TextureStorage3DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[697]; + mapi_func _func = ((const mapi_func *) _tbl)[699]; ((void (APIENTRY *)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth)) _func)(texture, target, levels, internalFormat, width, height, depth); } GLAPI void APIENTRY GLAPI_PREFIX(PolygonOffsetEXT)(GLfloat factor, GLfloat bias) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[698]; + mapi_func _func = ((const mapi_func *) _tbl)[700]; ((void (APIENTRY *)(GLfloat factor, GLfloat bias)) _func)(factor, bias); } GLAPI void APIENTRY GLAPI_PREFIX(ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[717]; + mapi_func _func = ((const mapi_func *) _tbl)[719]; ((void (APIENTRY *)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer)) _func)(size, type, stride, count, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[718]; + mapi_func _func = ((const mapi_func *) _tbl)[720]; ((void (APIENTRY *)(GLsizei stride, GLsizei count, const GLboolean *pointer)) _func)(stride, count, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[719]; + mapi_func _func = ((const mapi_func *) _tbl)[721]; ((void (APIENTRY *)(GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer)) _func)(type, stride, count, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[720]; + mapi_func _func = ((const mapi_func *) _tbl)[722]; ((void (APIENTRY *)(GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer)) _func)(type, stride, count, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[721]; + mapi_func _func = ((const mapi_func *) _tbl)[723]; ((void (APIENTRY *)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer)) _func)(size, type, stride, count, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[722]; + mapi_func _func = ((const mapi_func *) _tbl)[724]; ((void (APIENTRY *)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid *pointer)) _func)(size, type, stride, count, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(PointParameterfEXT)(GLenum pname, GLfloat param) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[723]; + mapi_func _func = ((const mapi_func *) _tbl)[725]; ((void (APIENTRY *)(GLenum pname, GLfloat param)) _func)(pname, param); } GLAPI void APIENTRY GLAPI_PREFIX(PointParameterf)(GLenum pname, GLfloat param) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[723]; + mapi_func _func = ((const mapi_func *) _tbl)[725]; ((void (APIENTRY *)(GLenum pname, GLfloat param)) _func)(pname, param); } GLAPI void APIENTRY GLAPI_PREFIX(PointParameterfARB)(GLenum pname, GLfloat param) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[723]; + mapi_func _func = ((const mapi_func *) _tbl)[725]; ((void (APIENTRY *)(GLenum pname, GLfloat param)) _func)(pname, param); } GLAPI void APIENTRY GLAPI_PREFIX(PointParameterfvEXT)(GLenum pname, const GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[724]; + mapi_func _func = ((const mapi_func *) _tbl)[726]; ((void (APIENTRY *)(GLenum pname, const GLfloat *params)) _func)(pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(PointParameterfv)(GLenum pname, const GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[724]; + mapi_func _func = ((const mapi_func *) _tbl)[726]; ((void (APIENTRY *)(GLenum pname, const GLfloat *params)) _func)(pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(PointParameterfvARB)(GLenum pname, const GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[724]; + mapi_func _func = ((const mapi_func *) _tbl)[726]; ((void (APIENTRY *)(GLenum pname, const GLfloat *params)) _func)(pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(LockArraysEXT)(GLint first, GLsizei count) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[725]; + mapi_func _func = ((const mapi_func *) _tbl)[727]; ((void (APIENTRY *)(GLint first, GLsizei count)) _func)(first, count); } GLAPI void APIENTRY GLAPI_PREFIX(UnlockArraysEXT)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[726]; + mapi_func _func = ((const mapi_func *) _tbl)[728]; ((void (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3bEXT)(GLbyte red, GLbyte green, GLbyte blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[727]; + mapi_func _func = ((const mapi_func *) _tbl)[729]; ((void (APIENTRY *)(GLbyte red, GLbyte green, GLbyte blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3b)(GLbyte red, GLbyte green, GLbyte blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[727]; + mapi_func _func = ((const mapi_func *) _tbl)[729]; ((void (APIENTRY *)(GLbyte red, GLbyte green, GLbyte blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3bvEXT)(const GLbyte *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[728]; + mapi_func _func = ((const mapi_func *) _tbl)[730]; ((void (APIENTRY *)(const GLbyte *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3bv)(const GLbyte *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[728]; + mapi_func _func = ((const mapi_func *) _tbl)[730]; ((void (APIENTRY *)(const GLbyte *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3dEXT)(GLdouble red, GLdouble green, GLdouble blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[729]; + mapi_func _func = ((const mapi_func *) _tbl)[731]; ((void (APIENTRY *)(GLdouble red, GLdouble green, GLdouble blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3d)(GLdouble red, GLdouble green, GLdouble blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[729]; + mapi_func _func = ((const mapi_func *) _tbl)[731]; ((void (APIENTRY *)(GLdouble red, GLdouble green, GLdouble blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3dvEXT)(const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[730]; + mapi_func _func = ((const mapi_func *) _tbl)[732]; ((void (APIENTRY *)(const GLdouble *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3dv)(const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[730]; + mapi_func _func = ((const mapi_func *) _tbl)[732]; ((void (APIENTRY *)(const GLdouble *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[731]; + mapi_func _func = ((const mapi_func *) _tbl)[733]; ((void (APIENTRY *)(GLfloat red, GLfloat green, GLfloat blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3f)(GLfloat red, GLfloat green, GLfloat blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[731]; + mapi_func _func = ((const mapi_func *) _tbl)[733]; ((void (APIENTRY *)(GLfloat red, GLfloat green, GLfloat blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3fvEXT)(const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[732]; + mapi_func _func = ((const mapi_func *) _tbl)[734]; ((void (APIENTRY *)(const GLfloat *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3fv)(const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[732]; + mapi_func _func = ((const mapi_func *) _tbl)[734]; ((void (APIENTRY *)(const GLfloat *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3iEXT)(GLint red, GLint green, GLint blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[733]; + mapi_func _func = ((const mapi_func *) _tbl)[735]; ((void (APIENTRY *)(GLint red, GLint green, GLint blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3i)(GLint red, GLint green, GLint blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[733]; + mapi_func _func = ((const mapi_func *) _tbl)[735]; ((void (APIENTRY *)(GLint red, GLint green, GLint blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3ivEXT)(const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[734]; + mapi_func _func = ((const mapi_func *) _tbl)[736]; ((void (APIENTRY *)(const GLint *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3iv)(const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[734]; + mapi_func _func = ((const mapi_func *) _tbl)[736]; ((void (APIENTRY *)(const GLint *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3sEXT)(GLshort red, GLshort green, GLshort blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[735]; + mapi_func _func = ((const mapi_func *) _tbl)[737]; ((void (APIENTRY *)(GLshort red, GLshort green, GLshort blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3s)(GLshort red, GLshort green, GLshort blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[735]; + mapi_func _func = ((const mapi_func *) _tbl)[737]; ((void (APIENTRY *)(GLshort red, GLshort green, GLshort blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3svEXT)(const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[736]; + mapi_func _func = ((const mapi_func *) _tbl)[738]; ((void (APIENTRY *)(const GLshort *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3sv)(const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[736]; + mapi_func _func = ((const mapi_func *) _tbl)[738]; ((void (APIENTRY *)(const GLshort *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3ubEXT)(GLubyte red, GLubyte green, GLubyte blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[737]; + mapi_func _func = ((const mapi_func *) _tbl)[739]; ((void (APIENTRY *)(GLubyte red, GLubyte green, GLubyte blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3ub)(GLubyte red, GLubyte green, GLubyte blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[737]; + mapi_func _func = ((const mapi_func *) _tbl)[739]; ((void (APIENTRY *)(GLubyte red, GLubyte green, GLubyte blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3ubvEXT)(const GLubyte *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[738]; + mapi_func _func = ((const mapi_func *) _tbl)[740]; ((void (APIENTRY *)(const GLubyte *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3ubv)(const GLubyte *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[738]; + mapi_func _func = ((const mapi_func *) _tbl)[740]; ((void (APIENTRY *)(const GLubyte *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3uiEXT)(GLuint red, GLuint green, GLuint blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[739]; + mapi_func _func = ((const mapi_func *) _tbl)[741]; ((void (APIENTRY *)(GLuint red, GLuint green, GLuint blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3ui)(GLuint red, GLuint green, GLuint blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[739]; + mapi_func _func = ((const mapi_func *) _tbl)[741]; ((void (APIENTRY *)(GLuint red, GLuint green, GLuint blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3uivEXT)(const GLuint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[740]; + mapi_func _func = ((const mapi_func *) _tbl)[742]; ((void (APIENTRY *)(const GLuint *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3uiv)(const GLuint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[740]; + mapi_func _func = ((const mapi_func *) _tbl)[742]; ((void (APIENTRY *)(const GLuint *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3usEXT)(GLushort red, GLushort green, GLushort blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[741]; + mapi_func _func = ((const mapi_func *) _tbl)[743]; ((void (APIENTRY *)(GLushort red, GLushort green, GLushort blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3us)(GLushort red, GLushort green, GLushort blue) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[741]; + mapi_func _func = ((const mapi_func *) _tbl)[743]; ((void (APIENTRY *)(GLushort red, GLushort green, GLushort blue)) _func)(red, green, blue); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3usvEXT)(const GLushort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[742]; + mapi_func _func = ((const mapi_func *) _tbl)[744]; ((void (APIENTRY *)(const GLushort *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColor3usv)(const GLushort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[742]; + mapi_func _func = ((const mapi_func *) _tbl)[744]; ((void (APIENTRY *)(const GLushort *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColorPointerEXT)(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[743]; + mapi_func _func = ((const mapi_func *) _tbl)[745]; ((void (APIENTRY *)(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)) _func)(size, type, stride, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(SecondaryColorPointer)(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[743]; + mapi_func _func = ((const mapi_func *) _tbl)[745]; ((void (APIENTRY *)(GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)) _func)(size, type, stride, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(MultiDrawArraysEXT)(GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[744]; + mapi_func _func = ((const mapi_func *) _tbl)[746]; ((void (APIENTRY *)(GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount)) _func)(mode, first, count, primcount); } GLAPI void APIENTRY GLAPI_PREFIX(MultiDrawArrays)(GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[744]; + mapi_func _func = ((const mapi_func *) _tbl)[746]; ((void (APIENTRY *)(GLenum mode, const GLint *first, const GLsizei *count, GLsizei primcount)) _func)(mode, first, count, primcount); } GLAPI void APIENTRY GLAPI_PREFIX(MultiDrawElementsEXT)(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[745]; + mapi_func _func = ((const mapi_func *) _tbl)[747]; ((void (APIENTRY *)(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount)) _func)(mode, count, type, indices, primcount); } GLAPI void APIENTRY GLAPI_PREFIX(MultiDrawElements)(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[745]; + mapi_func _func = ((const mapi_func *) _tbl)[747]; ((void (APIENTRY *)(GLenum mode, const GLsizei *count, GLenum type, const GLvoid **indices, GLsizei primcount)) _func)(mode, count, type, indices, primcount); } GLAPI void APIENTRY GLAPI_PREFIX(FogCoordPointerEXT)(GLenum type, GLsizei stride, const GLvoid *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[746]; + mapi_func _func = ((const mapi_func *) _tbl)[748]; ((void (APIENTRY *)(GLenum type, GLsizei stride, const GLvoid *pointer)) _func)(type, stride, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(FogCoordPointer)(GLenum type, GLsizei stride, const GLvoid *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[746]; + mapi_func _func = ((const mapi_func *) _tbl)[748]; ((void (APIENTRY *)(GLenum type, GLsizei stride, const GLvoid *pointer)) _func)(type, stride, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(FogCoorddEXT)(GLdouble coord) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[747]; + mapi_func _func = ((const mapi_func *) _tbl)[749]; ((void (APIENTRY *)(GLdouble coord)) _func)(coord); } GLAPI void APIENTRY GLAPI_PREFIX(FogCoordd)(GLdouble coord) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[747]; + mapi_func _func = ((const mapi_func *) _tbl)[749]; ((void (APIENTRY *)(GLdouble coord)) _func)(coord); } GLAPI void APIENTRY GLAPI_PREFIX(FogCoorddvEXT)(const GLdouble *coord) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[748]; + mapi_func _func = ((const mapi_func *) _tbl)[750]; ((void (APIENTRY *)(const GLdouble *coord)) _func)(coord); } GLAPI void APIENTRY GLAPI_PREFIX(FogCoorddv)(const GLdouble *coord) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[748]; + mapi_func _func = ((const mapi_func *) _tbl)[750]; ((void (APIENTRY *)(const GLdouble *coord)) _func)(coord); } GLAPI void APIENTRY GLAPI_PREFIX(FogCoordfEXT)(GLfloat coord) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[749]; + mapi_func _func = ((const mapi_func *) _tbl)[751]; ((void (APIENTRY *)(GLfloat coord)) _func)(coord); } GLAPI void APIENTRY GLAPI_PREFIX(FogCoordf)(GLfloat coord) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[749]; + mapi_func _func = ((const mapi_func *) _tbl)[751]; ((void (APIENTRY *)(GLfloat coord)) _func)(coord); } GLAPI void APIENTRY GLAPI_PREFIX(FogCoordfvEXT)(const GLfloat *coord) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[750]; + mapi_func _func = ((const mapi_func *) _tbl)[752]; ((void (APIENTRY *)(const GLfloat *coord)) _func)(coord); } GLAPI void APIENTRY GLAPI_PREFIX(FogCoordfv)(const GLfloat *coord) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[750]; + mapi_func _func = ((const mapi_func *) _tbl)[752]; ((void (APIENTRY *)(const GLfloat *coord)) _func)(coord); } GLAPI void APIENTRY GLAPI_PREFIX(BlendFuncSeparateEXT)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[752]; + mapi_func _func = ((const mapi_func *) _tbl)[754]; ((void (APIENTRY *)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha)) _func)(sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha); } GLAPI void APIENTRY GLAPI_PREFIX(BlendFuncSeparate)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[752]; + mapi_func _func = ((const mapi_func *) _tbl)[754]; ((void (APIENTRY *)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha)) _func)(sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha); } GLAPI void APIENTRY GLAPI_PREFIX(FlushVertexArrayRangeNV)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[753]; + mapi_func _func = ((const mapi_func *) _tbl)[755]; ((void (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(VertexArrayRangeNV)(GLsizei length, const GLvoid *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[754]; + mapi_func _func = ((const mapi_func *) _tbl)[756]; ((void (APIENTRY *)(GLsizei length, const GLvoid *pointer)) _func)(length, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(CombinerInputNV)(GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[755]; + mapi_func _func = ((const mapi_func *) _tbl)[757]; ((void (APIENTRY *)(GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage)) _func)(stage, portion, variable, input, mapping, componentUsage); } GLAPI void APIENTRY GLAPI_PREFIX(CombinerOutputNV)(GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[756]; + mapi_func _func = ((const mapi_func *) _tbl)[758]; ((void (APIENTRY *)(GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum)) _func)(stage, portion, abOutput, cdOutput, sumOutput, scale, bias, abDotProduct, cdDotProduct, muxSum); } GLAPI void APIENTRY GLAPI_PREFIX(CombinerParameterfNV)(GLenum pname, GLfloat param) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[757]; + mapi_func _func = ((const mapi_func *) _tbl)[759]; ((void (APIENTRY *)(GLenum pname, GLfloat param)) _func)(pname, param); } GLAPI void APIENTRY GLAPI_PREFIX(CombinerParameterfvNV)(GLenum pname, const GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[758]; + mapi_func _func = ((const mapi_func *) _tbl)[760]; ((void (APIENTRY *)(GLenum pname, const GLfloat *params)) _func)(pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(CombinerParameteriNV)(GLenum pname, GLint param) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[759]; + mapi_func _func = ((const mapi_func *) _tbl)[761]; ((void (APIENTRY *)(GLenum pname, GLint param)) _func)(pname, param); } GLAPI void APIENTRY GLAPI_PREFIX(CombinerParameterivNV)(GLenum pname, const GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[760]; + mapi_func _func = ((const mapi_func *) _tbl)[762]; ((void (APIENTRY *)(GLenum pname, const GLint *params)) _func)(pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(FinalCombinerInputNV)(GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[761]; + mapi_func _func = ((const mapi_func *) _tbl)[763]; ((void (APIENTRY *)(GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage)) _func)(variable, input, mapping, componentUsage); } GLAPI void APIENTRY GLAPI_PREFIX(GetCombinerInputParameterfvNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[762]; + mapi_func _func = ((const mapi_func *) _tbl)[764]; ((void (APIENTRY *)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat *params)) _func)(stage, portion, variable, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetCombinerInputParameterivNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[763]; + mapi_func _func = ((const mapi_func *) _tbl)[765]; ((void (APIENTRY *)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint *params)) _func)(stage, portion, variable, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetCombinerOutputParameterfvNV)(GLenum stage, GLenum portion, GLenum pname, GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[764]; + mapi_func _func = ((const mapi_func *) _tbl)[766]; ((void (APIENTRY *)(GLenum stage, GLenum portion, GLenum pname, GLfloat *params)) _func)(stage, portion, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetCombinerOutputParameterivNV)(GLenum stage, GLenum portion, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[765]; + mapi_func _func = ((const mapi_func *) _tbl)[767]; ((void (APIENTRY *)(GLenum stage, GLenum portion, GLenum pname, GLint *params)) _func)(stage, portion, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetFinalCombinerInputParameterfvNV)(GLenum variable, GLenum pname, GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[766]; + mapi_func _func = ((const mapi_func *) _tbl)[768]; ((void (APIENTRY *)(GLenum variable, GLenum pname, GLfloat *params)) _func)(variable, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetFinalCombinerInputParameterivNV)(GLenum variable, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[767]; + mapi_func _func = ((const mapi_func *) _tbl)[769]; ((void (APIENTRY *)(GLenum variable, GLenum pname, GLint *params)) _func)(variable, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(ResizeBuffersMESA)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[768]; + mapi_func _func = ((const mapi_func *) _tbl)[770]; ((void (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2dMESA)(GLdouble x, GLdouble y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[769]; + mapi_func _func = ((const mapi_func *) _tbl)[771]; ((void (APIENTRY *)(GLdouble x, GLdouble y)) _func)(x, y); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2d)(GLdouble x, GLdouble y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[769]; + mapi_func _func = ((const mapi_func *) _tbl)[771]; ((void (APIENTRY *)(GLdouble x, GLdouble y)) _func)(x, y); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2dARB)(GLdouble x, GLdouble y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[769]; + mapi_func _func = ((const mapi_func *) _tbl)[771]; ((void (APIENTRY *)(GLdouble x, GLdouble y)) _func)(x, y); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2dvMESA)(const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[770]; + mapi_func _func = ((const mapi_func *) _tbl)[772]; ((void (APIENTRY *)(const GLdouble *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2dv)(const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[770]; + mapi_func _func = ((const mapi_func *) _tbl)[772]; ((void (APIENTRY *)(const GLdouble *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2dvARB)(const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[770]; + mapi_func _func = ((const mapi_func *) _tbl)[772]; ((void (APIENTRY *)(const GLdouble *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2fMESA)(GLfloat x, GLfloat y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[771]; + mapi_func _func = ((const mapi_func *) _tbl)[773]; ((void (APIENTRY *)(GLfloat x, GLfloat y)) _func)(x, y); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2f)(GLfloat x, GLfloat y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[771]; + mapi_func _func = ((const mapi_func *) _tbl)[773]; ((void (APIENTRY *)(GLfloat x, GLfloat y)) _func)(x, y); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2fARB)(GLfloat x, GLfloat y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[771]; + mapi_func _func = ((const mapi_func *) _tbl)[773]; ((void (APIENTRY *)(GLfloat x, GLfloat y)) _func)(x, y); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2fvMESA)(const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[772]; + mapi_func _func = ((const mapi_func *) _tbl)[774]; ((void (APIENTRY *)(const GLfloat *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2fv)(const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[772]; + mapi_func _func = ((const mapi_func *) _tbl)[774]; ((void (APIENTRY *)(const GLfloat *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2fvARB)(const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[772]; + mapi_func _func = ((const mapi_func *) _tbl)[774]; ((void (APIENTRY *)(const GLfloat *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2iMESA)(GLint x, GLint y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[773]; + mapi_func _func = ((const mapi_func *) _tbl)[775]; ((void (APIENTRY *)(GLint x, GLint y)) _func)(x, y); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2i)(GLint x, GLint y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[773]; + mapi_func _func = ((const mapi_func *) _tbl)[775]; ((void (APIENTRY *)(GLint x, GLint y)) _func)(x, y); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2iARB)(GLint x, GLint y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[773]; + mapi_func _func = ((const mapi_func *) _tbl)[775]; ((void (APIENTRY *)(GLint x, GLint y)) _func)(x, y); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2ivMESA)(const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[774]; + mapi_func _func = ((const mapi_func *) _tbl)[776]; ((void (APIENTRY *)(const GLint *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2iv)(const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[774]; + mapi_func _func = ((const mapi_func *) _tbl)[776]; ((void (APIENTRY *)(const GLint *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2ivARB)(const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[774]; + mapi_func _func = ((const mapi_func *) _tbl)[776]; ((void (APIENTRY *)(const GLint *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2sMESA)(GLshort x, GLshort y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[775]; + mapi_func _func = ((const mapi_func *) _tbl)[777]; ((void (APIENTRY *)(GLshort x, GLshort y)) _func)(x, y); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2s)(GLshort x, GLshort y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[775]; + mapi_func _func = ((const mapi_func *) _tbl)[777]; ((void (APIENTRY *)(GLshort x, GLshort y)) _func)(x, y); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2sARB)(GLshort x, GLshort y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[775]; + mapi_func _func = ((const mapi_func *) _tbl)[777]; ((void (APIENTRY *)(GLshort x, GLshort y)) _func)(x, y); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2svMESA)(const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[776]; + mapi_func _func = ((const mapi_func *) _tbl)[778]; ((void (APIENTRY *)(const GLshort *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2sv)(const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[776]; + mapi_func _func = ((const mapi_func *) _tbl)[778]; ((void (APIENTRY *)(const GLshort *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos2svARB)(const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[776]; + mapi_func _func = ((const mapi_func *) _tbl)[778]; ((void (APIENTRY *)(const GLshort *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3dMESA)(GLdouble x, GLdouble y, GLdouble z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[777]; + mapi_func _func = ((const mapi_func *) _tbl)[779]; ((void (APIENTRY *)(GLdouble x, GLdouble y, GLdouble z)) _func)(x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3d)(GLdouble x, GLdouble y, GLdouble z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[777]; + mapi_func _func = ((const mapi_func *) _tbl)[779]; ((void (APIENTRY *)(GLdouble x, GLdouble y, GLdouble z)) _func)(x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3dARB)(GLdouble x, GLdouble y, GLdouble z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[777]; + mapi_func _func = ((const mapi_func *) _tbl)[779]; ((void (APIENTRY *)(GLdouble x, GLdouble y, GLdouble z)) _func)(x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3dvMESA)(const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[778]; + mapi_func _func = ((const mapi_func *) _tbl)[780]; ((void (APIENTRY *)(const GLdouble *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3dv)(const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[778]; + mapi_func _func = ((const mapi_func *) _tbl)[780]; ((void (APIENTRY *)(const GLdouble *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3dvARB)(const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[778]; + mapi_func _func = ((const mapi_func *) _tbl)[780]; ((void (APIENTRY *)(const GLdouble *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3fMESA)(GLfloat x, GLfloat y, GLfloat z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[779]; + mapi_func _func = ((const mapi_func *) _tbl)[781]; ((void (APIENTRY *)(GLfloat x, GLfloat y, GLfloat z)) _func)(x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3f)(GLfloat x, GLfloat y, GLfloat z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[779]; + mapi_func _func = ((const mapi_func *) _tbl)[781]; ((void (APIENTRY *)(GLfloat x, GLfloat y, GLfloat z)) _func)(x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3fARB)(GLfloat x, GLfloat y, GLfloat z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[779]; + mapi_func _func = ((const mapi_func *) _tbl)[781]; ((void (APIENTRY *)(GLfloat x, GLfloat y, GLfloat z)) _func)(x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3fvMESA)(const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[780]; + mapi_func _func = ((const mapi_func *) _tbl)[782]; ((void (APIENTRY *)(const GLfloat *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3fv)(const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[780]; + mapi_func _func = ((const mapi_func *) _tbl)[782]; ((void (APIENTRY *)(const GLfloat *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3fvARB)(const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[780]; + mapi_func _func = ((const mapi_func *) _tbl)[782]; ((void (APIENTRY *)(const GLfloat *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3iMESA)(GLint x, GLint y, GLint z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[781]; + mapi_func _func = ((const mapi_func *) _tbl)[783]; ((void (APIENTRY *)(GLint x, GLint y, GLint z)) _func)(x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3i)(GLint x, GLint y, GLint z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[781]; + mapi_func _func = ((const mapi_func *) _tbl)[783]; ((void (APIENTRY *)(GLint x, GLint y, GLint z)) _func)(x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3iARB)(GLint x, GLint y, GLint z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[781]; + mapi_func _func = ((const mapi_func *) _tbl)[783]; ((void (APIENTRY *)(GLint x, GLint y, GLint z)) _func)(x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3ivMESA)(const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[782]; + mapi_func _func = ((const mapi_func *) _tbl)[784]; ((void (APIENTRY *)(const GLint *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3iv)(const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[782]; + mapi_func _func = ((const mapi_func *) _tbl)[784]; ((void (APIENTRY *)(const GLint *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3ivARB)(const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[782]; + mapi_func _func = ((const mapi_func *) _tbl)[784]; ((void (APIENTRY *)(const GLint *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3sMESA)(GLshort x, GLshort y, GLshort z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[783]; + mapi_func _func = ((const mapi_func *) _tbl)[785]; ((void (APIENTRY *)(GLshort x, GLshort y, GLshort z)) _func)(x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3s)(GLshort x, GLshort y, GLshort z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[783]; + mapi_func _func = ((const mapi_func *) _tbl)[785]; ((void (APIENTRY *)(GLshort x, GLshort y, GLshort z)) _func)(x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3sARB)(GLshort x, GLshort y, GLshort z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[783]; + mapi_func _func = ((const mapi_func *) _tbl)[785]; ((void (APIENTRY *)(GLshort x, GLshort y, GLshort z)) _func)(x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3svMESA)(const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[784]; + mapi_func _func = ((const mapi_func *) _tbl)[786]; ((void (APIENTRY *)(const GLshort *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3sv)(const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[784]; + mapi_func _func = ((const mapi_func *) _tbl)[786]; ((void (APIENTRY *)(const GLshort *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos3svARB)(const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[784]; + mapi_func _func = ((const mapi_func *) _tbl)[786]; ((void (APIENTRY *)(const GLshort *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[785]; + mapi_func _func = ((const mapi_func *) _tbl)[787]; ((void (APIENTRY *)(GLdouble x, GLdouble y, GLdouble z, GLdouble w)) _func)(x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos4dvMESA)(const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[786]; + mapi_func _func = ((const mapi_func *) _tbl)[788]; ((void (APIENTRY *)(const GLdouble *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[787]; + mapi_func _func = ((const mapi_func *) _tbl)[789]; ((void (APIENTRY *)(GLfloat x, GLfloat y, GLfloat z, GLfloat w)) _func)(x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos4fvMESA)(const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[788]; + mapi_func _func = ((const mapi_func *) _tbl)[790]; ((void (APIENTRY *)(const GLfloat *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[789]; + mapi_func _func = ((const mapi_func *) _tbl)[791]; ((void (APIENTRY *)(GLint x, GLint y, GLint z, GLint w)) _func)(x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos4ivMESA)(const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[790]; + mapi_func _func = ((const mapi_func *) _tbl)[792]; ((void (APIENTRY *)(const GLint *v)) _func)(v); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[791]; + mapi_func _func = ((const mapi_func *) _tbl)[793]; ((void (APIENTRY *)(GLshort x, GLshort y, GLshort z, GLshort w)) _func)(x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(WindowPos4svMESA)(const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[792]; + mapi_func _func = ((const mapi_func *) _tbl)[794]; ((void (APIENTRY *)(const GLshort *v)) _func)(v); } GLAPI GLboolean APIENTRY GLAPI_PREFIX(AreProgramsResidentNV)(GLsizei n, const GLuint *ids, GLboolean *residences) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[802]; + mapi_func _func = ((const mapi_func *) _tbl)[804]; return ((GLboolean (APIENTRY *)(GLsizei n, const GLuint *ids, GLboolean *residences)) _func)(n, ids, residences); } GLAPI void APIENTRY GLAPI_PREFIX(BindProgramNV)(GLenum target, GLuint program) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[803]; + mapi_func _func = ((const mapi_func *) _tbl)[805]; ((void (APIENTRY *)(GLenum target, GLuint program)) _func)(target, program); } GLAPI void APIENTRY GLAPI_PREFIX(BindProgramARB)(GLenum target, GLuint program) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[803]; + mapi_func _func = ((const mapi_func *) _tbl)[805]; ((void (APIENTRY *)(GLenum target, GLuint program)) _func)(target, program); } GLAPI void APIENTRY GLAPI_PREFIX(DeleteProgramsNV)(GLsizei n, const GLuint *programs) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[804]; + mapi_func _func = ((const mapi_func *) _tbl)[806]; ((void (APIENTRY *)(GLsizei n, const GLuint *programs)) _func)(n, programs); } GLAPI void APIENTRY GLAPI_PREFIX(DeleteProgramsARB)(GLsizei n, const GLuint *programs) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[804]; + mapi_func _func = ((const mapi_func *) _tbl)[806]; ((void (APIENTRY *)(GLsizei n, const GLuint *programs)) _func)(n, programs); } GLAPI void APIENTRY GLAPI_PREFIX(ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[805]; + mapi_func _func = ((const mapi_func *) _tbl)[807]; ((void (APIENTRY *)(GLenum target, GLuint id, const GLfloat *params)) _func)(target, id, params); } GLAPI void APIENTRY GLAPI_PREFIX(GenProgramsNV)(GLsizei n, GLuint *programs) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[806]; + mapi_func _func = ((const mapi_func *) _tbl)[808]; ((void (APIENTRY *)(GLsizei n, GLuint *programs)) _func)(n, programs); } GLAPI void APIENTRY GLAPI_PREFIX(GenProgramsARB)(GLsizei n, GLuint *programs) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[806]; + mapi_func _func = ((const mapi_func *) _tbl)[808]; ((void (APIENTRY *)(GLsizei n, GLuint *programs)) _func)(n, programs); } GLAPI void APIENTRY GLAPI_PREFIX(GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[807]; + mapi_func _func = ((const mapi_func *) _tbl)[809]; ((void (APIENTRY *)(GLenum target, GLuint index, GLenum pname, GLdouble *params)) _func)(target, index, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[808]; + mapi_func _func = ((const mapi_func *) _tbl)[810]; ((void (APIENTRY *)(GLenum target, GLuint index, GLenum pname, GLfloat *params)) _func)(target, index, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetProgramStringNV)(GLuint id, GLenum pname, GLubyte *program) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[809]; + mapi_func _func = ((const mapi_func *) _tbl)[811]; ((void (APIENTRY *)(GLuint id, GLenum pname, GLubyte *program)) _func)(id, pname, program); } GLAPI void APIENTRY GLAPI_PREFIX(GetProgramivNV)(GLuint id, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[810]; + mapi_func _func = ((const mapi_func *) _tbl)[812]; ((void (APIENTRY *)(GLuint id, GLenum pname, GLint *params)) _func)(id, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[811]; + mapi_func _func = ((const mapi_func *) _tbl)[813]; ((void (APIENTRY *)(GLenum target, GLuint address, GLenum pname, GLint *params)) _func)(target, address, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetVertexAttribPointervNV)(GLuint index, GLenum pname, GLvoid **pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[812]; + mapi_func _func = ((const mapi_func *) _tbl)[814]; ((void (APIENTRY *)(GLuint index, GLenum pname, GLvoid **pointer)) _func)(index, pname, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(GetVertexAttribPointerv)(GLuint index, GLenum pname, GLvoid **pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[812]; + mapi_func _func = ((const mapi_func *) _tbl)[814]; ((void (APIENTRY *)(GLuint index, GLenum pname, GLvoid **pointer)) _func)(index, pname, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(GetVertexAttribPointervARB)(GLuint index, GLenum pname, GLvoid **pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[812]; + mapi_func _func = ((const mapi_func *) _tbl)[814]; ((void (APIENTRY *)(GLuint index, GLenum pname, GLvoid **pointer)) _func)(index, pname, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[813]; + mapi_func _func = ((const mapi_func *) _tbl)[815]; ((void (APIENTRY *)(GLuint index, GLenum pname, GLdouble *params)) _func)(index, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[814]; + mapi_func _func = ((const mapi_func *) _tbl)[816]; ((void (APIENTRY *)(GLuint index, GLenum pname, GLfloat *params)) _func)(index, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetVertexAttribivNV)(GLuint index, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[815]; + mapi_func _func = ((const mapi_func *) _tbl)[817]; ((void (APIENTRY *)(GLuint index, GLenum pname, GLint *params)) _func)(index, pname, params); } GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsProgramNV)(GLuint program) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[816]; + mapi_func _func = ((const mapi_func *) _tbl)[818]; return ((GLboolean (APIENTRY *)(GLuint program)) _func)(program); } GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsProgramARB)(GLuint program) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[816]; + mapi_func _func = ((const mapi_func *) _tbl)[818]; return ((GLboolean (APIENTRY *)(GLuint program)) _func)(program); } GLAPI void APIENTRY GLAPI_PREFIX(LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte *program) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[817]; + mapi_func _func = ((const mapi_func *) _tbl)[819]; ((void (APIENTRY *)(GLenum target, GLuint id, GLsizei len, const GLubyte *program)) _func)(target, id, len, program); } GLAPI void APIENTRY GLAPI_PREFIX(ProgramParameters4dvNV)(GLenum target, GLuint index, GLsizei num, const GLdouble *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[818]; + mapi_func _func = ((const mapi_func *) _tbl)[820]; ((void (APIENTRY *)(GLenum target, GLuint index, GLsizei num, const GLdouble *params)) _func)(target, index, num, params); } GLAPI void APIENTRY GLAPI_PREFIX(ProgramParameters4fvNV)(GLenum target, GLuint index, GLsizei num, const GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[819]; + mapi_func _func = ((const mapi_func *) _tbl)[821]; ((void (APIENTRY *)(GLenum target, GLuint index, GLsizei num, const GLfloat *params)) _func)(target, index, num, params); } GLAPI void APIENTRY GLAPI_PREFIX(RequestResidentProgramsNV)(GLsizei n, const GLuint *ids) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[820]; + mapi_func _func = ((const mapi_func *) _tbl)[822]; ((void (APIENTRY *)(GLsizei n, const GLuint *ids)) _func)(n, ids); } GLAPI void APIENTRY GLAPI_PREFIX(TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[821]; + mapi_func _func = ((const mapi_func *) _tbl)[823]; ((void (APIENTRY *)(GLenum target, GLuint address, GLenum matrix, GLenum transform)) _func)(target, address, matrix, transform); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib1dNV)(GLuint index, GLdouble x) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[822]; + mapi_func _func = ((const mapi_func *) _tbl)[824]; ((void (APIENTRY *)(GLuint index, GLdouble x)) _func)(index, x); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib1dvNV)(GLuint index, const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[823]; + mapi_func _func = ((const mapi_func *) _tbl)[825]; ((void (APIENTRY *)(GLuint index, const GLdouble *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib1fNV)(GLuint index, GLfloat x) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[824]; + mapi_func _func = ((const mapi_func *) _tbl)[826]; ((void (APIENTRY *)(GLuint index, GLfloat x)) _func)(index, x); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib1fvNV)(GLuint index, const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[825]; + mapi_func _func = ((const mapi_func *) _tbl)[827]; ((void (APIENTRY *)(GLuint index, const GLfloat *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib1sNV)(GLuint index, GLshort x) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[826]; + mapi_func _func = ((const mapi_func *) _tbl)[828]; ((void (APIENTRY *)(GLuint index, GLshort x)) _func)(index, x); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib1svNV)(GLuint index, const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[827]; + mapi_func _func = ((const mapi_func *) _tbl)[829]; ((void (APIENTRY *)(GLuint index, const GLshort *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[828]; + mapi_func _func = ((const mapi_func *) _tbl)[830]; ((void (APIENTRY *)(GLuint index, GLdouble x, GLdouble y)) _func)(index, x, y); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib2dvNV)(GLuint index, const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[829]; + mapi_func _func = ((const mapi_func *) _tbl)[831]; ((void (APIENTRY *)(GLuint index, const GLdouble *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[830]; + mapi_func _func = ((const mapi_func *) _tbl)[832]; ((void (APIENTRY *)(GLuint index, GLfloat x, GLfloat y)) _func)(index, x, y); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib2fvNV)(GLuint index, const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[831]; + mapi_func _func = ((const mapi_func *) _tbl)[833]; ((void (APIENTRY *)(GLuint index, const GLfloat *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[832]; + mapi_func _func = ((const mapi_func *) _tbl)[834]; ((void (APIENTRY *)(GLuint index, GLshort x, GLshort y)) _func)(index, x, y); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib2svNV)(GLuint index, const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[833]; + mapi_func _func = ((const mapi_func *) _tbl)[835]; ((void (APIENTRY *)(GLuint index, const GLshort *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[834]; + mapi_func _func = ((const mapi_func *) _tbl)[836]; ((void (APIENTRY *)(GLuint index, GLdouble x, GLdouble y, GLdouble z)) _func)(index, x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib3dvNV)(GLuint index, const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[835]; + mapi_func _func = ((const mapi_func *) _tbl)[837]; ((void (APIENTRY *)(GLuint index, const GLdouble *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[836]; + mapi_func _func = ((const mapi_func *) _tbl)[838]; ((void (APIENTRY *)(GLuint index, GLfloat x, GLfloat y, GLfloat z)) _func)(index, x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib3fvNV)(GLuint index, const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[837]; + mapi_func _func = ((const mapi_func *) _tbl)[839]; ((void (APIENTRY *)(GLuint index, const GLfloat *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[838]; + mapi_func _func = ((const mapi_func *) _tbl)[840]; ((void (APIENTRY *)(GLuint index, GLshort x, GLshort y, GLshort z)) _func)(index, x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib3svNV)(GLuint index, const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[839]; + mapi_func _func = ((const mapi_func *) _tbl)[841]; ((void (APIENTRY *)(GLuint index, const GLshort *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[840]; + mapi_func _func = ((const mapi_func *) _tbl)[842]; ((void (APIENTRY *)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w)) _func)(index, x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib4dvNV)(GLuint index, const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[841]; + mapi_func _func = ((const mapi_func *) _tbl)[843]; ((void (APIENTRY *)(GLuint index, const GLdouble *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[842]; + mapi_func _func = ((const mapi_func *) _tbl)[844]; ((void (APIENTRY *)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w)) _func)(index, x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib4fvNV)(GLuint index, const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[843]; + mapi_func _func = ((const mapi_func *) _tbl)[845]; ((void (APIENTRY *)(GLuint index, const GLfloat *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[844]; + mapi_func _func = ((const mapi_func *) _tbl)[846]; ((void (APIENTRY *)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w)) _func)(index, x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib4svNV)(GLuint index, const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[845]; + mapi_func _func = ((const mapi_func *) _tbl)[847]; ((void (APIENTRY *)(GLuint index, const GLshort *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[846]; + mapi_func _func = ((const mapi_func *) _tbl)[848]; ((void (APIENTRY *)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w)) _func)(index, x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttrib4ubvNV)(GLuint index, const GLubyte *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[847]; + mapi_func _func = ((const mapi_func *) _tbl)[849]; ((void (APIENTRY *)(GLuint index, const GLubyte *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[848]; + mapi_func _func = ((const mapi_func *) _tbl)[850]; ((void (APIENTRY *)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)) _func)(index, size, type, stride, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[849]; + mapi_func _func = ((const mapi_func *) _tbl)[851]; ((void (APIENTRY *)(GLuint index, GLsizei n, const GLdouble *v)) _func)(index, n, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[850]; + mapi_func _func = ((const mapi_func *) _tbl)[852]; ((void (APIENTRY *)(GLuint index, GLsizei n, const GLfloat *v)) _func)(index, n, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[851]; + mapi_func _func = ((const mapi_func *) _tbl)[853]; ((void (APIENTRY *)(GLuint index, GLsizei n, const GLshort *v)) _func)(index, n, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[852]; + mapi_func _func = ((const mapi_func *) _tbl)[854]; ((void (APIENTRY *)(GLuint index, GLsizei n, const GLdouble *v)) _func)(index, n, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[853]; + mapi_func _func = ((const mapi_func *) _tbl)[855]; ((void (APIENTRY *)(GLuint index, GLsizei n, const GLfloat *v)) _func)(index, n, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[854]; + mapi_func _func = ((const mapi_func *) _tbl)[856]; ((void (APIENTRY *)(GLuint index, GLsizei n, const GLshort *v)) _func)(index, n, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[855]; + mapi_func _func = ((const mapi_func *) _tbl)[857]; ((void (APIENTRY *)(GLuint index, GLsizei n, const GLdouble *v)) _func)(index, n, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[856]; + mapi_func _func = ((const mapi_func *) _tbl)[858]; ((void (APIENTRY *)(GLuint index, GLsizei n, const GLfloat *v)) _func)(index, n, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[857]; + mapi_func _func = ((const mapi_func *) _tbl)[859]; ((void (APIENTRY *)(GLuint index, GLsizei n, const GLshort *v)) _func)(index, n, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[858]; + mapi_func _func = ((const mapi_func *) _tbl)[860]; ((void (APIENTRY *)(GLuint index, GLsizei n, const GLdouble *v)) _func)(index, n, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[859]; + mapi_func _func = ((const mapi_func *) _tbl)[861]; ((void (APIENTRY *)(GLuint index, GLsizei n, const GLfloat *v)) _func)(index, n, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[860]; + mapi_func _func = ((const mapi_func *) _tbl)[862]; ((void (APIENTRY *)(GLuint index, GLsizei n, const GLshort *v)) _func)(index, n, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[861]; + mapi_func _func = ((const mapi_func *) _tbl)[863]; ((void (APIENTRY *)(GLuint index, GLsizei n, const GLubyte *v)) _func)(index, n, v); } GLAPI void APIENTRY GLAPI_PREFIX(GetTexBumpParameterfvATI)(GLenum pname, GLfloat *param) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[862]; + mapi_func _func = ((const mapi_func *) _tbl)[864]; ((void (APIENTRY *)(GLenum pname, GLfloat *param)) _func)(pname, param); } GLAPI void APIENTRY GLAPI_PREFIX(GetTexBumpParameterivATI)(GLenum pname, GLint *param) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[863]; + mapi_func _func = ((const mapi_func *) _tbl)[865]; ((void (APIENTRY *)(GLenum pname, GLint *param)) _func)(pname, param); } GLAPI void APIENTRY GLAPI_PREFIX(TexBumpParameterfvATI)(GLenum pname, const GLfloat *param) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[864]; + mapi_func _func = ((const mapi_func *) _tbl)[866]; ((void (APIENTRY *)(GLenum pname, const GLfloat *param)) _func)(pname, param); } GLAPI void APIENTRY GLAPI_PREFIX(TexBumpParameterivATI)(GLenum pname, const GLint *param) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[865]; + mapi_func _func = ((const mapi_func *) _tbl)[867]; ((void (APIENTRY *)(GLenum pname, const GLint *param)) _func)(pname, param); } GLAPI void APIENTRY GLAPI_PREFIX(AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[866]; + mapi_func _func = ((const mapi_func *) _tbl)[868]; ((void (APIENTRY *)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod)) _func)(op, dst, dstMod, arg1, arg1Rep, arg1Mod); } GLAPI void APIENTRY GLAPI_PREFIX(AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[867]; + mapi_func _func = ((const mapi_func *) _tbl)[869]; ((void (APIENTRY *)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod)) _func)(op, dst, dstMod, arg1, arg1Rep, arg1Mod, arg2, arg2Rep, arg2Mod); } GLAPI void APIENTRY GLAPI_PREFIX(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) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[868]; + mapi_func _func = ((const mapi_func *) _tbl)[870]; ((void (APIENTRY *)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod, GLuint arg3, GLuint arg3Rep, GLuint arg3Mod)) _func)(op, dst, dstMod, arg1, arg1Rep, arg1Mod, arg2, arg2Rep, arg2Mod, arg3, arg3Rep, arg3Mod); } GLAPI void APIENTRY GLAPI_PREFIX(BeginFragmentShaderATI)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[869]; + mapi_func _func = ((const mapi_func *) _tbl)[871]; ((void (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(BindFragmentShaderATI)(GLuint id) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[870]; + mapi_func _func = ((const mapi_func *) _tbl)[872]; ((void (APIENTRY *)(GLuint id)) _func)(id); } GLAPI void APIENTRY GLAPI_PREFIX(ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[871]; + mapi_func _func = ((const mapi_func *) _tbl)[873]; ((void (APIENTRY *)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod)) _func)(op, dst, dstMask, dstMod, arg1, arg1Rep, arg1Mod); } GLAPI void APIENTRY GLAPI_PREFIX(ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[872]; + mapi_func _func = ((const mapi_func *) _tbl)[874]; ((void (APIENTRY *)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod)) _func)(op, dst, dstMask, dstMod, arg1, arg1Rep, arg1Mod, arg2, arg2Rep, arg2Mod); } GLAPI void APIENTRY GLAPI_PREFIX(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) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[873]; + mapi_func _func = ((const mapi_func *) _tbl)[875]; ((void (APIENTRY *)(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)) _func)(op, dst, dstMask, dstMod, arg1, arg1Rep, arg1Mod, arg2, arg2Rep, arg2Mod, arg3, arg3Rep, arg3Mod); } GLAPI void APIENTRY GLAPI_PREFIX(DeleteFragmentShaderATI)(GLuint id) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[874]; + mapi_func _func = ((const mapi_func *) _tbl)[876]; ((void (APIENTRY *)(GLuint id)) _func)(id); } GLAPI void APIENTRY GLAPI_PREFIX(EndFragmentShaderATI)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[875]; + mapi_func _func = ((const mapi_func *) _tbl)[877]; ((void (APIENTRY *)(void)) _func)(); } GLAPI GLuint APIENTRY GLAPI_PREFIX(GenFragmentShadersATI)(GLuint range) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[876]; + mapi_func _func = ((const mapi_func *) _tbl)[878]; return ((GLuint (APIENTRY *)(GLuint range)) _func)(range); } GLAPI void APIENTRY GLAPI_PREFIX(PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[877]; + mapi_func _func = ((const mapi_func *) _tbl)[879]; ((void (APIENTRY *)(GLuint dst, GLuint coord, GLenum swizzle)) _func)(dst, coord, swizzle); } GLAPI void APIENTRY GLAPI_PREFIX(SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[878]; + mapi_func _func = ((const mapi_func *) _tbl)[880]; ((void (APIENTRY *)(GLuint dst, GLuint interp, GLenum swizzle)) _func)(dst, interp, swizzle); } GLAPI void APIENTRY GLAPI_PREFIX(SetFragmentShaderConstantATI)(GLuint dst, const GLfloat *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[879]; + mapi_func _func = ((const mapi_func *) _tbl)[881]; ((void (APIENTRY *)(GLuint dst, const GLfloat *value)) _func)(dst, value); } GLAPI void APIENTRY GLAPI_PREFIX(PointParameteriNV)(GLenum pname, GLint param) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[880]; + mapi_func _func = ((const mapi_func *) _tbl)[882]; ((void (APIENTRY *)(GLenum pname, GLint param)) _func)(pname, param); } GLAPI void APIENTRY GLAPI_PREFIX(PointParameteri)(GLenum pname, GLint param) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[880]; + mapi_func _func = ((const mapi_func *) _tbl)[882]; ((void (APIENTRY *)(GLenum pname, GLint param)) _func)(pname, param); } GLAPI void APIENTRY GLAPI_PREFIX(PointParameterivNV)(GLenum pname, const GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[881]; + mapi_func _func = ((const mapi_func *) _tbl)[883]; ((void (APIENTRY *)(GLenum pname, const GLint *params)) _func)(pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(PointParameteriv)(GLenum pname, const GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[881]; + mapi_func _func = ((const mapi_func *) _tbl)[883]; ((void (APIENTRY *)(GLenum pname, const GLint *params)) _func)(pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(DeleteVertexArrays)(GLsizei n, const GLuint *arrays) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[884]; + mapi_func _func = ((const mapi_func *) _tbl)[886]; ((void (APIENTRY *)(GLsizei n, const GLuint *arrays)) _func)(n, arrays); } GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsVertexArray)(GLuint array) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[886]; + mapi_func _func = ((const mapi_func *) _tbl)[888]; return ((GLboolean (APIENTRY *)(GLuint array)) _func)(array); } GLAPI void APIENTRY GLAPI_PREFIX(GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte *name, GLdouble *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[887]; + mapi_func _func = ((const mapi_func *) _tbl)[889]; ((void (APIENTRY *)(GLuint id, GLsizei len, const GLubyte *name, GLdouble *params)) _func)(id, len, name, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte *name, GLfloat *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[888]; + mapi_func _func = ((const mapi_func *) _tbl)[890]; ((void (APIENTRY *)(GLuint id, GLsizei len, const GLubyte *name, GLfloat *params)) _func)(id, len, name, params); } GLAPI void APIENTRY GLAPI_PREFIX(ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[889]; + mapi_func _func = ((const mapi_func *) _tbl)[891]; ((void (APIENTRY *)(GLuint id, GLsizei len, const GLubyte *name, GLdouble x, GLdouble y, GLdouble z, GLdouble w)) _func)(id, len, name, x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[890]; + mapi_func _func = ((const mapi_func *) _tbl)[892]; ((void (APIENTRY *)(GLuint id, GLsizei len, const GLubyte *name, const GLdouble *v)) _func)(id, len, name, v); } GLAPI void APIENTRY GLAPI_PREFIX(ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[891]; + mapi_func _func = ((const mapi_func *) _tbl)[893]; ((void (APIENTRY *)(GLuint id, GLsizei len, const GLubyte *name, GLfloat x, GLfloat y, GLfloat z, GLfloat w)) _func)(id, len, name, x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[892]; + mapi_func _func = ((const mapi_func *) _tbl)[894]; ((void (APIENTRY *)(GLuint id, GLsizei len, const GLubyte *name, const GLfloat *v)) _func)(id, len, name, v); } GLAPI void APIENTRY GLAPI_PREFIX(PrimitiveRestartIndexNV)(GLuint index) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[893]; + mapi_func _func = ((const mapi_func *) _tbl)[895]; ((void (APIENTRY *)(GLuint index)) _func)(index); } GLAPI void APIENTRY GLAPI_PREFIX(PrimitiveRestartIndex)(GLuint index) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[893]; + mapi_func _func = ((const mapi_func *) _tbl)[895]; ((void (APIENTRY *)(GLuint index)) _func)(index); } GLAPI void APIENTRY GLAPI_PREFIX(PrimitiveRestartNV)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[894]; + mapi_func _func = ((const mapi_func *) _tbl)[896]; ((void (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(BlendEquationSeparate)(GLenum modeRGB, GLenum modeA) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[942]; + mapi_func _func = ((const mapi_func *) _tbl)[944]; ((void (APIENTRY *)(GLenum modeRGB, GLenum modeA)) _func)(modeRGB, modeA); } GLAPI void APIENTRY GLAPI_PREFIX(BindFramebufferEXT)(GLenum target, GLuint framebuffer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[943]; + mapi_func _func = ((const mapi_func *) _tbl)[945]; ((void (APIENTRY *)(GLenum target, GLuint framebuffer)) _func)(target, framebuffer); } GLAPI void APIENTRY GLAPI_PREFIX(BindFramebuffer)(GLenum target, GLuint framebuffer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[943]; + mapi_func _func = ((const mapi_func *) _tbl)[945]; ((void (APIENTRY *)(GLenum target, GLuint framebuffer)) _func)(target, framebuffer); } GLAPI void APIENTRY GLAPI_PREFIX(BindRenderbufferEXT)(GLenum target, GLuint renderbuffer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[944]; + mapi_func _func = ((const mapi_func *) _tbl)[946]; ((void (APIENTRY *)(GLenum target, GLuint renderbuffer)) _func)(target, renderbuffer); } GLAPI void APIENTRY GLAPI_PREFIX(BindRenderbuffer)(GLenum target, GLuint renderbuffer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[944]; + mapi_func _func = ((const mapi_func *) _tbl)[946]; ((void (APIENTRY *)(GLenum target, GLuint renderbuffer)) _func)(target, renderbuffer); } GLAPI GLenum APIENTRY GLAPI_PREFIX(CheckFramebufferStatusEXT)(GLenum target) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[945]; + mapi_func _func = ((const mapi_func *) _tbl)[947]; return ((GLenum (APIENTRY *)(GLenum target)) _func)(target); } GLAPI GLenum APIENTRY GLAPI_PREFIX(CheckFramebufferStatus)(GLenum target) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[945]; + mapi_func _func = ((const mapi_func *) _tbl)[947]; return ((GLenum (APIENTRY *)(GLenum target)) _func)(target); } GLAPI void APIENTRY GLAPI_PREFIX(DeleteFramebuffersEXT)(GLsizei n, const GLuint *framebuffers) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[946]; + mapi_func _func = ((const mapi_func *) _tbl)[948]; ((void (APIENTRY *)(GLsizei n, const GLuint *framebuffers)) _func)(n, framebuffers); } GLAPI void APIENTRY GLAPI_PREFIX(DeleteFramebuffers)(GLsizei n, const GLuint *framebuffers) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[946]; + mapi_func _func = ((const mapi_func *) _tbl)[948]; ((void (APIENTRY *)(GLsizei n, const GLuint *framebuffers)) _func)(n, framebuffers); } GLAPI void APIENTRY GLAPI_PREFIX(DeleteRenderbuffersEXT)(GLsizei n, const GLuint *renderbuffers) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[947]; + mapi_func _func = ((const mapi_func *) _tbl)[949]; ((void (APIENTRY *)(GLsizei n, const GLuint *renderbuffers)) _func)(n, renderbuffers); } GLAPI void APIENTRY GLAPI_PREFIX(DeleteRenderbuffers)(GLsizei n, const GLuint *renderbuffers) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[947]; + mapi_func _func = ((const mapi_func *) _tbl)[949]; ((void (APIENTRY *)(GLsizei n, const GLuint *renderbuffers)) _func)(n, renderbuffers); } GLAPI void APIENTRY GLAPI_PREFIX(FramebufferRenderbufferEXT)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[948]; + mapi_func _func = ((const mapi_func *) _tbl)[950]; ((void (APIENTRY *)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer)) _func)(target, attachment, renderbuffertarget, renderbuffer); } GLAPI void APIENTRY GLAPI_PREFIX(FramebufferRenderbuffer)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[948]; + mapi_func _func = ((const mapi_func *) _tbl)[950]; ((void (APIENTRY *)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer)) _func)(target, attachment, renderbuffertarget, renderbuffer); } GLAPI void APIENTRY GLAPI_PREFIX(FramebufferTexture1DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[949]; + mapi_func _func = ((const mapi_func *) _tbl)[951]; ((void (APIENTRY *)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level)) _func)(target, attachment, textarget, texture, level); } GLAPI void APIENTRY GLAPI_PREFIX(FramebufferTexture1D)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[949]; + mapi_func _func = ((const mapi_func *) _tbl)[951]; ((void (APIENTRY *)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level)) _func)(target, attachment, textarget, texture, level); } GLAPI void APIENTRY GLAPI_PREFIX(FramebufferTexture2DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[950]; + mapi_func _func = ((const mapi_func *) _tbl)[952]; ((void (APIENTRY *)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level)) _func)(target, attachment, textarget, texture, level); } GLAPI void APIENTRY GLAPI_PREFIX(FramebufferTexture2D)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[950]; + mapi_func _func = ((const mapi_func *) _tbl)[952]; ((void (APIENTRY *)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level)) _func)(target, attachment, textarget, texture, level); } GLAPI void APIENTRY GLAPI_PREFIX(FramebufferTexture3DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[951]; + mapi_func _func = ((const mapi_func *) _tbl)[953]; ((void (APIENTRY *)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset)) _func)(target, attachment, textarget, texture, level, zoffset); } GLAPI void APIENTRY GLAPI_PREFIX(FramebufferTexture3D)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[951]; + mapi_func _func = ((const mapi_func *) _tbl)[953]; ((void (APIENTRY *)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset)) _func)(target, attachment, textarget, texture, level, zoffset); } GLAPI void APIENTRY GLAPI_PREFIX(GenFramebuffersEXT)(GLsizei n, GLuint *framebuffers) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[952]; + mapi_func _func = ((const mapi_func *) _tbl)[954]; ((void (APIENTRY *)(GLsizei n, GLuint *framebuffers)) _func)(n, framebuffers); } GLAPI void APIENTRY GLAPI_PREFIX(GenFramebuffers)(GLsizei n, GLuint *framebuffers) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[952]; + mapi_func _func = ((const mapi_func *) _tbl)[954]; ((void (APIENTRY *)(GLsizei n, GLuint *framebuffers)) _func)(n, framebuffers); } GLAPI void APIENTRY GLAPI_PREFIX(GenRenderbuffersEXT)(GLsizei n, GLuint *renderbuffers) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[953]; + mapi_func _func = ((const mapi_func *) _tbl)[955]; ((void (APIENTRY *)(GLsizei n, GLuint *renderbuffers)) _func)(n, renderbuffers); } GLAPI void APIENTRY GLAPI_PREFIX(GenRenderbuffers)(GLsizei n, GLuint *renderbuffers) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[953]; + mapi_func _func = ((const mapi_func *) _tbl)[955]; ((void (APIENTRY *)(GLsizei n, GLuint *renderbuffers)) _func)(n, renderbuffers); } GLAPI void APIENTRY GLAPI_PREFIX(GenerateMipmapEXT)(GLenum target) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[954]; + mapi_func _func = ((const mapi_func *) _tbl)[956]; ((void (APIENTRY *)(GLenum target)) _func)(target); } GLAPI void APIENTRY GLAPI_PREFIX(GenerateMipmap)(GLenum target) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[954]; + mapi_func _func = ((const mapi_func *) _tbl)[956]; ((void (APIENTRY *)(GLenum target)) _func)(target); } GLAPI void APIENTRY GLAPI_PREFIX(GetFramebufferAttachmentParameterivEXT)(GLenum target, GLenum attachment, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[955]; + mapi_func _func = ((const mapi_func *) _tbl)[957]; ((void (APIENTRY *)(GLenum target, GLenum attachment, GLenum pname, GLint *params)) _func)(target, attachment, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetFramebufferAttachmentParameteriv)(GLenum target, GLenum attachment, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[955]; + mapi_func _func = ((const mapi_func *) _tbl)[957]; ((void (APIENTRY *)(GLenum target, GLenum attachment, GLenum pname, GLint *params)) _func)(target, attachment, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetRenderbufferParameterivEXT)(GLenum target, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[956]; + mapi_func _func = ((const mapi_func *) _tbl)[958]; ((void (APIENTRY *)(GLenum target, GLenum pname, GLint *params)) _func)(target, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetRenderbufferParameteriv)(GLenum target, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[956]; + mapi_func _func = ((const mapi_func *) _tbl)[958]; ((void (APIENTRY *)(GLenum target, GLenum pname, GLint *params)) _func)(target, pname, params); } GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsFramebufferEXT)(GLuint framebuffer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[957]; + mapi_func _func = ((const mapi_func *) _tbl)[959]; return ((GLboolean (APIENTRY *)(GLuint framebuffer)) _func)(framebuffer); } GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsFramebuffer)(GLuint framebuffer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[957]; + mapi_func _func = ((const mapi_func *) _tbl)[959]; return ((GLboolean (APIENTRY *)(GLuint framebuffer)) _func)(framebuffer); } GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsRenderbufferEXT)(GLuint renderbuffer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[958]; + mapi_func _func = ((const mapi_func *) _tbl)[960]; return ((GLboolean (APIENTRY *)(GLuint renderbuffer)) _func)(renderbuffer); } GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsRenderbuffer)(GLuint renderbuffer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[958]; + mapi_func _func = ((const mapi_func *) _tbl)[960]; return ((GLboolean (APIENTRY *)(GLuint renderbuffer)) _func)(renderbuffer); } GLAPI void APIENTRY GLAPI_PREFIX(RenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[959]; + mapi_func _func = ((const mapi_func *) _tbl)[961]; ((void (APIENTRY *)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height)) _func)(target, internalformat, width, height); } GLAPI void APIENTRY GLAPI_PREFIX(RenderbufferStorage)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[959]; + mapi_func _func = ((const mapi_func *) _tbl)[961]; ((void (APIENTRY *)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height)) _func)(target, internalformat, width, height); } GLAPI void APIENTRY GLAPI_PREFIX(BlitFramebuffer)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[960]; + mapi_func _func = ((const mapi_func *) _tbl)[962]; ((void (APIENTRY *)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter)) _func)(srcX0, srcY0, srcX1, srcY1, dstX0, dstY0, dstX1, dstY1, mask, filter); } GLAPI void APIENTRY GLAPI_PREFIX(BindFragDataLocationEXT)(GLuint program, GLuint colorNumber, const GLchar *name) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[963]; + mapi_func _func = ((const mapi_func *) _tbl)[965]; ((void (APIENTRY *)(GLuint program, GLuint colorNumber, const GLchar *name)) _func)(program, colorNumber, name); } GLAPI void APIENTRY GLAPI_PREFIX(BindFragDataLocation)(GLuint program, GLuint colorNumber, const GLchar *name) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[963]; + mapi_func _func = ((const mapi_func *) _tbl)[965]; ((void (APIENTRY *)(GLuint program, GLuint colorNumber, const GLchar *name)) _func)(program, colorNumber, name); } GLAPI GLint APIENTRY GLAPI_PREFIX(GetFragDataLocationEXT)(GLuint program, const GLchar *name) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[964]; + mapi_func _func = ((const mapi_func *) _tbl)[966]; return ((GLint (APIENTRY *)(GLuint program, const GLchar *name)) _func)(program, name); } GLAPI GLint APIENTRY GLAPI_PREFIX(GetFragDataLocation)(GLuint program, const GLchar *name) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[964]; + mapi_func _func = ((const mapi_func *) _tbl)[966]; return ((GLint (APIENTRY *)(GLuint program, const GLchar *name)) _func)(program, name); } GLAPI void APIENTRY GLAPI_PREFIX(GetUniformuivEXT)(GLuint program, GLint location, GLuint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[965]; + mapi_func _func = ((const mapi_func *) _tbl)[967]; ((void (APIENTRY *)(GLuint program, GLint location, GLuint *params)) _func)(program, location, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetUniformuiv)(GLuint program, GLint location, GLuint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[965]; + mapi_func _func = ((const mapi_func *) _tbl)[967]; ((void (APIENTRY *)(GLuint program, GLint location, GLuint *params)) _func)(program, location, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetVertexAttribIivEXT)(GLuint index, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[966]; + mapi_func _func = ((const mapi_func *) _tbl)[968]; ((void (APIENTRY *)(GLuint index, GLenum pname, GLint *params)) _func)(index, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetVertexAttribIiv)(GLuint index, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[966]; + mapi_func _func = ((const mapi_func *) _tbl)[968]; ((void (APIENTRY *)(GLuint index, GLenum pname, GLint *params)) _func)(index, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetVertexAttribIuivEXT)(GLuint index, GLenum pname, GLuint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[967]; + mapi_func _func = ((const mapi_func *) _tbl)[969]; ((void (APIENTRY *)(GLuint index, GLenum pname, GLuint *params)) _func)(index, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetVertexAttribIuiv)(GLuint index, GLenum pname, GLuint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[967]; + mapi_func _func = ((const mapi_func *) _tbl)[969]; ((void (APIENTRY *)(GLuint index, GLenum pname, GLuint *params)) _func)(index, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform1uiEXT)(GLint location, GLuint x) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[968]; + mapi_func _func = ((const mapi_func *) _tbl)[970]; ((void (APIENTRY *)(GLint location, GLuint x)) _func)(location, x); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform1ui)(GLint location, GLuint x) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[968]; + mapi_func _func = ((const mapi_func *) _tbl)[970]; ((void (APIENTRY *)(GLint location, GLuint x)) _func)(location, x); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform1uivEXT)(GLint location, GLsizei count, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[969]; + mapi_func _func = ((const mapi_func *) _tbl)[971]; ((void (APIENTRY *)(GLint location, GLsizei count, const GLuint *value)) _func)(location, count, value); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform1uiv)(GLint location, GLsizei count, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[969]; + mapi_func _func = ((const mapi_func *) _tbl)[971]; ((void (APIENTRY *)(GLint location, GLsizei count, const GLuint *value)) _func)(location, count, value); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform2uiEXT)(GLint location, GLuint x, GLuint y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[970]; + mapi_func _func = ((const mapi_func *) _tbl)[972]; ((void (APIENTRY *)(GLint location, GLuint x, GLuint y)) _func)(location, x, y); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform2ui)(GLint location, GLuint x, GLuint y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[970]; + mapi_func _func = ((const mapi_func *) _tbl)[972]; ((void (APIENTRY *)(GLint location, GLuint x, GLuint y)) _func)(location, x, y); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform2uivEXT)(GLint location, GLsizei count, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[971]; + mapi_func _func = ((const mapi_func *) _tbl)[973]; ((void (APIENTRY *)(GLint location, GLsizei count, const GLuint *value)) _func)(location, count, value); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform2uiv)(GLint location, GLsizei count, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[971]; + mapi_func _func = ((const mapi_func *) _tbl)[973]; ((void (APIENTRY *)(GLint location, GLsizei count, const GLuint *value)) _func)(location, count, value); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform3uiEXT)(GLint location, GLuint x, GLuint y, GLuint z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[972]; + mapi_func _func = ((const mapi_func *) _tbl)[974]; ((void (APIENTRY *)(GLint location, GLuint x, GLuint y, GLuint z)) _func)(location, x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform3ui)(GLint location, GLuint x, GLuint y, GLuint z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[972]; + mapi_func _func = ((const mapi_func *) _tbl)[974]; ((void (APIENTRY *)(GLint location, GLuint x, GLuint y, GLuint z)) _func)(location, x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform3uivEXT)(GLint location, GLsizei count, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[973]; + mapi_func _func = ((const mapi_func *) _tbl)[975]; ((void (APIENTRY *)(GLint location, GLsizei count, const GLuint *value)) _func)(location, count, value); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform3uiv)(GLint location, GLsizei count, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[973]; + mapi_func _func = ((const mapi_func *) _tbl)[975]; ((void (APIENTRY *)(GLint location, GLsizei count, const GLuint *value)) _func)(location, count, value); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform4uiEXT)(GLint location, GLuint x, GLuint y, GLuint z, GLuint w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[974]; + mapi_func _func = ((const mapi_func *) _tbl)[976]; ((void (APIENTRY *)(GLint location, GLuint x, GLuint y, GLuint z, GLuint w)) _func)(location, x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform4ui)(GLint location, GLuint x, GLuint y, GLuint z, GLuint w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[974]; + mapi_func _func = ((const mapi_func *) _tbl)[976]; ((void (APIENTRY *)(GLint location, GLuint x, GLuint y, GLuint z, GLuint w)) _func)(location, x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform4uivEXT)(GLint location, GLsizei count, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[975]; + mapi_func _func = ((const mapi_func *) _tbl)[977]; ((void (APIENTRY *)(GLint location, GLsizei count, const GLuint *value)) _func)(location, count, value); } GLAPI void APIENTRY GLAPI_PREFIX(Uniform4uiv)(GLint location, GLsizei count, const GLuint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[975]; + mapi_func _func = ((const mapi_func *) _tbl)[977]; ((void (APIENTRY *)(GLint location, GLsizei count, const GLuint *value)) _func)(location, count, value); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI1iEXT)(GLuint index, GLint x) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[976]; + mapi_func _func = ((const mapi_func *) _tbl)[978]; ((void (APIENTRY *)(GLuint index, GLint x)) _func)(index, x); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI1i)(GLuint index, GLint x) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[976]; + mapi_func _func = ((const mapi_func *) _tbl)[978]; ((void (APIENTRY *)(GLuint index, GLint x)) _func)(index, x); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI1ivEXT)(GLuint index, const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[977]; + mapi_func _func = ((const mapi_func *) _tbl)[979]; ((void (APIENTRY *)(GLuint index, const GLint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI1iv)(GLuint index, const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[977]; + mapi_func _func = ((const mapi_func *) _tbl)[979]; ((void (APIENTRY *)(GLuint index, const GLint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI1uiEXT)(GLuint index, GLuint x) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[978]; + mapi_func _func = ((const mapi_func *) _tbl)[980]; ((void (APIENTRY *)(GLuint index, GLuint x)) _func)(index, x); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI1ui)(GLuint index, GLuint x) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[978]; + mapi_func _func = ((const mapi_func *) _tbl)[980]; ((void (APIENTRY *)(GLuint index, GLuint x)) _func)(index, x); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI1uivEXT)(GLuint index, const GLuint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[979]; + mapi_func _func = ((const mapi_func *) _tbl)[981]; ((void (APIENTRY *)(GLuint index, const GLuint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI1uiv)(GLuint index, const GLuint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[979]; + mapi_func _func = ((const mapi_func *) _tbl)[981]; ((void (APIENTRY *)(GLuint index, const GLuint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI2iEXT)(GLuint index, GLint x, GLint y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[980]; + mapi_func _func = ((const mapi_func *) _tbl)[982]; ((void (APIENTRY *)(GLuint index, GLint x, GLint y)) _func)(index, x, y); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI2i)(GLuint index, GLint x, GLint y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[980]; + mapi_func _func = ((const mapi_func *) _tbl)[982]; ((void (APIENTRY *)(GLuint index, GLint x, GLint y)) _func)(index, x, y); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI2ivEXT)(GLuint index, const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[981]; + mapi_func _func = ((const mapi_func *) _tbl)[983]; ((void (APIENTRY *)(GLuint index, const GLint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI2iv)(GLuint index, const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[981]; + mapi_func _func = ((const mapi_func *) _tbl)[983]; ((void (APIENTRY *)(GLuint index, const GLint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI2uiEXT)(GLuint index, GLuint x, GLuint y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[982]; + mapi_func _func = ((const mapi_func *) _tbl)[984]; ((void (APIENTRY *)(GLuint index, GLuint x, GLuint y)) _func)(index, x, y); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI2ui)(GLuint index, GLuint x, GLuint y) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[982]; + mapi_func _func = ((const mapi_func *) _tbl)[984]; ((void (APIENTRY *)(GLuint index, GLuint x, GLuint y)) _func)(index, x, y); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI2uivEXT)(GLuint index, const GLuint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[983]; + mapi_func _func = ((const mapi_func *) _tbl)[985]; ((void (APIENTRY *)(GLuint index, const GLuint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI2uiv)(GLuint index, const GLuint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[983]; + mapi_func _func = ((const mapi_func *) _tbl)[985]; ((void (APIENTRY *)(GLuint index, const GLuint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI3iEXT)(GLuint index, GLint x, GLint y, GLint z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[984]; + mapi_func _func = ((const mapi_func *) _tbl)[986]; ((void (APIENTRY *)(GLuint index, GLint x, GLint y, GLint z)) _func)(index, x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI3i)(GLuint index, GLint x, GLint y, GLint z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[984]; + mapi_func _func = ((const mapi_func *) _tbl)[986]; ((void (APIENTRY *)(GLuint index, GLint x, GLint y, GLint z)) _func)(index, x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI3ivEXT)(GLuint index, const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[985]; + mapi_func _func = ((const mapi_func *) _tbl)[987]; ((void (APIENTRY *)(GLuint index, const GLint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI3iv)(GLuint index, const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[985]; + mapi_func _func = ((const mapi_func *) _tbl)[987]; ((void (APIENTRY *)(GLuint index, const GLint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI3uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[986]; + mapi_func _func = ((const mapi_func *) _tbl)[988]; ((void (APIENTRY *)(GLuint index, GLuint x, GLuint y, GLuint z)) _func)(index, x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI3ui)(GLuint index, GLuint x, GLuint y, GLuint z) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[986]; + mapi_func _func = ((const mapi_func *) _tbl)[988]; ((void (APIENTRY *)(GLuint index, GLuint x, GLuint y, GLuint z)) _func)(index, x, y, z); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI3uivEXT)(GLuint index, const GLuint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[987]; + mapi_func _func = ((const mapi_func *) _tbl)[989]; ((void (APIENTRY *)(GLuint index, const GLuint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI3uiv)(GLuint index, const GLuint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[987]; + mapi_func _func = ((const mapi_func *) _tbl)[989]; ((void (APIENTRY *)(GLuint index, const GLuint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4bvEXT)(GLuint index, const GLbyte *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[988]; + mapi_func _func = ((const mapi_func *) _tbl)[990]; ((void (APIENTRY *)(GLuint index, const GLbyte *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4bv)(GLuint index, const GLbyte *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[988]; + mapi_func _func = ((const mapi_func *) _tbl)[990]; ((void (APIENTRY *)(GLuint index, const GLbyte *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4iEXT)(GLuint index, GLint x, GLint y, GLint z, GLint w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[989]; + mapi_func _func = ((const mapi_func *) _tbl)[991]; ((void (APIENTRY *)(GLuint index, GLint x, GLint y, GLint z, GLint w)) _func)(index, x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4i)(GLuint index, GLint x, GLint y, GLint z, GLint w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[989]; + mapi_func _func = ((const mapi_func *) _tbl)[991]; ((void (APIENTRY *)(GLuint index, GLint x, GLint y, GLint z, GLint w)) _func)(index, x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4ivEXT)(GLuint index, const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[990]; + mapi_func _func = ((const mapi_func *) _tbl)[992]; ((void (APIENTRY *)(GLuint index, const GLint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4iv)(GLuint index, const GLint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[990]; + mapi_func _func = ((const mapi_func *) _tbl)[992]; ((void (APIENTRY *)(GLuint index, const GLint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4svEXT)(GLuint index, const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[991]; + mapi_func _func = ((const mapi_func *) _tbl)[993]; ((void (APIENTRY *)(GLuint index, const GLshort *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4sv)(GLuint index, const GLshort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[991]; + mapi_func _func = ((const mapi_func *) _tbl)[993]; ((void (APIENTRY *)(GLuint index, const GLshort *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4ubvEXT)(GLuint index, const GLubyte *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[992]; + mapi_func _func = ((const mapi_func *) _tbl)[994]; ((void (APIENTRY *)(GLuint index, const GLubyte *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4ubv)(GLuint index, const GLubyte *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[992]; + mapi_func _func = ((const mapi_func *) _tbl)[994]; ((void (APIENTRY *)(GLuint index, const GLubyte *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[993]; + mapi_func _func = ((const mapi_func *) _tbl)[995]; ((void (APIENTRY *)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w)) _func)(index, x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4ui)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[993]; + mapi_func _func = ((const mapi_func *) _tbl)[995]; ((void (APIENTRY *)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w)) _func)(index, x, y, z, w); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4uivEXT)(GLuint index, const GLuint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[994]; + mapi_func _func = ((const mapi_func *) _tbl)[996]; ((void (APIENTRY *)(GLuint index, const GLuint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4uiv)(GLuint index, const GLuint *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[994]; + mapi_func _func = ((const mapi_func *) _tbl)[996]; ((void (APIENTRY *)(GLuint index, const GLuint *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4usvEXT)(GLuint index, const GLushort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[995]; + mapi_func _func = ((const mapi_func *) _tbl)[997]; ((void (APIENTRY *)(GLuint index, const GLushort *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribI4usv)(GLuint index, const GLushort *v) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[995]; + mapi_func _func = ((const mapi_func *) _tbl)[997]; ((void (APIENTRY *)(GLuint index, const GLushort *v)) _func)(index, v); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribIPointerEXT)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[996]; + mapi_func _func = ((const mapi_func *) _tbl)[998]; ((void (APIENTRY *)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)) _func)(index, size, type, stride, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(VertexAttribIPointer)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[996]; + mapi_func _func = ((const mapi_func *) _tbl)[998]; ((void (APIENTRY *)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid *pointer)) _func)(index, size, type, stride, pointer); } GLAPI void APIENTRY GLAPI_PREFIX(FramebufferTextureLayerEXT)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[997]; + mapi_func _func = ((const mapi_func *) _tbl)[999]; ((void (APIENTRY *)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer)) _func)(target, attachment, texture, level, layer); } GLAPI void APIENTRY GLAPI_PREFIX(FramebufferTextureLayer)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[997]; + mapi_func _func = ((const mapi_func *) _tbl)[999]; ((void (APIENTRY *)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer)) _func)(target, attachment, texture, level, layer); } GLAPI void APIENTRY GLAPI_PREFIX(FramebufferTextureLayerARB)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[997]; + mapi_func _func = ((const mapi_func *) _tbl)[999]; ((void (APIENTRY *)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer)) _func)(target, attachment, texture, level, layer); } GLAPI void APIENTRY GLAPI_PREFIX(ColorMaskIndexedEXT)(GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[998]; + mapi_func _func = ((const mapi_func *) _tbl)[1000]; ((void (APIENTRY *)(GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a)) _func)(buf, r, g, b, a); } GLAPI void APIENTRY GLAPI_PREFIX(ColorMaski)(GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[998]; + mapi_func _func = ((const mapi_func *) _tbl)[1000]; ((void (APIENTRY *)(GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a)) _func)(buf, r, g, b, a); } GLAPI void APIENTRY GLAPI_PREFIX(DisableIndexedEXT)(GLenum target, GLuint index) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[999]; + mapi_func _func = ((const mapi_func *) _tbl)[1001]; ((void (APIENTRY *)(GLenum target, GLuint index)) _func)(target, index); } GLAPI void APIENTRY GLAPI_PREFIX(Disablei)(GLenum target, GLuint index) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[999]; + mapi_func _func = ((const mapi_func *) _tbl)[1001]; ((void (APIENTRY *)(GLenum target, GLuint index)) _func)(target, index); } GLAPI void APIENTRY GLAPI_PREFIX(EnableIndexedEXT)(GLenum target, GLuint index) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1000]; + mapi_func _func = ((const mapi_func *) _tbl)[1002]; ((void (APIENTRY *)(GLenum target, GLuint index)) _func)(target, index); } GLAPI void APIENTRY GLAPI_PREFIX(Enablei)(GLenum target, GLuint index) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1000]; + mapi_func _func = ((const mapi_func *) _tbl)[1002]; ((void (APIENTRY *)(GLenum target, GLuint index)) _func)(target, index); } GLAPI void APIENTRY GLAPI_PREFIX(GetBooleanIndexedvEXT)(GLenum value, GLuint index, GLboolean *data) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1001]; + mapi_func _func = ((const mapi_func *) _tbl)[1003]; ((void (APIENTRY *)(GLenum value, GLuint index, GLboolean *data)) _func)(value, index, data); } GLAPI void APIENTRY GLAPI_PREFIX(GetBooleani_v)(GLenum value, GLuint index, GLboolean *data) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1001]; + mapi_func _func = ((const mapi_func *) _tbl)[1003]; ((void (APIENTRY *)(GLenum value, GLuint index, GLboolean *data)) _func)(value, index, data); } GLAPI void APIENTRY GLAPI_PREFIX(GetIntegerIndexedvEXT)(GLenum value, GLuint index, GLint *data) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1002]; + mapi_func _func = ((const mapi_func *) _tbl)[1004]; ((void (APIENTRY *)(GLenum value, GLuint index, GLint *data)) _func)(value, index, data); } GLAPI void APIENTRY GLAPI_PREFIX(GetIntegeri_v)(GLenum value, GLuint index, GLint *data) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1002]; + mapi_func _func = ((const mapi_func *) _tbl)[1004]; ((void (APIENTRY *)(GLenum value, GLuint index, GLint *data)) _func)(value, index, data); } GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsEnabledIndexedEXT)(GLenum target, GLuint index) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1003]; + mapi_func _func = ((const mapi_func *) _tbl)[1005]; return ((GLboolean (APIENTRY *)(GLenum target, GLuint index)) _func)(target, index); } GLAPI GLboolean APIENTRY GLAPI_PREFIX(IsEnabledi)(GLenum target, GLuint index) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1003]; + mapi_func _func = ((const mapi_func *) _tbl)[1005]; return ((GLboolean (APIENTRY *)(GLenum target, GLuint index)) _func)(target, index); } GLAPI void APIENTRY GLAPI_PREFIX(ClearColorIiEXT)(GLint r, GLint g, GLint b, GLint a) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1004]; + mapi_func _func = ((const mapi_func *) _tbl)[1006]; ((void (APIENTRY *)(GLint r, GLint g, GLint b, GLint a)) _func)(r, g, b, a); } GLAPI void APIENTRY GLAPI_PREFIX(ClearColorIuiEXT)(GLuint r, GLuint g, GLuint b, GLuint a) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1005]; + mapi_func _func = ((const mapi_func *) _tbl)[1007]; ((void (APIENTRY *)(GLuint r, GLuint g, GLuint b, GLuint a)) _func)(r, g, b, a); } GLAPI void APIENTRY GLAPI_PREFIX(GetTexParameterIivEXT)(GLenum target, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1006]; + mapi_func _func = ((const mapi_func *) _tbl)[1008]; ((void (APIENTRY *)(GLenum target, GLenum pname, GLint *params)) _func)(target, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetTexParameterIiv)(GLenum target, GLenum pname, GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1006]; + mapi_func _func = ((const mapi_func *) _tbl)[1008]; ((void (APIENTRY *)(GLenum target, GLenum pname, GLint *params)) _func)(target, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetTexParameterIuivEXT)(GLenum target, GLenum pname, GLuint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1007]; + mapi_func _func = ((const mapi_func *) _tbl)[1009]; ((void (APIENTRY *)(GLenum target, GLenum pname, GLuint *params)) _func)(target, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(GetTexParameterIuiv)(GLenum target, GLenum pname, GLuint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1007]; + mapi_func _func = ((const mapi_func *) _tbl)[1009]; ((void (APIENTRY *)(GLenum target, GLenum pname, GLuint *params)) _func)(target, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(TexParameterIivEXT)(GLenum target, GLenum pname, const GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1008]; + mapi_func _func = ((const mapi_func *) _tbl)[1010]; ((void (APIENTRY *)(GLenum target, GLenum pname, const GLint *params)) _func)(target, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(TexParameterIiv)(GLenum target, GLenum pname, const GLint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1008]; + mapi_func _func = ((const mapi_func *) _tbl)[1010]; ((void (APIENTRY *)(GLenum target, GLenum pname, const GLint *params)) _func)(target, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(TexParameterIuivEXT)(GLenum target, GLenum pname, const GLuint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1009]; + mapi_func _func = ((const mapi_func *) _tbl)[1011]; ((void (APIENTRY *)(GLenum target, GLenum pname, const GLuint *params)) _func)(target, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(TexParameterIuiv)(GLenum target, GLenum pname, const GLuint *params) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1009]; + mapi_func _func = ((const mapi_func *) _tbl)[1011]; ((void (APIENTRY *)(GLenum target, GLenum pname, const GLuint *params)) _func)(target, pname, params); } GLAPI void APIENTRY GLAPI_PREFIX(BeginConditionalRenderNV)(GLuint query, GLenum mode) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1010]; + mapi_func _func = ((const mapi_func *) _tbl)[1012]; ((void (APIENTRY *)(GLuint query, GLenum mode)) _func)(query, mode); } GLAPI void APIENTRY GLAPI_PREFIX(BeginConditionalRender)(GLuint query, GLenum mode) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1010]; + mapi_func _func = ((const mapi_func *) _tbl)[1012]; ((void (APIENTRY *)(GLuint query, GLenum mode)) _func)(query, mode); } GLAPI void APIENTRY GLAPI_PREFIX(EndConditionalRenderNV)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1011]; + mapi_func _func = ((const mapi_func *) _tbl)[1013]; ((void (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(EndConditionalRender)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1011]; + mapi_func _func = ((const mapi_func *) _tbl)[1013]; ((void (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(BeginTransformFeedbackEXT)(GLenum mode) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1012]; + mapi_func _func = ((const mapi_func *) _tbl)[1014]; ((void (APIENTRY *)(GLenum mode)) _func)(mode); } GLAPI void APIENTRY GLAPI_PREFIX(BeginTransformFeedback)(GLenum mode) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1012]; + mapi_func _func = ((const mapi_func *) _tbl)[1014]; ((void (APIENTRY *)(GLenum mode)) _func)(mode); } GLAPI void APIENTRY GLAPI_PREFIX(BindBufferBaseEXT)(GLenum target, GLuint index, GLuint buffer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1013]; + mapi_func _func = ((const mapi_func *) _tbl)[1015]; ((void (APIENTRY *)(GLenum target, GLuint index, GLuint buffer)) _func)(target, index, buffer); } GLAPI void APIENTRY GLAPI_PREFIX(BindBufferBase)(GLenum target, GLuint index, GLuint buffer) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1013]; + mapi_func _func = ((const mapi_func *) _tbl)[1015]; ((void (APIENTRY *)(GLenum target, GLuint index, GLuint buffer)) _func)(target, index, buffer); } GLAPI void APIENTRY GLAPI_PREFIX(BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1014]; + mapi_func _func = ((const mapi_func *) _tbl)[1016]; ((void (APIENTRY *)(GLenum target, GLuint index, GLuint buffer, GLintptr offset)) _func)(target, index, buffer, offset); } GLAPI void APIENTRY GLAPI_PREFIX(BindBufferRangeEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1015]; + mapi_func _func = ((const mapi_func *) _tbl)[1017]; ((void (APIENTRY *)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size)) _func)(target, index, buffer, offset, size); } GLAPI void APIENTRY GLAPI_PREFIX(BindBufferRange)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1015]; + mapi_func _func = ((const mapi_func *) _tbl)[1017]; ((void (APIENTRY *)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size)) _func)(target, index, buffer, offset, size); } GLAPI void APIENTRY GLAPI_PREFIX(EndTransformFeedbackEXT)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1016]; + mapi_func _func = ((const mapi_func *) _tbl)[1018]; ((void (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(EndTransformFeedback)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1016]; + mapi_func _func = ((const mapi_func *) _tbl)[1018]; ((void (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(GetTransformFeedbackVaryingEXT)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1017]; + mapi_func _func = ((const mapi_func *) _tbl)[1019]; ((void (APIENTRY *)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name)) _func)(program, index, bufSize, length, size, type, name); } GLAPI void APIENTRY GLAPI_PREFIX(GetTransformFeedbackVarying)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1017]; + mapi_func _func = ((const mapi_func *) _tbl)[1019]; ((void (APIENTRY *)(GLuint program, GLuint index, GLsizei bufSize, GLsizei *length, GLsizei *size, GLenum *type, GLchar *name)) _func)(program, index, bufSize, length, size, type, name); } GLAPI void APIENTRY GLAPI_PREFIX(TransformFeedbackVaryingsEXT)(GLuint program, GLsizei count, const char **varyings, GLenum bufferMode) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1018]; + mapi_func _func = ((const mapi_func *) _tbl)[1020]; ((void (APIENTRY *)(GLuint program, GLsizei count, const char **varyings, GLenum bufferMode)) _func)(program, count, varyings, bufferMode); } GLAPI void APIENTRY GLAPI_PREFIX(TransformFeedbackVaryings)(GLuint program, GLsizei count, const GLchar* *varyings, GLenum bufferMode) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1018]; + mapi_func _func = ((const mapi_func *) _tbl)[1020]; ((void (APIENTRY *)(GLuint program, GLsizei count, const GLchar* *varyings, GLenum bufferMode)) _func)(program, count, varyings, bufferMode); } GLAPI void APIENTRY GLAPI_PREFIX(ProvokingVertexEXT)(GLenum mode) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1019]; + mapi_func _func = ((const mapi_func *) _tbl)[1021]; ((void (APIENTRY *)(GLenum mode)) _func)(mode); } GLAPI void APIENTRY GLAPI_PREFIX(ProvokingVertex)(GLenum mode) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1019]; + mapi_func _func = ((const mapi_func *) _tbl)[1021]; ((void (APIENTRY *)(GLenum mode)) _func)(mode); } GLAPI void APIENTRY GLAPI_PREFIX(GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint *value) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1022]; + mapi_func _func = ((const mapi_func *) _tbl)[1024]; ((void (APIENTRY *)(GLenum objectType, GLuint name, GLenum pname, GLint *value)) _func)(objectType, name, pname, value); } GLAPI GLenum APIENTRY GLAPI_PREFIX(ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1023]; + mapi_func _func = ((const mapi_func *) _tbl)[1025]; return ((GLenum (APIENTRY *)(GLenum objectType, GLuint name, GLenum option)) _func)(objectType, name, option); } GLAPI GLenum APIENTRY GLAPI_PREFIX(ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1024]; + mapi_func _func = ((const mapi_func *) _tbl)[1026]; return ((GLenum (APIENTRY *)(GLenum objectType, GLuint name, GLenum option)) _func)(objectType, name, option); } GLAPI void APIENTRY GLAPI_PREFIX(ActiveProgramEXT)(GLuint program) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1025]; + mapi_func _func = ((const mapi_func *) _tbl)[1027]; ((void (APIENTRY *)(GLuint program)) _func)(program); } GLAPI GLuint APIENTRY GLAPI_PREFIX(CreateShaderProgramEXT)(GLenum type, const GLchar *string) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1026]; + mapi_func _func = ((const mapi_func *) _tbl)[1028]; return ((GLuint (APIENTRY *)(GLenum type, const GLchar *string)) _func)(type, string); } GLAPI void APIENTRY GLAPI_PREFIX(UseShaderProgramEXT)(GLenum type, GLuint program) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1027]; + mapi_func _func = ((const mapi_func *) _tbl)[1029]; ((void (APIENTRY *)(GLenum type, GLuint program)) _func)(type, program); } GLAPI void APIENTRY GLAPI_PREFIX(TextureBarrierNV)(void) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1028]; + mapi_func _func = ((const mapi_func *) _tbl)[1030]; ((void (APIENTRY *)(void)) _func)(); } GLAPI void APIENTRY GLAPI_PREFIX(EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid *writeOffset) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1034]; + mapi_func _func = ((const mapi_func *) _tbl)[1036]; ((void (APIENTRY *)(GLenum target, GLvoid *writeOffset)) _func)(target, writeOffset); } GLAPI void APIENTRY GLAPI_PREFIX(EGLImageTargetTexture2DOES)(GLenum target, GLvoid *writeOffset) { const struct mapi_table *_tbl = entry_current_get(); - mapi_func _func = ((const mapi_func *) _tbl)[1035]; + mapi_func _func = ((const mapi_func *) _tbl)[1037]; ((void (APIENTRY *)(GLenum target, GLvoid *writeOffset)) _func)(target, writeOffset); } @@ -12651,311 +12667,317 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BlendFunciARB))"\n" ".globl "GLAPI_PREFIX_STR(BlendFuncIndexedAMD)"\n" ".set "GLAPI_PREFIX_STR(BlendFuncIndexedAMD)", "GLAPI_PREFIX_STR(BlendFunciARB)"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BindSampler))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BindFragDataLocationIndexed))"\n" "\t"STUB_ASM_CODE("601")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DeleteSamplers))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetFragDataIndex))"\n" "\t"STUB_ASM_CODE("602")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GenSamplers))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BindSampler))"\n" "\t"STUB_ASM_CODE("603")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetSamplerParameterIiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DeleteSamplers))"\n" "\t"STUB_ASM_CODE("604")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetSamplerParameterIuiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GenSamplers))"\n" "\t"STUB_ASM_CODE("605")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetSamplerParameterfv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetSamplerParameterIiv))"\n" "\t"STUB_ASM_CODE("606")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetSamplerParameteriv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetSamplerParameterIuiv))"\n" "\t"STUB_ASM_CODE("607")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(IsSampler))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetSamplerParameterfv))"\n" "\t"STUB_ASM_CODE("608")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SamplerParameterIiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetSamplerParameteriv))"\n" "\t"STUB_ASM_CODE("609")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SamplerParameterIuiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(IsSampler))"\n" "\t"STUB_ASM_CODE("610")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SamplerParameterf))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SamplerParameterIiv))"\n" "\t"STUB_ASM_CODE("611")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SamplerParameterfv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SamplerParameterIuiv))"\n" "\t"STUB_ASM_CODE("612")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SamplerParameteri))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SamplerParameterf))"\n" "\t"STUB_ASM_CODE("613")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SamplerParameteriv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SamplerParameterfv))"\n" "\t"STUB_ASM_CODE("614")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ColorP3ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SamplerParameteri))"\n" "\t"STUB_ASM_CODE("615")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ColorP3uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SamplerParameteriv))"\n" "\t"STUB_ASM_CODE("616")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ColorP4ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ColorP3ui))"\n" "\t"STUB_ASM_CODE("617")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ColorP4uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ColorP3uiv))"\n" "\t"STUB_ASM_CODE("618")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP1ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ColorP4ui))"\n" "\t"STUB_ASM_CODE("619")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP1uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ColorP4uiv))"\n" "\t"STUB_ASM_CODE("620")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP2ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP1ui))"\n" "\t"STUB_ASM_CODE("621")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP2uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP1uiv))"\n" "\t"STUB_ASM_CODE("622")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP3ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP2ui))"\n" "\t"STUB_ASM_CODE("623")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP3uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP2uiv))"\n" "\t"STUB_ASM_CODE("624")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP4ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP3ui))"\n" "\t"STUB_ASM_CODE("625")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP4uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP3uiv))"\n" "\t"STUB_ASM_CODE("626")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(NormalP3ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP4ui))"\n" "\t"STUB_ASM_CODE("627")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(NormalP3uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiTexCoordP4uiv))"\n" "\t"STUB_ASM_CODE("628")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColorP3ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(NormalP3ui))"\n" "\t"STUB_ASM_CODE("629")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColorP3uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(NormalP3uiv))"\n" "\t"STUB_ASM_CODE("630")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP1ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColorP3ui))"\n" "\t"STUB_ASM_CODE("631")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP1uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColorP3uiv))"\n" "\t"STUB_ASM_CODE("632")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP2ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP1ui))"\n" "\t"STUB_ASM_CODE("633")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP2uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP1uiv))"\n" "\t"STUB_ASM_CODE("634")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP3ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP2ui))"\n" "\t"STUB_ASM_CODE("635")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP3uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP2uiv))"\n" "\t"STUB_ASM_CODE("636")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP4ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP3ui))"\n" "\t"STUB_ASM_CODE("637")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP4uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP3uiv))"\n" "\t"STUB_ASM_CODE("638")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP1ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP4ui))"\n" "\t"STUB_ASM_CODE("639")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP1uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordP4uiv))"\n" "\t"STUB_ASM_CODE("640")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP2ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP1ui))"\n" "\t"STUB_ASM_CODE("641")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP2uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP1uiv))"\n" "\t"STUB_ASM_CODE("642")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP3ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP2ui))"\n" "\t"STUB_ASM_CODE("643")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP3uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP2uiv))"\n" "\t"STUB_ASM_CODE("644")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP4ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP3ui))"\n" "\t"STUB_ASM_CODE("645")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP4uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP3uiv))"\n" "\t"STUB_ASM_CODE("646")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexP2ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP4ui))"\n" "\t"STUB_ASM_CODE("647")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexP2uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribP4uiv))"\n" "\t"STUB_ASM_CODE("648")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexP3ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexP2ui))"\n" "\t"STUB_ASM_CODE("649")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexP3uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexP2uiv))"\n" "\t"STUB_ASM_CODE("650")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexP4ui))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexP3ui))"\n" "\t"STUB_ASM_CODE("651")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexP4uiv))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexP3uiv))"\n" "\t"STUB_ASM_CODE("652")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BindTransformFeedback))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexP4ui))"\n" "\t"STUB_ASM_CODE("653")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DeleteTransformFeedbacks))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexP4uiv))"\n" "\t"STUB_ASM_CODE("654")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DrawTransformFeedback))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BindTransformFeedback))"\n" "\t"STUB_ASM_CODE("655")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GenTransformFeedbacks))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DeleteTransformFeedbacks))"\n" "\t"STUB_ASM_CODE("656")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(IsTransformFeedback))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DrawTransformFeedback))"\n" "\t"STUB_ASM_CODE("657")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(PauseTransformFeedback))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GenTransformFeedbacks))"\n" "\t"STUB_ASM_CODE("658")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ResumeTransformFeedback))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(IsTransformFeedback))"\n" "\t"STUB_ASM_CODE("659")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ClearDepthf))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(PauseTransformFeedback))"\n" "\t"STUB_ASM_CODE("660")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DepthRangef))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ResumeTransformFeedback))"\n" "\t"STUB_ASM_CODE("661")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetShaderPrecisionFormat))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ClearDepthf))"\n" "\t"STUB_ASM_CODE("662")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ReleaseShaderCompiler))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DepthRangef))"\n" "\t"STUB_ASM_CODE("663")"\n" -STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ShaderBinary))"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetShaderPrecisionFormat))"\n" "\t"STUB_ASM_CODE("664")"\n" +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ReleaseShaderCompiler))"\n" +"\t"STUB_ASM_CODE("665")"\n" + +STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ShaderBinary))"\n" +"\t"STUB_ASM_CODE("666")"\n" + STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DebugMessageCallbackARB))"\n" -"\t"STUB_ASM_CODE("668")"\n" +"\t"STUB_ASM_CODE("670")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DebugMessageControlARB))"\n" -"\t"STUB_ASM_CODE("669")"\n" +"\t"STUB_ASM_CODE("671")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DebugMessageInsertARB))"\n" -"\t"STUB_ASM_CODE("670")"\n" +"\t"STUB_ASM_CODE("672")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetDebugMessageLogARB))"\n" -"\t"STUB_ASM_CODE("671")"\n" +"\t"STUB_ASM_CODE("673")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetGraphicsResetStatusARB))"\n" -"\t"STUB_ASM_CODE("672")"\n" +"\t"STUB_ASM_CODE("674")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnColorTableARB))"\n" -"\t"STUB_ASM_CODE("673")"\n" +"\t"STUB_ASM_CODE("675")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnCompressedTexImageARB))"\n" -"\t"STUB_ASM_CODE("674")"\n" +"\t"STUB_ASM_CODE("676")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnConvolutionFilterARB))"\n" -"\t"STUB_ASM_CODE("675")"\n" +"\t"STUB_ASM_CODE("677")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnHistogramARB))"\n" -"\t"STUB_ASM_CODE("676")"\n" +"\t"STUB_ASM_CODE("678")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnMapdvARB))"\n" -"\t"STUB_ASM_CODE("677")"\n" +"\t"STUB_ASM_CODE("679")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnMapfvARB))"\n" -"\t"STUB_ASM_CODE("678")"\n" +"\t"STUB_ASM_CODE("680")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnMapivARB))"\n" -"\t"STUB_ASM_CODE("679")"\n" +"\t"STUB_ASM_CODE("681")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnMinmaxARB))"\n" -"\t"STUB_ASM_CODE("680")"\n" +"\t"STUB_ASM_CODE("682")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnPixelMapfvARB))"\n" -"\t"STUB_ASM_CODE("681")"\n" +"\t"STUB_ASM_CODE("683")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnPixelMapuivARB))"\n" -"\t"STUB_ASM_CODE("682")"\n" +"\t"STUB_ASM_CODE("684")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnPixelMapusvARB))"\n" -"\t"STUB_ASM_CODE("683")"\n" +"\t"STUB_ASM_CODE("685")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnPolygonStippleARB))"\n" -"\t"STUB_ASM_CODE("684")"\n" +"\t"STUB_ASM_CODE("686")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnSeparableFilterARB))"\n" -"\t"STUB_ASM_CODE("685")"\n" +"\t"STUB_ASM_CODE("687")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnTexImageARB))"\n" -"\t"STUB_ASM_CODE("686")"\n" +"\t"STUB_ASM_CODE("688")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnUniformdvARB))"\n" -"\t"STUB_ASM_CODE("687")"\n" +"\t"STUB_ASM_CODE("689")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnUniformfvARB))"\n" -"\t"STUB_ASM_CODE("688")"\n" +"\t"STUB_ASM_CODE("690")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnUniformivARB))"\n" -"\t"STUB_ASM_CODE("689")"\n" +"\t"STUB_ASM_CODE("691")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetnUniformuivARB))"\n" -"\t"STUB_ASM_CODE("690")"\n" +"\t"STUB_ASM_CODE("692")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ReadnPixelsARB))"\n" -"\t"STUB_ASM_CODE("691")"\n" +"\t"STUB_ASM_CODE("693")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexStorage1D))"\n" -"\t"STUB_ASM_CODE("692")"\n" +"\t"STUB_ASM_CODE("694")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexStorage2D))"\n" -"\t"STUB_ASM_CODE("693")"\n" +"\t"STUB_ASM_CODE("695")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexStorage3D))"\n" -"\t"STUB_ASM_CODE("694")"\n" +"\t"STUB_ASM_CODE("696")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TextureStorage1DEXT))"\n" -"\t"STUB_ASM_CODE("695")"\n" +"\t"STUB_ASM_CODE("697")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TextureStorage2DEXT))"\n" -"\t"STUB_ASM_CODE("696")"\n" +"\t"STUB_ASM_CODE("698")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TextureStorage3DEXT))"\n" -"\t"STUB_ASM_CODE("697")"\n" +"\t"STUB_ASM_CODE("699")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(PolygonOffsetEXT))"\n" -"\t"STUB_ASM_CODE("698")"\n" +"\t"STUB_ASM_CODE("700")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ColorPointerEXT))"\n" -"\t"STUB_ASM_CODE("717")"\n" +"\t"STUB_ASM_CODE("719")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(EdgeFlagPointerEXT))"\n" -"\t"STUB_ASM_CODE("718")"\n" +"\t"STUB_ASM_CODE("720")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(IndexPointerEXT))"\n" -"\t"STUB_ASM_CODE("719")"\n" +"\t"STUB_ASM_CODE("721")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(NormalPointerEXT))"\n" -"\t"STUB_ASM_CODE("720")"\n" +"\t"STUB_ASM_CODE("722")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexCoordPointerEXT))"\n" -"\t"STUB_ASM_CODE("721")"\n" +"\t"STUB_ASM_CODE("723")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexPointerEXT))"\n" -"\t"STUB_ASM_CODE("722")"\n" +"\t"STUB_ASM_CODE("724")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(PointParameterfEXT))"\n" -"\t"STUB_ASM_CODE("723")"\n" +"\t"STUB_ASM_CODE("725")"\n" ".globl "GLAPI_PREFIX_STR(PointParameterf)"\n" ".set "GLAPI_PREFIX_STR(PointParameterf)", "GLAPI_PREFIX_STR(PointParameterfEXT)"\n" @@ -12964,7 +12986,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(PointParameterfEXT))"\n" ".set "GLAPI_PREFIX_STR(PointParameterfARB)", "GLAPI_PREFIX_STR(PointParameterfEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(PointParameterfvEXT))"\n" -"\t"STUB_ASM_CODE("724")"\n" +"\t"STUB_ASM_CODE("726")"\n" ".globl "GLAPI_PREFIX_STR(PointParameterfv)"\n" ".set "GLAPI_PREFIX_STR(PointParameterfv)", "GLAPI_PREFIX_STR(PointParameterfvEXT)"\n" @@ -12973,211 +12995,211 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(PointParameterfvEXT))"\n" ".set "GLAPI_PREFIX_STR(PointParameterfvARB)", "GLAPI_PREFIX_STR(PointParameterfvEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(LockArraysEXT))"\n" -"\t"STUB_ASM_CODE("725")"\n" +"\t"STUB_ASM_CODE("727")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(UnlockArraysEXT))"\n" -"\t"STUB_ASM_CODE("726")"\n" +"\t"STUB_ASM_CODE("728")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3bEXT))"\n" -"\t"STUB_ASM_CODE("727")"\n" +"\t"STUB_ASM_CODE("729")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3b)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3b)", "GLAPI_PREFIX_STR(SecondaryColor3bEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3bvEXT))"\n" -"\t"STUB_ASM_CODE("728")"\n" +"\t"STUB_ASM_CODE("730")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3bv)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3bv)", "GLAPI_PREFIX_STR(SecondaryColor3bvEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3dEXT))"\n" -"\t"STUB_ASM_CODE("729")"\n" +"\t"STUB_ASM_CODE("731")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3d)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3d)", "GLAPI_PREFIX_STR(SecondaryColor3dEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3dvEXT))"\n" -"\t"STUB_ASM_CODE("730")"\n" +"\t"STUB_ASM_CODE("732")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3dv)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3dv)", "GLAPI_PREFIX_STR(SecondaryColor3dvEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3fEXT))"\n" -"\t"STUB_ASM_CODE("731")"\n" +"\t"STUB_ASM_CODE("733")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3f)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3f)", "GLAPI_PREFIX_STR(SecondaryColor3fEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3fvEXT))"\n" -"\t"STUB_ASM_CODE("732")"\n" +"\t"STUB_ASM_CODE("734")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3fv)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3fv)", "GLAPI_PREFIX_STR(SecondaryColor3fvEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3iEXT))"\n" -"\t"STUB_ASM_CODE("733")"\n" +"\t"STUB_ASM_CODE("735")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3i)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3i)", "GLAPI_PREFIX_STR(SecondaryColor3iEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3ivEXT))"\n" -"\t"STUB_ASM_CODE("734")"\n" +"\t"STUB_ASM_CODE("736")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3iv)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3iv)", "GLAPI_PREFIX_STR(SecondaryColor3ivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3sEXT))"\n" -"\t"STUB_ASM_CODE("735")"\n" +"\t"STUB_ASM_CODE("737")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3s)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3s)", "GLAPI_PREFIX_STR(SecondaryColor3sEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3svEXT))"\n" -"\t"STUB_ASM_CODE("736")"\n" +"\t"STUB_ASM_CODE("738")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3sv)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3sv)", "GLAPI_PREFIX_STR(SecondaryColor3svEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3ubEXT))"\n" -"\t"STUB_ASM_CODE("737")"\n" +"\t"STUB_ASM_CODE("739")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3ub)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3ub)", "GLAPI_PREFIX_STR(SecondaryColor3ubEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3ubvEXT))"\n" -"\t"STUB_ASM_CODE("738")"\n" +"\t"STUB_ASM_CODE("740")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3ubv)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3ubv)", "GLAPI_PREFIX_STR(SecondaryColor3ubvEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3uiEXT))"\n" -"\t"STUB_ASM_CODE("739")"\n" +"\t"STUB_ASM_CODE("741")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3ui)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3ui)", "GLAPI_PREFIX_STR(SecondaryColor3uiEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3uivEXT))"\n" -"\t"STUB_ASM_CODE("740")"\n" +"\t"STUB_ASM_CODE("742")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3uiv)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3uiv)", "GLAPI_PREFIX_STR(SecondaryColor3uivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3usEXT))"\n" -"\t"STUB_ASM_CODE("741")"\n" +"\t"STUB_ASM_CODE("743")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3us)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3us)", "GLAPI_PREFIX_STR(SecondaryColor3usEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColor3usvEXT))"\n" -"\t"STUB_ASM_CODE("742")"\n" +"\t"STUB_ASM_CODE("744")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColor3usv)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColor3usv)", "GLAPI_PREFIX_STR(SecondaryColor3usvEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SecondaryColorPointerEXT))"\n" -"\t"STUB_ASM_CODE("743")"\n" +"\t"STUB_ASM_CODE("745")"\n" ".globl "GLAPI_PREFIX_STR(SecondaryColorPointer)"\n" ".set "GLAPI_PREFIX_STR(SecondaryColorPointer)", "GLAPI_PREFIX_STR(SecondaryColorPointerEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiDrawArraysEXT))"\n" -"\t"STUB_ASM_CODE("744")"\n" +"\t"STUB_ASM_CODE("746")"\n" ".globl "GLAPI_PREFIX_STR(MultiDrawArrays)"\n" ".set "GLAPI_PREFIX_STR(MultiDrawArrays)", "GLAPI_PREFIX_STR(MultiDrawArraysEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(MultiDrawElementsEXT))"\n" -"\t"STUB_ASM_CODE("745")"\n" +"\t"STUB_ASM_CODE("747")"\n" ".globl "GLAPI_PREFIX_STR(MultiDrawElements)"\n" ".set "GLAPI_PREFIX_STR(MultiDrawElements)", "GLAPI_PREFIX_STR(MultiDrawElementsEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(FogCoordPointerEXT))"\n" -"\t"STUB_ASM_CODE("746")"\n" +"\t"STUB_ASM_CODE("748")"\n" ".globl "GLAPI_PREFIX_STR(FogCoordPointer)"\n" ".set "GLAPI_PREFIX_STR(FogCoordPointer)", "GLAPI_PREFIX_STR(FogCoordPointerEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(FogCoorddEXT))"\n" -"\t"STUB_ASM_CODE("747")"\n" +"\t"STUB_ASM_CODE("749")"\n" ".globl "GLAPI_PREFIX_STR(FogCoordd)"\n" ".set "GLAPI_PREFIX_STR(FogCoordd)", "GLAPI_PREFIX_STR(FogCoorddEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(FogCoorddvEXT))"\n" -"\t"STUB_ASM_CODE("748")"\n" +"\t"STUB_ASM_CODE("750")"\n" ".globl "GLAPI_PREFIX_STR(FogCoorddv)"\n" ".set "GLAPI_PREFIX_STR(FogCoorddv)", "GLAPI_PREFIX_STR(FogCoorddvEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(FogCoordfEXT))"\n" -"\t"STUB_ASM_CODE("749")"\n" +"\t"STUB_ASM_CODE("751")"\n" ".globl "GLAPI_PREFIX_STR(FogCoordf)"\n" ".set "GLAPI_PREFIX_STR(FogCoordf)", "GLAPI_PREFIX_STR(FogCoordfEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(FogCoordfvEXT))"\n" -"\t"STUB_ASM_CODE("750")"\n" +"\t"STUB_ASM_CODE("752")"\n" ".globl "GLAPI_PREFIX_STR(FogCoordfv)"\n" ".set "GLAPI_PREFIX_STR(FogCoordfv)", "GLAPI_PREFIX_STR(FogCoordfvEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BlendFuncSeparateEXT))"\n" -"\t"STUB_ASM_CODE("752")"\n" +"\t"STUB_ASM_CODE("754")"\n" ".globl "GLAPI_PREFIX_STR(BlendFuncSeparate)"\n" ".set "GLAPI_PREFIX_STR(BlendFuncSeparate)", "GLAPI_PREFIX_STR(BlendFuncSeparateEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(FlushVertexArrayRangeNV))"\n" -"\t"STUB_ASM_CODE("753")"\n" +"\t"STUB_ASM_CODE("755")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexArrayRangeNV))"\n" -"\t"STUB_ASM_CODE("754")"\n" +"\t"STUB_ASM_CODE("756")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(CombinerInputNV))"\n" -"\t"STUB_ASM_CODE("755")"\n" +"\t"STUB_ASM_CODE("757")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(CombinerOutputNV))"\n" -"\t"STUB_ASM_CODE("756")"\n" +"\t"STUB_ASM_CODE("758")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(CombinerParameterfNV))"\n" -"\t"STUB_ASM_CODE("757")"\n" +"\t"STUB_ASM_CODE("759")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(CombinerParameterfvNV))"\n" -"\t"STUB_ASM_CODE("758")"\n" +"\t"STUB_ASM_CODE("760")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(CombinerParameteriNV))"\n" -"\t"STUB_ASM_CODE("759")"\n" +"\t"STUB_ASM_CODE("761")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(CombinerParameterivNV))"\n" -"\t"STUB_ASM_CODE("760")"\n" +"\t"STUB_ASM_CODE("762")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(FinalCombinerInputNV))"\n" -"\t"STUB_ASM_CODE("761")"\n" +"\t"STUB_ASM_CODE("763")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetCombinerInputParameterfvNV))"\n" -"\t"STUB_ASM_CODE("762")"\n" +"\t"STUB_ASM_CODE("764")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetCombinerInputParameterivNV))"\n" -"\t"STUB_ASM_CODE("763")"\n" +"\t"STUB_ASM_CODE("765")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetCombinerOutputParameterfvNV))"\n" -"\t"STUB_ASM_CODE("764")"\n" +"\t"STUB_ASM_CODE("766")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetCombinerOutputParameterivNV))"\n" -"\t"STUB_ASM_CODE("765")"\n" +"\t"STUB_ASM_CODE("767")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetFinalCombinerInputParameterfvNV))"\n" -"\t"STUB_ASM_CODE("766")"\n" +"\t"STUB_ASM_CODE("768")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetFinalCombinerInputParameterivNV))"\n" -"\t"STUB_ASM_CODE("767")"\n" +"\t"STUB_ASM_CODE("769")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ResizeBuffersMESA))"\n" -"\t"STUB_ASM_CODE("768")"\n" +"\t"STUB_ASM_CODE("770")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2dMESA))"\n" -"\t"STUB_ASM_CODE("769")"\n" +"\t"STUB_ASM_CODE("771")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos2d)"\n" ".set "GLAPI_PREFIX_STR(WindowPos2d)", "GLAPI_PREFIX_STR(WindowPos2dMESA)"\n" @@ -13186,7 +13208,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2dMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos2dARB)", "GLAPI_PREFIX_STR(WindowPos2dMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2dvMESA))"\n" -"\t"STUB_ASM_CODE("770")"\n" +"\t"STUB_ASM_CODE("772")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos2dv)"\n" ".set "GLAPI_PREFIX_STR(WindowPos2dv)", "GLAPI_PREFIX_STR(WindowPos2dvMESA)"\n" @@ -13195,7 +13217,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2dvMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos2dvARB)", "GLAPI_PREFIX_STR(WindowPos2dvMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2fMESA))"\n" -"\t"STUB_ASM_CODE("771")"\n" +"\t"STUB_ASM_CODE("773")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos2f)"\n" ".set "GLAPI_PREFIX_STR(WindowPos2f)", "GLAPI_PREFIX_STR(WindowPos2fMESA)"\n" @@ -13204,7 +13226,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2fMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos2fARB)", "GLAPI_PREFIX_STR(WindowPos2fMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2fvMESA))"\n" -"\t"STUB_ASM_CODE("772")"\n" +"\t"STUB_ASM_CODE("774")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos2fv)"\n" ".set "GLAPI_PREFIX_STR(WindowPos2fv)", "GLAPI_PREFIX_STR(WindowPos2fvMESA)"\n" @@ -13213,7 +13235,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2fvMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos2fvARB)", "GLAPI_PREFIX_STR(WindowPos2fvMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2iMESA))"\n" -"\t"STUB_ASM_CODE("773")"\n" +"\t"STUB_ASM_CODE("775")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos2i)"\n" ".set "GLAPI_PREFIX_STR(WindowPos2i)", "GLAPI_PREFIX_STR(WindowPos2iMESA)"\n" @@ -13222,7 +13244,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2iMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos2iARB)", "GLAPI_PREFIX_STR(WindowPos2iMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2ivMESA))"\n" -"\t"STUB_ASM_CODE("774")"\n" +"\t"STUB_ASM_CODE("776")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos2iv)"\n" ".set "GLAPI_PREFIX_STR(WindowPos2iv)", "GLAPI_PREFIX_STR(WindowPos2ivMESA)"\n" @@ -13231,7 +13253,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2ivMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos2ivARB)", "GLAPI_PREFIX_STR(WindowPos2ivMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2sMESA))"\n" -"\t"STUB_ASM_CODE("775")"\n" +"\t"STUB_ASM_CODE("777")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos2s)"\n" ".set "GLAPI_PREFIX_STR(WindowPos2s)", "GLAPI_PREFIX_STR(WindowPos2sMESA)"\n" @@ -13240,7 +13262,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2sMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos2sARB)", "GLAPI_PREFIX_STR(WindowPos2sMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2svMESA))"\n" -"\t"STUB_ASM_CODE("776")"\n" +"\t"STUB_ASM_CODE("778")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos2sv)"\n" ".set "GLAPI_PREFIX_STR(WindowPos2sv)", "GLAPI_PREFIX_STR(WindowPos2svMESA)"\n" @@ -13249,7 +13271,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos2svMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos2svARB)", "GLAPI_PREFIX_STR(WindowPos2svMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3dMESA))"\n" -"\t"STUB_ASM_CODE("777")"\n" +"\t"STUB_ASM_CODE("779")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos3d)"\n" ".set "GLAPI_PREFIX_STR(WindowPos3d)", "GLAPI_PREFIX_STR(WindowPos3dMESA)"\n" @@ -13258,7 +13280,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3dMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos3dARB)", "GLAPI_PREFIX_STR(WindowPos3dMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3dvMESA))"\n" -"\t"STUB_ASM_CODE("778")"\n" +"\t"STUB_ASM_CODE("780")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos3dv)"\n" ".set "GLAPI_PREFIX_STR(WindowPos3dv)", "GLAPI_PREFIX_STR(WindowPos3dvMESA)"\n" @@ -13267,7 +13289,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3dvMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos3dvARB)", "GLAPI_PREFIX_STR(WindowPos3dvMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3fMESA))"\n" -"\t"STUB_ASM_CODE("779")"\n" +"\t"STUB_ASM_CODE("781")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos3f)"\n" ".set "GLAPI_PREFIX_STR(WindowPos3f)", "GLAPI_PREFIX_STR(WindowPos3fMESA)"\n" @@ -13276,7 +13298,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3fMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos3fARB)", "GLAPI_PREFIX_STR(WindowPos3fMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3fvMESA))"\n" -"\t"STUB_ASM_CODE("780")"\n" +"\t"STUB_ASM_CODE("782")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos3fv)"\n" ".set "GLAPI_PREFIX_STR(WindowPos3fv)", "GLAPI_PREFIX_STR(WindowPos3fvMESA)"\n" @@ -13285,7 +13307,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3fvMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos3fvARB)", "GLAPI_PREFIX_STR(WindowPos3fvMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3iMESA))"\n" -"\t"STUB_ASM_CODE("781")"\n" +"\t"STUB_ASM_CODE("783")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos3i)"\n" ".set "GLAPI_PREFIX_STR(WindowPos3i)", "GLAPI_PREFIX_STR(WindowPos3iMESA)"\n" @@ -13294,7 +13316,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3iMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos3iARB)", "GLAPI_PREFIX_STR(WindowPos3iMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3ivMESA))"\n" -"\t"STUB_ASM_CODE("782")"\n" +"\t"STUB_ASM_CODE("784")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos3iv)"\n" ".set "GLAPI_PREFIX_STR(WindowPos3iv)", "GLAPI_PREFIX_STR(WindowPos3ivMESA)"\n" @@ -13303,7 +13325,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3ivMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos3ivARB)", "GLAPI_PREFIX_STR(WindowPos3ivMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3sMESA))"\n" -"\t"STUB_ASM_CODE("783")"\n" +"\t"STUB_ASM_CODE("785")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos3s)"\n" ".set "GLAPI_PREFIX_STR(WindowPos3s)", "GLAPI_PREFIX_STR(WindowPos3sMESA)"\n" @@ -13312,7 +13334,7 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3sMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos3sARB)", "GLAPI_PREFIX_STR(WindowPos3sMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3svMESA))"\n" -"\t"STUB_ASM_CODE("784")"\n" +"\t"STUB_ASM_CODE("786")"\n" ".globl "GLAPI_PREFIX_STR(WindowPos3sv)"\n" ".set "GLAPI_PREFIX_STR(WindowPos3sv)", "GLAPI_PREFIX_STR(WindowPos3svMESA)"\n" @@ -13321,70 +13343,70 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos3svMESA))"\n" ".set "GLAPI_PREFIX_STR(WindowPos3svARB)", "GLAPI_PREFIX_STR(WindowPos3svMESA)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos4dMESA))"\n" -"\t"STUB_ASM_CODE("785")"\n" +"\t"STUB_ASM_CODE("787")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos4dvMESA))"\n" -"\t"STUB_ASM_CODE("786")"\n" +"\t"STUB_ASM_CODE("788")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos4fMESA))"\n" -"\t"STUB_ASM_CODE("787")"\n" +"\t"STUB_ASM_CODE("789")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos4fvMESA))"\n" -"\t"STUB_ASM_CODE("788")"\n" +"\t"STUB_ASM_CODE("790")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos4iMESA))"\n" -"\t"STUB_ASM_CODE("789")"\n" +"\t"STUB_ASM_CODE("791")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos4ivMESA))"\n" -"\t"STUB_ASM_CODE("790")"\n" +"\t"STUB_ASM_CODE("792")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos4sMESA))"\n" -"\t"STUB_ASM_CODE("791")"\n" +"\t"STUB_ASM_CODE("793")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(WindowPos4svMESA))"\n" -"\t"STUB_ASM_CODE("792")"\n" +"\t"STUB_ASM_CODE("794")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(AreProgramsResidentNV))"\n" -"\t"STUB_ASM_CODE("802")"\n" +"\t"STUB_ASM_CODE("804")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BindProgramNV))"\n" -"\t"STUB_ASM_CODE("803")"\n" +"\t"STUB_ASM_CODE("805")"\n" ".globl "GLAPI_PREFIX_STR(BindProgramARB)"\n" ".set "GLAPI_PREFIX_STR(BindProgramARB)", "GLAPI_PREFIX_STR(BindProgramNV)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DeleteProgramsNV))"\n" -"\t"STUB_ASM_CODE("804")"\n" +"\t"STUB_ASM_CODE("806")"\n" ".globl "GLAPI_PREFIX_STR(DeleteProgramsARB)"\n" ".set "GLAPI_PREFIX_STR(DeleteProgramsARB)", "GLAPI_PREFIX_STR(DeleteProgramsNV)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ExecuteProgramNV))"\n" -"\t"STUB_ASM_CODE("805")"\n" +"\t"STUB_ASM_CODE("807")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GenProgramsNV))"\n" -"\t"STUB_ASM_CODE("806")"\n" +"\t"STUB_ASM_CODE("808")"\n" ".globl "GLAPI_PREFIX_STR(GenProgramsARB)"\n" ".set "GLAPI_PREFIX_STR(GenProgramsARB)", "GLAPI_PREFIX_STR(GenProgramsNV)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetProgramParameterdvNV))"\n" -"\t"STUB_ASM_CODE("807")"\n" +"\t"STUB_ASM_CODE("809")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetProgramParameterfvNV))"\n" -"\t"STUB_ASM_CODE("808")"\n" +"\t"STUB_ASM_CODE("810")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetProgramStringNV))"\n" -"\t"STUB_ASM_CODE("809")"\n" +"\t"STUB_ASM_CODE("811")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetProgramivNV))"\n" -"\t"STUB_ASM_CODE("810")"\n" +"\t"STUB_ASM_CODE("812")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetTrackMatrixivNV))"\n" -"\t"STUB_ASM_CODE("811")"\n" +"\t"STUB_ASM_CODE("813")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetVertexAttribPointervNV))"\n" -"\t"STUB_ASM_CODE("812")"\n" +"\t"STUB_ASM_CODE("814")"\n" ".globl "GLAPI_PREFIX_STR(GetVertexAttribPointerv)"\n" ".set "GLAPI_PREFIX_STR(GetVertexAttribPointerv)", "GLAPI_PREFIX_STR(GetVertexAttribPointervNV)"\n" @@ -13393,568 +13415,568 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetVertexAttribPointervNV))"\n" ".set "GLAPI_PREFIX_STR(GetVertexAttribPointervARB)", "GLAPI_PREFIX_STR(GetVertexAttribPointervNV)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetVertexAttribdvNV))"\n" -"\t"STUB_ASM_CODE("813")"\n" +"\t"STUB_ASM_CODE("815")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetVertexAttribfvNV))"\n" -"\t"STUB_ASM_CODE("814")"\n" +"\t"STUB_ASM_CODE("816")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetVertexAttribivNV))"\n" -"\t"STUB_ASM_CODE("815")"\n" +"\t"STUB_ASM_CODE("817")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(IsProgramNV))"\n" -"\t"STUB_ASM_CODE("816")"\n" +"\t"STUB_ASM_CODE("818")"\n" ".globl "GLAPI_PREFIX_STR(IsProgramARB)"\n" ".set "GLAPI_PREFIX_STR(IsProgramARB)", "GLAPI_PREFIX_STR(IsProgramNV)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(LoadProgramNV))"\n" -"\t"STUB_ASM_CODE("817")"\n" +"\t"STUB_ASM_CODE("819")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ProgramParameters4dvNV))"\n" -"\t"STUB_ASM_CODE("818")"\n" +"\t"STUB_ASM_CODE("820")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ProgramParameters4fvNV))"\n" -"\t"STUB_ASM_CODE("819")"\n" +"\t"STUB_ASM_CODE("821")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(RequestResidentProgramsNV))"\n" -"\t"STUB_ASM_CODE("820")"\n" +"\t"STUB_ASM_CODE("822")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TrackMatrixNV))"\n" -"\t"STUB_ASM_CODE("821")"\n" +"\t"STUB_ASM_CODE("823")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib1dNV))"\n" -"\t"STUB_ASM_CODE("822")"\n" +"\t"STUB_ASM_CODE("824")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib1dvNV))"\n" -"\t"STUB_ASM_CODE("823")"\n" +"\t"STUB_ASM_CODE("825")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib1fNV))"\n" -"\t"STUB_ASM_CODE("824")"\n" +"\t"STUB_ASM_CODE("826")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib1fvNV))"\n" -"\t"STUB_ASM_CODE("825")"\n" +"\t"STUB_ASM_CODE("827")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib1sNV))"\n" -"\t"STUB_ASM_CODE("826")"\n" +"\t"STUB_ASM_CODE("828")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib1svNV))"\n" -"\t"STUB_ASM_CODE("827")"\n" +"\t"STUB_ASM_CODE("829")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib2dNV))"\n" -"\t"STUB_ASM_CODE("828")"\n" +"\t"STUB_ASM_CODE("830")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib2dvNV))"\n" -"\t"STUB_ASM_CODE("829")"\n" +"\t"STUB_ASM_CODE("831")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib2fNV))"\n" -"\t"STUB_ASM_CODE("830")"\n" +"\t"STUB_ASM_CODE("832")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib2fvNV))"\n" -"\t"STUB_ASM_CODE("831")"\n" +"\t"STUB_ASM_CODE("833")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib2sNV))"\n" -"\t"STUB_ASM_CODE("832")"\n" +"\t"STUB_ASM_CODE("834")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib2svNV))"\n" -"\t"STUB_ASM_CODE("833")"\n" +"\t"STUB_ASM_CODE("835")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib3dNV))"\n" -"\t"STUB_ASM_CODE("834")"\n" +"\t"STUB_ASM_CODE("836")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib3dvNV))"\n" -"\t"STUB_ASM_CODE("835")"\n" +"\t"STUB_ASM_CODE("837")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib3fNV))"\n" -"\t"STUB_ASM_CODE("836")"\n" +"\t"STUB_ASM_CODE("838")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib3fvNV))"\n" -"\t"STUB_ASM_CODE("837")"\n" +"\t"STUB_ASM_CODE("839")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib3sNV))"\n" -"\t"STUB_ASM_CODE("838")"\n" +"\t"STUB_ASM_CODE("840")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib3svNV))"\n" -"\t"STUB_ASM_CODE("839")"\n" +"\t"STUB_ASM_CODE("841")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib4dNV))"\n" -"\t"STUB_ASM_CODE("840")"\n" +"\t"STUB_ASM_CODE("842")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib4dvNV))"\n" -"\t"STUB_ASM_CODE("841")"\n" +"\t"STUB_ASM_CODE("843")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib4fNV))"\n" -"\t"STUB_ASM_CODE("842")"\n" +"\t"STUB_ASM_CODE("844")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib4fvNV))"\n" -"\t"STUB_ASM_CODE("843")"\n" +"\t"STUB_ASM_CODE("845")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib4sNV))"\n" -"\t"STUB_ASM_CODE("844")"\n" +"\t"STUB_ASM_CODE("846")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib4svNV))"\n" -"\t"STUB_ASM_CODE("845")"\n" +"\t"STUB_ASM_CODE("847")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib4ubNV))"\n" -"\t"STUB_ASM_CODE("846")"\n" +"\t"STUB_ASM_CODE("848")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttrib4ubvNV))"\n" -"\t"STUB_ASM_CODE("847")"\n" +"\t"STUB_ASM_CODE("849")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribPointerNV))"\n" -"\t"STUB_ASM_CODE("848")"\n" +"\t"STUB_ASM_CODE("850")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribs1dvNV))"\n" -"\t"STUB_ASM_CODE("849")"\n" +"\t"STUB_ASM_CODE("851")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribs1fvNV))"\n" -"\t"STUB_ASM_CODE("850")"\n" +"\t"STUB_ASM_CODE("852")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribs1svNV))"\n" -"\t"STUB_ASM_CODE("851")"\n" +"\t"STUB_ASM_CODE("853")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribs2dvNV))"\n" -"\t"STUB_ASM_CODE("852")"\n" +"\t"STUB_ASM_CODE("854")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribs2fvNV))"\n" -"\t"STUB_ASM_CODE("853")"\n" +"\t"STUB_ASM_CODE("855")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribs2svNV))"\n" -"\t"STUB_ASM_CODE("854")"\n" +"\t"STUB_ASM_CODE("856")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribs3dvNV))"\n" -"\t"STUB_ASM_CODE("855")"\n" +"\t"STUB_ASM_CODE("857")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribs3fvNV))"\n" -"\t"STUB_ASM_CODE("856")"\n" +"\t"STUB_ASM_CODE("858")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribs3svNV))"\n" -"\t"STUB_ASM_CODE("857")"\n" +"\t"STUB_ASM_CODE("859")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribs4dvNV))"\n" -"\t"STUB_ASM_CODE("858")"\n" +"\t"STUB_ASM_CODE("860")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribs4fvNV))"\n" -"\t"STUB_ASM_CODE("859")"\n" +"\t"STUB_ASM_CODE("861")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribs4svNV))"\n" -"\t"STUB_ASM_CODE("860")"\n" +"\t"STUB_ASM_CODE("862")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribs4ubvNV))"\n" -"\t"STUB_ASM_CODE("861")"\n" +"\t"STUB_ASM_CODE("863")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetTexBumpParameterfvATI))"\n" -"\t"STUB_ASM_CODE("862")"\n" +"\t"STUB_ASM_CODE("864")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetTexBumpParameterivATI))"\n" -"\t"STUB_ASM_CODE("863")"\n" +"\t"STUB_ASM_CODE("865")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexBumpParameterfvATI))"\n" -"\t"STUB_ASM_CODE("864")"\n" +"\t"STUB_ASM_CODE("866")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexBumpParameterivATI))"\n" -"\t"STUB_ASM_CODE("865")"\n" +"\t"STUB_ASM_CODE("867")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(AlphaFragmentOp1ATI))"\n" -"\t"STUB_ASM_CODE("866")"\n" +"\t"STUB_ASM_CODE("868")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(AlphaFragmentOp2ATI))"\n" -"\t"STUB_ASM_CODE("867")"\n" +"\t"STUB_ASM_CODE("869")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(AlphaFragmentOp3ATI))"\n" -"\t"STUB_ASM_CODE("868")"\n" +"\t"STUB_ASM_CODE("870")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BeginFragmentShaderATI))"\n" -"\t"STUB_ASM_CODE("869")"\n" +"\t"STUB_ASM_CODE("871")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BindFragmentShaderATI))"\n" -"\t"STUB_ASM_CODE("870")"\n" +"\t"STUB_ASM_CODE("872")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ColorFragmentOp1ATI))"\n" -"\t"STUB_ASM_CODE("871")"\n" +"\t"STUB_ASM_CODE("873")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ColorFragmentOp2ATI))"\n" -"\t"STUB_ASM_CODE("872")"\n" +"\t"STUB_ASM_CODE("874")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ColorFragmentOp3ATI))"\n" -"\t"STUB_ASM_CODE("873")"\n" +"\t"STUB_ASM_CODE("875")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DeleteFragmentShaderATI))"\n" -"\t"STUB_ASM_CODE("874")"\n" +"\t"STUB_ASM_CODE("876")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(EndFragmentShaderATI))"\n" -"\t"STUB_ASM_CODE("875")"\n" +"\t"STUB_ASM_CODE("877")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GenFragmentShadersATI))"\n" -"\t"STUB_ASM_CODE("876")"\n" +"\t"STUB_ASM_CODE("878")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(PassTexCoordATI))"\n" -"\t"STUB_ASM_CODE("877")"\n" +"\t"STUB_ASM_CODE("879")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SampleMapATI))"\n" -"\t"STUB_ASM_CODE("878")"\n" +"\t"STUB_ASM_CODE("880")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(SetFragmentShaderConstantATI))"\n" -"\t"STUB_ASM_CODE("879")"\n" +"\t"STUB_ASM_CODE("881")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(PointParameteriNV))"\n" -"\t"STUB_ASM_CODE("880")"\n" +"\t"STUB_ASM_CODE("882")"\n" ".globl "GLAPI_PREFIX_STR(PointParameteri)"\n" ".set "GLAPI_PREFIX_STR(PointParameteri)", "GLAPI_PREFIX_STR(PointParameteriNV)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(PointParameterivNV))"\n" -"\t"STUB_ASM_CODE("881")"\n" +"\t"STUB_ASM_CODE("883")"\n" ".globl "GLAPI_PREFIX_STR(PointParameteriv)"\n" ".set "GLAPI_PREFIX_STR(PointParameteriv)", "GLAPI_PREFIX_STR(PointParameterivNV)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DeleteVertexArrays))"\n" -"\t"STUB_ASM_CODE("884")"\n" +"\t"STUB_ASM_CODE("886")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(IsVertexArray))"\n" -"\t"STUB_ASM_CODE("886")"\n" +"\t"STUB_ASM_CODE("888")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetProgramNamedParameterdvNV))"\n" -"\t"STUB_ASM_CODE("887")"\n" +"\t"STUB_ASM_CODE("889")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetProgramNamedParameterfvNV))"\n" -"\t"STUB_ASM_CODE("888")"\n" +"\t"STUB_ASM_CODE("890")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ProgramNamedParameter4dNV))"\n" -"\t"STUB_ASM_CODE("889")"\n" +"\t"STUB_ASM_CODE("891")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ProgramNamedParameter4dvNV))"\n" -"\t"STUB_ASM_CODE("890")"\n" +"\t"STUB_ASM_CODE("892")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ProgramNamedParameter4fNV))"\n" -"\t"STUB_ASM_CODE("891")"\n" +"\t"STUB_ASM_CODE("893")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ProgramNamedParameter4fvNV))"\n" -"\t"STUB_ASM_CODE("892")"\n" +"\t"STUB_ASM_CODE("894")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(PrimitiveRestartIndexNV))"\n" -"\t"STUB_ASM_CODE("893")"\n" +"\t"STUB_ASM_CODE("895")"\n" ".globl "GLAPI_PREFIX_STR(PrimitiveRestartIndex)"\n" ".set "GLAPI_PREFIX_STR(PrimitiveRestartIndex)", "GLAPI_PREFIX_STR(PrimitiveRestartIndexNV)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(PrimitiveRestartNV))"\n" -"\t"STUB_ASM_CODE("894")"\n" +"\t"STUB_ASM_CODE("896")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BlendEquationSeparate))"\n" -"\t"STUB_ASM_CODE("942")"\n" +"\t"STUB_ASM_CODE("944")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BindFramebufferEXT))"\n" -"\t"STUB_ASM_CODE("943")"\n" +"\t"STUB_ASM_CODE("945")"\n" ".globl "GLAPI_PREFIX_STR(BindFramebuffer)"\n" ".set "GLAPI_PREFIX_STR(BindFramebuffer)", "GLAPI_PREFIX_STR(BindFramebufferEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BindRenderbufferEXT))"\n" -"\t"STUB_ASM_CODE("944")"\n" +"\t"STUB_ASM_CODE("946")"\n" ".globl "GLAPI_PREFIX_STR(BindRenderbuffer)"\n" ".set "GLAPI_PREFIX_STR(BindRenderbuffer)", "GLAPI_PREFIX_STR(BindRenderbufferEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(CheckFramebufferStatusEXT))"\n" -"\t"STUB_ASM_CODE("945")"\n" +"\t"STUB_ASM_CODE("947")"\n" ".globl "GLAPI_PREFIX_STR(CheckFramebufferStatus)"\n" ".set "GLAPI_PREFIX_STR(CheckFramebufferStatus)", "GLAPI_PREFIX_STR(CheckFramebufferStatusEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DeleteFramebuffersEXT))"\n" -"\t"STUB_ASM_CODE("946")"\n" +"\t"STUB_ASM_CODE("948")"\n" ".globl "GLAPI_PREFIX_STR(DeleteFramebuffers)"\n" ".set "GLAPI_PREFIX_STR(DeleteFramebuffers)", "GLAPI_PREFIX_STR(DeleteFramebuffersEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DeleteRenderbuffersEXT))"\n" -"\t"STUB_ASM_CODE("947")"\n" +"\t"STUB_ASM_CODE("949")"\n" ".globl "GLAPI_PREFIX_STR(DeleteRenderbuffers)"\n" ".set "GLAPI_PREFIX_STR(DeleteRenderbuffers)", "GLAPI_PREFIX_STR(DeleteRenderbuffersEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(FramebufferRenderbufferEXT))"\n" -"\t"STUB_ASM_CODE("948")"\n" +"\t"STUB_ASM_CODE("950")"\n" ".globl "GLAPI_PREFIX_STR(FramebufferRenderbuffer)"\n" ".set "GLAPI_PREFIX_STR(FramebufferRenderbuffer)", "GLAPI_PREFIX_STR(FramebufferRenderbufferEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(FramebufferTexture1DEXT))"\n" -"\t"STUB_ASM_CODE("949")"\n" +"\t"STUB_ASM_CODE("951")"\n" ".globl "GLAPI_PREFIX_STR(FramebufferTexture1D)"\n" ".set "GLAPI_PREFIX_STR(FramebufferTexture1D)", "GLAPI_PREFIX_STR(FramebufferTexture1DEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(FramebufferTexture2DEXT))"\n" -"\t"STUB_ASM_CODE("950")"\n" +"\t"STUB_ASM_CODE("952")"\n" ".globl "GLAPI_PREFIX_STR(FramebufferTexture2D)"\n" ".set "GLAPI_PREFIX_STR(FramebufferTexture2D)", "GLAPI_PREFIX_STR(FramebufferTexture2DEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(FramebufferTexture3DEXT))"\n" -"\t"STUB_ASM_CODE("951")"\n" +"\t"STUB_ASM_CODE("953")"\n" ".globl "GLAPI_PREFIX_STR(FramebufferTexture3D)"\n" ".set "GLAPI_PREFIX_STR(FramebufferTexture3D)", "GLAPI_PREFIX_STR(FramebufferTexture3DEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GenFramebuffersEXT))"\n" -"\t"STUB_ASM_CODE("952")"\n" +"\t"STUB_ASM_CODE("954")"\n" ".globl "GLAPI_PREFIX_STR(GenFramebuffers)"\n" ".set "GLAPI_PREFIX_STR(GenFramebuffers)", "GLAPI_PREFIX_STR(GenFramebuffersEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GenRenderbuffersEXT))"\n" -"\t"STUB_ASM_CODE("953")"\n" +"\t"STUB_ASM_CODE("955")"\n" ".globl "GLAPI_PREFIX_STR(GenRenderbuffers)"\n" ".set "GLAPI_PREFIX_STR(GenRenderbuffers)", "GLAPI_PREFIX_STR(GenRenderbuffersEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GenerateMipmapEXT))"\n" -"\t"STUB_ASM_CODE("954")"\n" +"\t"STUB_ASM_CODE("956")"\n" ".globl "GLAPI_PREFIX_STR(GenerateMipmap)"\n" ".set "GLAPI_PREFIX_STR(GenerateMipmap)", "GLAPI_PREFIX_STR(GenerateMipmapEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetFramebufferAttachmentParameterivEXT))"\n" -"\t"STUB_ASM_CODE("955")"\n" +"\t"STUB_ASM_CODE("957")"\n" ".globl "GLAPI_PREFIX_STR(GetFramebufferAttachmentParameteriv)"\n" ".set "GLAPI_PREFIX_STR(GetFramebufferAttachmentParameteriv)", "GLAPI_PREFIX_STR(GetFramebufferAttachmentParameterivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetRenderbufferParameterivEXT))"\n" -"\t"STUB_ASM_CODE("956")"\n" +"\t"STUB_ASM_CODE("958")"\n" ".globl "GLAPI_PREFIX_STR(GetRenderbufferParameteriv)"\n" ".set "GLAPI_PREFIX_STR(GetRenderbufferParameteriv)", "GLAPI_PREFIX_STR(GetRenderbufferParameterivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(IsFramebufferEXT))"\n" -"\t"STUB_ASM_CODE("957")"\n" +"\t"STUB_ASM_CODE("959")"\n" ".globl "GLAPI_PREFIX_STR(IsFramebuffer)"\n" ".set "GLAPI_PREFIX_STR(IsFramebuffer)", "GLAPI_PREFIX_STR(IsFramebufferEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(IsRenderbufferEXT))"\n" -"\t"STUB_ASM_CODE("958")"\n" +"\t"STUB_ASM_CODE("960")"\n" ".globl "GLAPI_PREFIX_STR(IsRenderbuffer)"\n" ".set "GLAPI_PREFIX_STR(IsRenderbuffer)", "GLAPI_PREFIX_STR(IsRenderbufferEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(RenderbufferStorageEXT))"\n" -"\t"STUB_ASM_CODE("959")"\n" +"\t"STUB_ASM_CODE("961")"\n" ".globl "GLAPI_PREFIX_STR(RenderbufferStorage)"\n" ".set "GLAPI_PREFIX_STR(RenderbufferStorage)", "GLAPI_PREFIX_STR(RenderbufferStorageEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BlitFramebuffer))"\n" -"\t"STUB_ASM_CODE("960")"\n" +"\t"STUB_ASM_CODE("962")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BindFragDataLocationEXT))"\n" -"\t"STUB_ASM_CODE("963")"\n" +"\t"STUB_ASM_CODE("965")"\n" ".globl "GLAPI_PREFIX_STR(BindFragDataLocation)"\n" ".set "GLAPI_PREFIX_STR(BindFragDataLocation)", "GLAPI_PREFIX_STR(BindFragDataLocationEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetFragDataLocationEXT))"\n" -"\t"STUB_ASM_CODE("964")"\n" +"\t"STUB_ASM_CODE("966")"\n" ".globl "GLAPI_PREFIX_STR(GetFragDataLocation)"\n" ".set "GLAPI_PREFIX_STR(GetFragDataLocation)", "GLAPI_PREFIX_STR(GetFragDataLocationEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetUniformuivEXT))"\n" -"\t"STUB_ASM_CODE("965")"\n" +"\t"STUB_ASM_CODE("967")"\n" ".globl "GLAPI_PREFIX_STR(GetUniformuiv)"\n" ".set "GLAPI_PREFIX_STR(GetUniformuiv)", "GLAPI_PREFIX_STR(GetUniformuivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetVertexAttribIivEXT))"\n" -"\t"STUB_ASM_CODE("966")"\n" +"\t"STUB_ASM_CODE("968")"\n" ".globl "GLAPI_PREFIX_STR(GetVertexAttribIiv)"\n" ".set "GLAPI_PREFIX_STR(GetVertexAttribIiv)", "GLAPI_PREFIX_STR(GetVertexAttribIivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetVertexAttribIuivEXT))"\n" -"\t"STUB_ASM_CODE("967")"\n" +"\t"STUB_ASM_CODE("969")"\n" ".globl "GLAPI_PREFIX_STR(GetVertexAttribIuiv)"\n" ".set "GLAPI_PREFIX_STR(GetVertexAttribIuiv)", "GLAPI_PREFIX_STR(GetVertexAttribIuivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(Uniform1uiEXT))"\n" -"\t"STUB_ASM_CODE("968")"\n" +"\t"STUB_ASM_CODE("970")"\n" ".globl "GLAPI_PREFIX_STR(Uniform1ui)"\n" ".set "GLAPI_PREFIX_STR(Uniform1ui)", "GLAPI_PREFIX_STR(Uniform1uiEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(Uniform1uivEXT))"\n" -"\t"STUB_ASM_CODE("969")"\n" +"\t"STUB_ASM_CODE("971")"\n" ".globl "GLAPI_PREFIX_STR(Uniform1uiv)"\n" ".set "GLAPI_PREFIX_STR(Uniform1uiv)", "GLAPI_PREFIX_STR(Uniform1uivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(Uniform2uiEXT))"\n" -"\t"STUB_ASM_CODE("970")"\n" +"\t"STUB_ASM_CODE("972")"\n" ".globl "GLAPI_PREFIX_STR(Uniform2ui)"\n" ".set "GLAPI_PREFIX_STR(Uniform2ui)", "GLAPI_PREFIX_STR(Uniform2uiEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(Uniform2uivEXT))"\n" -"\t"STUB_ASM_CODE("971")"\n" +"\t"STUB_ASM_CODE("973")"\n" ".globl "GLAPI_PREFIX_STR(Uniform2uiv)"\n" ".set "GLAPI_PREFIX_STR(Uniform2uiv)", "GLAPI_PREFIX_STR(Uniform2uivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(Uniform3uiEXT))"\n" -"\t"STUB_ASM_CODE("972")"\n" +"\t"STUB_ASM_CODE("974")"\n" ".globl "GLAPI_PREFIX_STR(Uniform3ui)"\n" ".set "GLAPI_PREFIX_STR(Uniform3ui)", "GLAPI_PREFIX_STR(Uniform3uiEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(Uniform3uivEXT))"\n" -"\t"STUB_ASM_CODE("973")"\n" +"\t"STUB_ASM_CODE("975")"\n" ".globl "GLAPI_PREFIX_STR(Uniform3uiv)"\n" ".set "GLAPI_PREFIX_STR(Uniform3uiv)", "GLAPI_PREFIX_STR(Uniform3uivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(Uniform4uiEXT))"\n" -"\t"STUB_ASM_CODE("974")"\n" +"\t"STUB_ASM_CODE("976")"\n" ".globl "GLAPI_PREFIX_STR(Uniform4ui)"\n" ".set "GLAPI_PREFIX_STR(Uniform4ui)", "GLAPI_PREFIX_STR(Uniform4uiEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(Uniform4uivEXT))"\n" -"\t"STUB_ASM_CODE("975")"\n" +"\t"STUB_ASM_CODE("977")"\n" ".globl "GLAPI_PREFIX_STR(Uniform4uiv)"\n" ".set "GLAPI_PREFIX_STR(Uniform4uiv)", "GLAPI_PREFIX_STR(Uniform4uivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI1iEXT))"\n" -"\t"STUB_ASM_CODE("976")"\n" +"\t"STUB_ASM_CODE("978")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI1i)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI1i)", "GLAPI_PREFIX_STR(VertexAttribI1iEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI1ivEXT))"\n" -"\t"STUB_ASM_CODE("977")"\n" +"\t"STUB_ASM_CODE("979")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI1iv)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI1iv)", "GLAPI_PREFIX_STR(VertexAttribI1ivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI1uiEXT))"\n" -"\t"STUB_ASM_CODE("978")"\n" +"\t"STUB_ASM_CODE("980")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI1ui)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI1ui)", "GLAPI_PREFIX_STR(VertexAttribI1uiEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI1uivEXT))"\n" -"\t"STUB_ASM_CODE("979")"\n" +"\t"STUB_ASM_CODE("981")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI1uiv)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI1uiv)", "GLAPI_PREFIX_STR(VertexAttribI1uivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI2iEXT))"\n" -"\t"STUB_ASM_CODE("980")"\n" +"\t"STUB_ASM_CODE("982")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI2i)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI2i)", "GLAPI_PREFIX_STR(VertexAttribI2iEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI2ivEXT))"\n" -"\t"STUB_ASM_CODE("981")"\n" +"\t"STUB_ASM_CODE("983")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI2iv)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI2iv)", "GLAPI_PREFIX_STR(VertexAttribI2ivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI2uiEXT))"\n" -"\t"STUB_ASM_CODE("982")"\n" +"\t"STUB_ASM_CODE("984")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI2ui)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI2ui)", "GLAPI_PREFIX_STR(VertexAttribI2uiEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI2uivEXT))"\n" -"\t"STUB_ASM_CODE("983")"\n" +"\t"STUB_ASM_CODE("985")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI2uiv)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI2uiv)", "GLAPI_PREFIX_STR(VertexAttribI2uivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI3iEXT))"\n" -"\t"STUB_ASM_CODE("984")"\n" +"\t"STUB_ASM_CODE("986")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI3i)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI3i)", "GLAPI_PREFIX_STR(VertexAttribI3iEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI3ivEXT))"\n" -"\t"STUB_ASM_CODE("985")"\n" +"\t"STUB_ASM_CODE("987")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI3iv)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI3iv)", "GLAPI_PREFIX_STR(VertexAttribI3ivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI3uiEXT))"\n" -"\t"STUB_ASM_CODE("986")"\n" +"\t"STUB_ASM_CODE("988")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI3ui)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI3ui)", "GLAPI_PREFIX_STR(VertexAttribI3uiEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI3uivEXT))"\n" -"\t"STUB_ASM_CODE("987")"\n" +"\t"STUB_ASM_CODE("989")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI3uiv)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI3uiv)", "GLAPI_PREFIX_STR(VertexAttribI3uivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI4bvEXT))"\n" -"\t"STUB_ASM_CODE("988")"\n" +"\t"STUB_ASM_CODE("990")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI4bv)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI4bv)", "GLAPI_PREFIX_STR(VertexAttribI4bvEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI4iEXT))"\n" -"\t"STUB_ASM_CODE("989")"\n" +"\t"STUB_ASM_CODE("991")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI4i)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI4i)", "GLAPI_PREFIX_STR(VertexAttribI4iEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI4ivEXT))"\n" -"\t"STUB_ASM_CODE("990")"\n" +"\t"STUB_ASM_CODE("992")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI4iv)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI4iv)", "GLAPI_PREFIX_STR(VertexAttribI4ivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI4svEXT))"\n" -"\t"STUB_ASM_CODE("991")"\n" +"\t"STUB_ASM_CODE("993")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI4sv)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI4sv)", "GLAPI_PREFIX_STR(VertexAttribI4svEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI4ubvEXT))"\n" -"\t"STUB_ASM_CODE("992")"\n" +"\t"STUB_ASM_CODE("994")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI4ubv)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI4ubv)", "GLAPI_PREFIX_STR(VertexAttribI4ubvEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI4uiEXT))"\n" -"\t"STUB_ASM_CODE("993")"\n" +"\t"STUB_ASM_CODE("995")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI4ui)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI4ui)", "GLAPI_PREFIX_STR(VertexAttribI4uiEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI4uivEXT))"\n" -"\t"STUB_ASM_CODE("994")"\n" +"\t"STUB_ASM_CODE("996")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI4uiv)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI4uiv)", "GLAPI_PREFIX_STR(VertexAttribI4uivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribI4usvEXT))"\n" -"\t"STUB_ASM_CODE("995")"\n" +"\t"STUB_ASM_CODE("997")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribI4usv)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribI4usv)", "GLAPI_PREFIX_STR(VertexAttribI4usvEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(VertexAttribIPointerEXT))"\n" -"\t"STUB_ASM_CODE("996")"\n" +"\t"STUB_ASM_CODE("998")"\n" ".globl "GLAPI_PREFIX_STR(VertexAttribIPointer)"\n" ".set "GLAPI_PREFIX_STR(VertexAttribIPointer)", "GLAPI_PREFIX_STR(VertexAttribIPointerEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(FramebufferTextureLayerEXT))"\n" -"\t"STUB_ASM_CODE("997")"\n" +"\t"STUB_ASM_CODE("999")"\n" ".globl "GLAPI_PREFIX_STR(FramebufferTextureLayer)"\n" ".set "GLAPI_PREFIX_STR(FramebufferTextureLayer)", "GLAPI_PREFIX_STR(FramebufferTextureLayerEXT)"\n" @@ -13963,154 +13985,154 @@ STUB_ASM_ENTRY(GLAPI_PREFIX_STR(FramebufferTextureLayerEXT))"\n" ".set "GLAPI_PREFIX_STR(FramebufferTextureLayerARB)", "GLAPI_PREFIX_STR(FramebufferTextureLayerEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ColorMaskIndexedEXT))"\n" -"\t"STUB_ASM_CODE("998")"\n" +"\t"STUB_ASM_CODE("1000")"\n" ".globl "GLAPI_PREFIX_STR(ColorMaski)"\n" ".set "GLAPI_PREFIX_STR(ColorMaski)", "GLAPI_PREFIX_STR(ColorMaskIndexedEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(DisableIndexedEXT))"\n" -"\t"STUB_ASM_CODE("999")"\n" +"\t"STUB_ASM_CODE("1001")"\n" ".globl "GLAPI_PREFIX_STR(Disablei)"\n" ".set "GLAPI_PREFIX_STR(Disablei)", "GLAPI_PREFIX_STR(DisableIndexedEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(EnableIndexedEXT))"\n" -"\t"STUB_ASM_CODE("1000")"\n" +"\t"STUB_ASM_CODE("1002")"\n" ".globl "GLAPI_PREFIX_STR(Enablei)"\n" ".set "GLAPI_PREFIX_STR(Enablei)", "GLAPI_PREFIX_STR(EnableIndexedEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetBooleanIndexedvEXT))"\n" -"\t"STUB_ASM_CODE("1001")"\n" +"\t"STUB_ASM_CODE("1003")"\n" ".globl "GLAPI_PREFIX_STR(GetBooleani_v)"\n" ".set "GLAPI_PREFIX_STR(GetBooleani_v)", "GLAPI_PREFIX_STR(GetBooleanIndexedvEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetIntegerIndexedvEXT))"\n" -"\t"STUB_ASM_CODE("1002")"\n" +"\t"STUB_ASM_CODE("1004")"\n" ".globl "GLAPI_PREFIX_STR(GetIntegeri_v)"\n" ".set "GLAPI_PREFIX_STR(GetIntegeri_v)", "GLAPI_PREFIX_STR(GetIntegerIndexedvEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(IsEnabledIndexedEXT))"\n" -"\t"STUB_ASM_CODE("1003")"\n" +"\t"STUB_ASM_CODE("1005")"\n" ".globl "GLAPI_PREFIX_STR(IsEnabledi)"\n" ".set "GLAPI_PREFIX_STR(IsEnabledi)", "GLAPI_PREFIX_STR(IsEnabledIndexedEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ClearColorIiEXT))"\n" -"\t"STUB_ASM_CODE("1004")"\n" +"\t"STUB_ASM_CODE("1006")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ClearColorIuiEXT))"\n" -"\t"STUB_ASM_CODE("1005")"\n" +"\t"STUB_ASM_CODE("1007")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetTexParameterIivEXT))"\n" -"\t"STUB_ASM_CODE("1006")"\n" +"\t"STUB_ASM_CODE("1008")"\n" ".globl "GLAPI_PREFIX_STR(GetTexParameterIiv)"\n" ".set "GLAPI_PREFIX_STR(GetTexParameterIiv)", "GLAPI_PREFIX_STR(GetTexParameterIivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetTexParameterIuivEXT))"\n" -"\t"STUB_ASM_CODE("1007")"\n" +"\t"STUB_ASM_CODE("1009")"\n" ".globl "GLAPI_PREFIX_STR(GetTexParameterIuiv)"\n" ".set "GLAPI_PREFIX_STR(GetTexParameterIuiv)", "GLAPI_PREFIX_STR(GetTexParameterIuivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexParameterIivEXT))"\n" -"\t"STUB_ASM_CODE("1008")"\n" +"\t"STUB_ASM_CODE("1010")"\n" ".globl "GLAPI_PREFIX_STR(TexParameterIiv)"\n" ".set "GLAPI_PREFIX_STR(TexParameterIiv)", "GLAPI_PREFIX_STR(TexParameterIivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TexParameterIuivEXT))"\n" -"\t"STUB_ASM_CODE("1009")"\n" +"\t"STUB_ASM_CODE("1011")"\n" ".globl "GLAPI_PREFIX_STR(TexParameterIuiv)"\n" ".set "GLAPI_PREFIX_STR(TexParameterIuiv)", "GLAPI_PREFIX_STR(TexParameterIuivEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BeginConditionalRenderNV))"\n" -"\t"STUB_ASM_CODE("1010")"\n" +"\t"STUB_ASM_CODE("1012")"\n" ".globl "GLAPI_PREFIX_STR(BeginConditionalRender)"\n" ".set "GLAPI_PREFIX_STR(BeginConditionalRender)", "GLAPI_PREFIX_STR(BeginConditionalRenderNV)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(EndConditionalRenderNV))"\n" -"\t"STUB_ASM_CODE("1011")"\n" +"\t"STUB_ASM_CODE("1013")"\n" ".globl "GLAPI_PREFIX_STR(EndConditionalRender)"\n" ".set "GLAPI_PREFIX_STR(EndConditionalRender)", "GLAPI_PREFIX_STR(EndConditionalRenderNV)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BeginTransformFeedbackEXT))"\n" -"\t"STUB_ASM_CODE("1012")"\n" +"\t"STUB_ASM_CODE("1014")"\n" ".globl "GLAPI_PREFIX_STR(BeginTransformFeedback)"\n" ".set "GLAPI_PREFIX_STR(BeginTransformFeedback)", "GLAPI_PREFIX_STR(BeginTransformFeedbackEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BindBufferBaseEXT))"\n" -"\t"STUB_ASM_CODE("1013")"\n" +"\t"STUB_ASM_CODE("1015")"\n" ".globl "GLAPI_PREFIX_STR(BindBufferBase)"\n" ".set "GLAPI_PREFIX_STR(BindBufferBase)", "GLAPI_PREFIX_STR(BindBufferBaseEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BindBufferOffsetEXT))"\n" -"\t"STUB_ASM_CODE("1014")"\n" +"\t"STUB_ASM_CODE("1016")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(BindBufferRangeEXT))"\n" -"\t"STUB_ASM_CODE("1015")"\n" +"\t"STUB_ASM_CODE("1017")"\n" ".globl "GLAPI_PREFIX_STR(BindBufferRange)"\n" ".set "GLAPI_PREFIX_STR(BindBufferRange)", "GLAPI_PREFIX_STR(BindBufferRangeEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(EndTransformFeedbackEXT))"\n" -"\t"STUB_ASM_CODE("1016")"\n" +"\t"STUB_ASM_CODE("1018")"\n" ".globl "GLAPI_PREFIX_STR(EndTransformFeedback)"\n" ".set "GLAPI_PREFIX_STR(EndTransformFeedback)", "GLAPI_PREFIX_STR(EndTransformFeedbackEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetTransformFeedbackVaryingEXT))"\n" -"\t"STUB_ASM_CODE("1017")"\n" +"\t"STUB_ASM_CODE("1019")"\n" ".globl "GLAPI_PREFIX_STR(GetTransformFeedbackVarying)"\n" ".set "GLAPI_PREFIX_STR(GetTransformFeedbackVarying)", "GLAPI_PREFIX_STR(GetTransformFeedbackVaryingEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TransformFeedbackVaryingsEXT))"\n" -"\t"STUB_ASM_CODE("1018")"\n" +"\t"STUB_ASM_CODE("1020")"\n" ".globl "GLAPI_PREFIX_STR(TransformFeedbackVaryings)"\n" ".set "GLAPI_PREFIX_STR(TransformFeedbackVaryings)", "GLAPI_PREFIX_STR(TransformFeedbackVaryingsEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ProvokingVertexEXT))"\n" -"\t"STUB_ASM_CODE("1019")"\n" +"\t"STUB_ASM_CODE("1021")"\n" ".globl "GLAPI_PREFIX_STR(ProvokingVertex)"\n" ".set "GLAPI_PREFIX_STR(ProvokingVertex)", "GLAPI_PREFIX_STR(ProvokingVertexEXT)"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(GetObjectParameterivAPPLE))"\n" -"\t"STUB_ASM_CODE("1022")"\n" +"\t"STUB_ASM_CODE("1024")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ObjectPurgeableAPPLE))"\n" -"\t"STUB_ASM_CODE("1023")"\n" +"\t"STUB_ASM_CODE("1025")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ObjectUnpurgeableAPPLE))"\n" -"\t"STUB_ASM_CODE("1024")"\n" +"\t"STUB_ASM_CODE("1026")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(ActiveProgramEXT))"\n" -"\t"STUB_ASM_CODE("1025")"\n" +"\t"STUB_ASM_CODE("1027")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(CreateShaderProgramEXT))"\n" -"\t"STUB_ASM_CODE("1026")"\n" +"\t"STUB_ASM_CODE("1028")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(UseShaderProgramEXT))"\n" -"\t"STUB_ASM_CODE("1027")"\n" +"\t"STUB_ASM_CODE("1029")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(TextureBarrierNV))"\n" -"\t"STUB_ASM_CODE("1028")"\n" +"\t"STUB_ASM_CODE("1030")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(EGLImageTargetRenderbufferStorageOES))"\n" -"\t"STUB_ASM_CODE("1034")"\n" +"\t"STUB_ASM_CODE("1036")"\n" STUB_ASM_ENTRY(GLAPI_PREFIX_STR(EGLImageTargetTexture2DOES))"\n" -"\t"STUB_ASM_CODE("1035")"\n" +"\t"STUB_ASM_CODE("1037")"\n" ); #undef MAPI_TMP_STUB_ASM_GCC_NO_HIDDEN diff --git a/src/mapi/glapi/glapi_sparc.S b/src/mapi/glapi/glapi_sparc.S index fd5f90fd6a6..48b792fcea9 100644 --- a/src/mapi/glapi/glapi_sparc.S +++ b/src/mapi/glapi/glapi_sparc.S @@ -796,105 +796,103 @@ gl_dispatch_functions_start: GL_STUB(glBlendEquationiARB, 598) GL_STUB(glBlendFuncSeparateiARB, 599) GL_STUB(glBlendFunciARB, 600) - GL_STUB(glBindSampler, 601) - GL_STUB(glDeleteSamplers, 602) - GL_STUB(glGenSamplers, 603) - GL_STUB(glGetSamplerParameterIiv, 604) - GL_STUB(glGetSamplerParameterIuiv, 605) - GL_STUB(glGetSamplerParameterfv, 606) - GL_STUB(glGetSamplerParameteriv, 607) - GL_STUB(glIsSampler, 608) - GL_STUB(glSamplerParameterIiv, 609) - GL_STUB(glSamplerParameterIuiv, 610) - GL_STUB(glSamplerParameterf, 611) - GL_STUB(glSamplerParameterfv, 612) - GL_STUB(glSamplerParameteri, 613) - GL_STUB(glSamplerParameteriv, 614) - GL_STUB(glColorP3ui, 615) - GL_STUB(glColorP3uiv, 616) - GL_STUB(glColorP4ui, 617) - GL_STUB(glColorP4uiv, 618) - GL_STUB(glMultiTexCoordP1ui, 619) - GL_STUB(glMultiTexCoordP1uiv, 620) - GL_STUB(glMultiTexCoordP2ui, 621) - GL_STUB(glMultiTexCoordP2uiv, 622) - GL_STUB(glMultiTexCoordP3ui, 623) - GL_STUB(glMultiTexCoordP3uiv, 624) - GL_STUB(glMultiTexCoordP4ui, 625) - GL_STUB(glMultiTexCoordP4uiv, 626) - GL_STUB(glNormalP3ui, 627) - GL_STUB(glNormalP3uiv, 628) - GL_STUB(glSecondaryColorP3ui, 629) - GL_STUB(glSecondaryColorP3uiv, 630) - GL_STUB(glTexCoordP1ui, 631) - GL_STUB(glTexCoordP1uiv, 632) - GL_STUB(glTexCoordP2ui, 633) - GL_STUB(glTexCoordP2uiv, 634) - GL_STUB(glTexCoordP3ui, 635) - GL_STUB(glTexCoordP3uiv, 636) - GL_STUB(glTexCoordP4ui, 637) - GL_STUB(glTexCoordP4uiv, 638) - GL_STUB(glVertexAttribP1ui, 639) - GL_STUB(glVertexAttribP1uiv, 640) - GL_STUB(glVertexAttribP2ui, 641) - GL_STUB(glVertexAttribP2uiv, 642) - GL_STUB(glVertexAttribP3ui, 643) - GL_STUB(glVertexAttribP3uiv, 644) - GL_STUB(glVertexAttribP4ui, 645) - GL_STUB(glVertexAttribP4uiv, 646) - GL_STUB(glVertexP2ui, 647) - GL_STUB(glVertexP2uiv, 648) - GL_STUB(glVertexP3ui, 649) - GL_STUB(glVertexP3uiv, 650) - GL_STUB(glVertexP4ui, 651) - GL_STUB(glVertexP4uiv, 652) - GL_STUB(glBindTransformFeedback, 653) - GL_STUB(glDeleteTransformFeedbacks, 654) - GL_STUB(glDrawTransformFeedback, 655) - GL_STUB(glGenTransformFeedbacks, 656) - GL_STUB(glIsTransformFeedback, 657) - GL_STUB(glPauseTransformFeedback, 658) - GL_STUB(glResumeTransformFeedback, 659) - GL_STUB(glClearDepthf, 660) - GL_STUB(glDepthRangef, 661) - GL_STUB(glGetShaderPrecisionFormat, 662) - GL_STUB(glReleaseShaderCompiler, 663) - GL_STUB(glShaderBinary, 664) - GL_STUB(glDebugMessageCallbackARB, 665) - GL_STUB(glDebugMessageControlARB, 666) - GL_STUB(glDebugMessageInsertARB, 667) - GL_STUB(glGetDebugMessageLogARB, 668) - GL_STUB(glGetGraphicsResetStatusARB, 669) - GL_STUB(glGetnColorTableARB, 670) - GL_STUB(glGetnCompressedTexImageARB, 671) - GL_STUB(glGetnConvolutionFilterARB, 672) - GL_STUB(glGetnHistogramARB, 673) - GL_STUB(glGetnMapdvARB, 674) - GL_STUB(glGetnMapfvARB, 675) - GL_STUB(glGetnMapivARB, 676) - GL_STUB(glGetnMinmaxARB, 677) - GL_STUB(glGetnPixelMapfvARB, 678) - GL_STUB(glGetnPixelMapuivARB, 679) - GL_STUB(glGetnPixelMapusvARB, 680) - GL_STUB(glGetnPolygonStippleARB, 681) - GL_STUB(glGetnSeparableFilterARB, 682) - GL_STUB(glGetnTexImageARB, 683) - GL_STUB(glGetnUniformdvARB, 684) - GL_STUB(glGetnUniformfvARB, 685) - GL_STUB(glGetnUniformivARB, 686) - GL_STUB(glGetnUniformuivARB, 687) - GL_STUB(glReadnPixelsARB, 688) - GL_STUB(glTexStorage1D, 689) - GL_STUB(glTexStorage2D, 690) - GL_STUB(glTexStorage3D, 691) - GL_STUB(glTextureStorage1DEXT, 692) - GL_STUB(glTextureStorage2DEXT, 693) - GL_STUB(glTextureStorage3DEXT, 694) - GL_STUB(glPolygonOffsetEXT, 695) - GL_STUB(gl_dispatch_stub_696, 696) - HIDDEN(gl_dispatch_stub_696) - GL_STUB(gl_dispatch_stub_697, 697) - HIDDEN(gl_dispatch_stub_697) + GL_STUB(glBindFragDataLocationIndexed, 601) + GL_STUB(glGetFragDataIndex, 602) + GL_STUB(glBindSampler, 603) + GL_STUB(glDeleteSamplers, 604) + GL_STUB(glGenSamplers, 605) + GL_STUB(glGetSamplerParameterIiv, 606) + GL_STUB(glGetSamplerParameterIuiv, 607) + GL_STUB(glGetSamplerParameterfv, 608) + GL_STUB(glGetSamplerParameteriv, 609) + GL_STUB(glIsSampler, 610) + GL_STUB(glSamplerParameterIiv, 611) + GL_STUB(glSamplerParameterIuiv, 612) + GL_STUB(glSamplerParameterf, 613) + GL_STUB(glSamplerParameterfv, 614) + GL_STUB(glSamplerParameteri, 615) + GL_STUB(glSamplerParameteriv, 616) + GL_STUB(glColorP3ui, 617) + GL_STUB(glColorP3uiv, 618) + GL_STUB(glColorP4ui, 619) + GL_STUB(glColorP4uiv, 620) + GL_STUB(glMultiTexCoordP1ui, 621) + GL_STUB(glMultiTexCoordP1uiv, 622) + GL_STUB(glMultiTexCoordP2ui, 623) + GL_STUB(glMultiTexCoordP2uiv, 624) + GL_STUB(glMultiTexCoordP3ui, 625) + GL_STUB(glMultiTexCoordP3uiv, 626) + GL_STUB(glMultiTexCoordP4ui, 627) + GL_STUB(glMultiTexCoordP4uiv, 628) + GL_STUB(glNormalP3ui, 629) + GL_STUB(glNormalP3uiv, 630) + GL_STUB(glSecondaryColorP3ui, 631) + GL_STUB(glSecondaryColorP3uiv, 632) + GL_STUB(glTexCoordP1ui, 633) + GL_STUB(glTexCoordP1uiv, 634) + GL_STUB(glTexCoordP2ui, 635) + GL_STUB(glTexCoordP2uiv, 636) + GL_STUB(glTexCoordP3ui, 637) + GL_STUB(glTexCoordP3uiv, 638) + GL_STUB(glTexCoordP4ui, 639) + GL_STUB(glTexCoordP4uiv, 640) + GL_STUB(glVertexAttribP1ui, 641) + GL_STUB(glVertexAttribP1uiv, 642) + GL_STUB(glVertexAttribP2ui, 643) + GL_STUB(glVertexAttribP2uiv, 644) + GL_STUB(glVertexAttribP3ui, 645) + GL_STUB(glVertexAttribP3uiv, 646) + GL_STUB(glVertexAttribP4ui, 647) + GL_STUB(glVertexAttribP4uiv, 648) + GL_STUB(glVertexP2ui, 649) + GL_STUB(glVertexP2uiv, 650) + GL_STUB(glVertexP3ui, 651) + GL_STUB(glVertexP3uiv, 652) + GL_STUB(glVertexP4ui, 653) + GL_STUB(glVertexP4uiv, 654) + GL_STUB(glBindTransformFeedback, 655) + GL_STUB(glDeleteTransformFeedbacks, 656) + GL_STUB(glDrawTransformFeedback, 657) + GL_STUB(glGenTransformFeedbacks, 658) + GL_STUB(glIsTransformFeedback, 659) + GL_STUB(glPauseTransformFeedback, 660) + GL_STUB(glResumeTransformFeedback, 661) + GL_STUB(glClearDepthf, 662) + GL_STUB(glDepthRangef, 663) + GL_STUB(glGetShaderPrecisionFormat, 664) + GL_STUB(glReleaseShaderCompiler, 665) + GL_STUB(glShaderBinary, 666) + GL_STUB(glDebugMessageCallbackARB, 667) + GL_STUB(glDebugMessageControlARB, 668) + GL_STUB(glDebugMessageInsertARB, 669) + GL_STUB(glGetDebugMessageLogARB, 670) + GL_STUB(glGetGraphicsResetStatusARB, 671) + GL_STUB(glGetnColorTableARB, 672) + GL_STUB(glGetnCompressedTexImageARB, 673) + GL_STUB(glGetnConvolutionFilterARB, 674) + GL_STUB(glGetnHistogramARB, 675) + GL_STUB(glGetnMapdvARB, 676) + GL_STUB(glGetnMapfvARB, 677) + GL_STUB(glGetnMapivARB, 678) + GL_STUB(glGetnMinmaxARB, 679) + GL_STUB(glGetnPixelMapfvARB, 680) + GL_STUB(glGetnPixelMapuivARB, 681) + GL_STUB(glGetnPixelMapusvARB, 682) + GL_STUB(glGetnPolygonStippleARB, 683) + GL_STUB(glGetnSeparableFilterARB, 684) + GL_STUB(glGetnTexImageARB, 685) + GL_STUB(glGetnUniformdvARB, 686) + GL_STUB(glGetnUniformfvARB, 687) + GL_STUB(glGetnUniformivARB, 688) + GL_STUB(glGetnUniformuivARB, 689) + GL_STUB(glReadnPixelsARB, 690) + GL_STUB(glTexStorage1D, 691) + GL_STUB(glTexStorage2D, 692) + GL_STUB(glTexStorage3D, 693) + GL_STUB(glTextureStorage1DEXT, 694) + GL_STUB(glTextureStorage2DEXT, 695) + GL_STUB(glTextureStorage3DEXT, 696) + GL_STUB(glPolygonOffsetEXT, 697) GL_STUB(gl_dispatch_stub_698, 698) HIDDEN(gl_dispatch_stub_698) GL_STUB(gl_dispatch_stub_699, 699) @@ -907,87 +905,87 @@ gl_dispatch_functions_start: HIDDEN(gl_dispatch_stub_702) GL_STUB(gl_dispatch_stub_703, 703) HIDDEN(gl_dispatch_stub_703) - GL_STUB(glColorPointerEXT, 704) - GL_STUB(glEdgeFlagPointerEXT, 705) - GL_STUB(glIndexPointerEXT, 706) - GL_STUB(glNormalPointerEXT, 707) - GL_STUB(glTexCoordPointerEXT, 708) - GL_STUB(glVertexPointerEXT, 709) - GL_STUB(glPointParameterfEXT, 710) - GL_STUB(glPointParameterfvEXT, 711) - GL_STUB(glLockArraysEXT, 712) - GL_STUB(glUnlockArraysEXT, 713) - GL_STUB(glSecondaryColor3bEXT, 714) - GL_STUB(glSecondaryColor3bvEXT, 715) - GL_STUB(glSecondaryColor3dEXT, 716) - GL_STUB(glSecondaryColor3dvEXT, 717) - GL_STUB(glSecondaryColor3fEXT, 718) - GL_STUB(glSecondaryColor3fvEXT, 719) - GL_STUB(glSecondaryColor3iEXT, 720) - GL_STUB(glSecondaryColor3ivEXT, 721) - GL_STUB(glSecondaryColor3sEXT, 722) - GL_STUB(glSecondaryColor3svEXT, 723) - GL_STUB(glSecondaryColor3ubEXT, 724) - GL_STUB(glSecondaryColor3ubvEXT, 725) - GL_STUB(glSecondaryColor3uiEXT, 726) - GL_STUB(glSecondaryColor3uivEXT, 727) - GL_STUB(glSecondaryColor3usEXT, 728) - GL_STUB(glSecondaryColor3usvEXT, 729) - GL_STUB(glSecondaryColorPointerEXT, 730) - GL_STUB(glMultiDrawArraysEXT, 731) - GL_STUB(glMultiDrawElementsEXT, 732) - GL_STUB(glFogCoordPointerEXT, 733) - GL_STUB(glFogCoorddEXT, 734) - GL_STUB(glFogCoorddvEXT, 735) - GL_STUB(glFogCoordfEXT, 736) - GL_STUB(glFogCoordfvEXT, 737) - GL_STUB(gl_dispatch_stub_738, 738) - HIDDEN(gl_dispatch_stub_738) - GL_STUB(glBlendFuncSeparateEXT, 739) - GL_STUB(glFlushVertexArrayRangeNV, 740) - GL_STUB(glVertexArrayRangeNV, 741) - GL_STUB(glCombinerInputNV, 742) - GL_STUB(glCombinerOutputNV, 743) - GL_STUB(glCombinerParameterfNV, 744) - GL_STUB(glCombinerParameterfvNV, 745) - GL_STUB(glCombinerParameteriNV, 746) - GL_STUB(glCombinerParameterivNV, 747) - GL_STUB(glFinalCombinerInputNV, 748) - GL_STUB(glGetCombinerInputParameterfvNV, 749) - GL_STUB(glGetCombinerInputParameterivNV, 750) - GL_STUB(glGetCombinerOutputParameterfvNV, 751) - GL_STUB(glGetCombinerOutputParameterivNV, 752) - GL_STUB(glGetFinalCombinerInputParameterfvNV, 753) - GL_STUB(glGetFinalCombinerInputParameterivNV, 754) - GL_STUB(glResizeBuffersMESA, 755) - GL_STUB(glWindowPos2dMESA, 756) - GL_STUB(glWindowPos2dvMESA, 757) - GL_STUB(glWindowPos2fMESA, 758) - GL_STUB(glWindowPos2fvMESA, 759) - GL_STUB(glWindowPos2iMESA, 760) - GL_STUB(glWindowPos2ivMESA, 761) - GL_STUB(glWindowPos2sMESA, 762) - GL_STUB(glWindowPos2svMESA, 763) - GL_STUB(glWindowPos3dMESA, 764) - GL_STUB(glWindowPos3dvMESA, 765) - GL_STUB(glWindowPos3fMESA, 766) - GL_STUB(glWindowPos3fvMESA, 767) - GL_STUB(glWindowPos3iMESA, 768) - GL_STUB(glWindowPos3ivMESA, 769) - GL_STUB(glWindowPos3sMESA, 770) - GL_STUB(glWindowPos3svMESA, 771) - GL_STUB(glWindowPos4dMESA, 772) - GL_STUB(glWindowPos4dvMESA, 773) - GL_STUB(glWindowPos4fMESA, 774) - GL_STUB(glWindowPos4fvMESA, 775) - GL_STUB(glWindowPos4iMESA, 776) - GL_STUB(glWindowPos4ivMESA, 777) - GL_STUB(glWindowPos4sMESA, 778) - GL_STUB(glWindowPos4svMESA, 779) - GL_STUB(gl_dispatch_stub_780, 780) - HIDDEN(gl_dispatch_stub_780) - GL_STUB(gl_dispatch_stub_781, 781) - HIDDEN(gl_dispatch_stub_781) + GL_STUB(gl_dispatch_stub_704, 704) + HIDDEN(gl_dispatch_stub_704) + GL_STUB(gl_dispatch_stub_705, 705) + HIDDEN(gl_dispatch_stub_705) + GL_STUB(glColorPointerEXT, 706) + GL_STUB(glEdgeFlagPointerEXT, 707) + GL_STUB(glIndexPointerEXT, 708) + GL_STUB(glNormalPointerEXT, 709) + GL_STUB(glTexCoordPointerEXT, 710) + GL_STUB(glVertexPointerEXT, 711) + GL_STUB(glPointParameterfEXT, 712) + GL_STUB(glPointParameterfvEXT, 713) + GL_STUB(glLockArraysEXT, 714) + GL_STUB(glUnlockArraysEXT, 715) + GL_STUB(glSecondaryColor3bEXT, 716) + GL_STUB(glSecondaryColor3bvEXT, 717) + GL_STUB(glSecondaryColor3dEXT, 718) + GL_STUB(glSecondaryColor3dvEXT, 719) + GL_STUB(glSecondaryColor3fEXT, 720) + GL_STUB(glSecondaryColor3fvEXT, 721) + GL_STUB(glSecondaryColor3iEXT, 722) + GL_STUB(glSecondaryColor3ivEXT, 723) + GL_STUB(glSecondaryColor3sEXT, 724) + GL_STUB(glSecondaryColor3svEXT, 725) + GL_STUB(glSecondaryColor3ubEXT, 726) + GL_STUB(glSecondaryColor3ubvEXT, 727) + GL_STUB(glSecondaryColor3uiEXT, 728) + GL_STUB(glSecondaryColor3uivEXT, 729) + GL_STUB(glSecondaryColor3usEXT, 730) + GL_STUB(glSecondaryColor3usvEXT, 731) + GL_STUB(glSecondaryColorPointerEXT, 732) + GL_STUB(glMultiDrawArraysEXT, 733) + GL_STUB(glMultiDrawElementsEXT, 734) + GL_STUB(glFogCoordPointerEXT, 735) + GL_STUB(glFogCoorddEXT, 736) + GL_STUB(glFogCoorddvEXT, 737) + GL_STUB(glFogCoordfEXT, 738) + GL_STUB(glFogCoordfvEXT, 739) + GL_STUB(gl_dispatch_stub_740, 740) + HIDDEN(gl_dispatch_stub_740) + GL_STUB(glBlendFuncSeparateEXT, 741) + GL_STUB(glFlushVertexArrayRangeNV, 742) + GL_STUB(glVertexArrayRangeNV, 743) + GL_STUB(glCombinerInputNV, 744) + GL_STUB(glCombinerOutputNV, 745) + GL_STUB(glCombinerParameterfNV, 746) + GL_STUB(glCombinerParameterfvNV, 747) + GL_STUB(glCombinerParameteriNV, 748) + GL_STUB(glCombinerParameterivNV, 749) + GL_STUB(glFinalCombinerInputNV, 750) + GL_STUB(glGetCombinerInputParameterfvNV, 751) + GL_STUB(glGetCombinerInputParameterivNV, 752) + GL_STUB(glGetCombinerOutputParameterfvNV, 753) + GL_STUB(glGetCombinerOutputParameterivNV, 754) + GL_STUB(glGetFinalCombinerInputParameterfvNV, 755) + GL_STUB(glGetFinalCombinerInputParameterivNV, 756) + GL_STUB(glResizeBuffersMESA, 757) + GL_STUB(glWindowPos2dMESA, 758) + GL_STUB(glWindowPos2dvMESA, 759) + GL_STUB(glWindowPos2fMESA, 760) + GL_STUB(glWindowPos2fvMESA, 761) + GL_STUB(glWindowPos2iMESA, 762) + GL_STUB(glWindowPos2ivMESA, 763) + GL_STUB(glWindowPos2sMESA, 764) + GL_STUB(glWindowPos2svMESA, 765) + GL_STUB(glWindowPos3dMESA, 766) + GL_STUB(glWindowPos3dvMESA, 767) + GL_STUB(glWindowPos3fMESA, 768) + GL_STUB(glWindowPos3fvMESA, 769) + GL_STUB(glWindowPos3iMESA, 770) + GL_STUB(glWindowPos3ivMESA, 771) + GL_STUB(glWindowPos3sMESA, 772) + GL_STUB(glWindowPos3svMESA, 773) + GL_STUB(glWindowPos4dMESA, 774) + GL_STUB(glWindowPos4dvMESA, 775) + GL_STUB(glWindowPos4fMESA, 776) + GL_STUB(glWindowPos4fvMESA, 777) + GL_STUB(glWindowPos4iMESA, 778) + GL_STUB(glWindowPos4ivMESA, 779) + GL_STUB(glWindowPos4sMESA, 780) + GL_STUB(glWindowPos4svMESA, 781) GL_STUB(gl_dispatch_stub_782, 782) HIDDEN(gl_dispatch_stub_782) GL_STUB(gl_dispatch_stub_783, 783) @@ -1002,211 +1000,215 @@ gl_dispatch_functions_start: HIDDEN(gl_dispatch_stub_787) GL_STUB(gl_dispatch_stub_788, 788) HIDDEN(gl_dispatch_stub_788) - GL_STUB(glAreProgramsResidentNV, 789) - GL_STUB(glBindProgramNV, 790) - GL_STUB(glDeleteProgramsNV, 791) - GL_STUB(glExecuteProgramNV, 792) - GL_STUB(glGenProgramsNV, 793) - GL_STUB(glGetProgramParameterdvNV, 794) - GL_STUB(glGetProgramParameterfvNV, 795) - GL_STUB(glGetProgramStringNV, 796) - GL_STUB(glGetProgramivNV, 797) - GL_STUB(glGetTrackMatrixivNV, 798) - GL_STUB(glGetVertexAttribPointervNV, 799) - GL_STUB(glGetVertexAttribdvNV, 800) - GL_STUB(glGetVertexAttribfvNV, 801) - GL_STUB(glGetVertexAttribivNV, 802) - GL_STUB(glIsProgramNV, 803) - GL_STUB(glLoadProgramNV, 804) - GL_STUB(glProgramParameters4dvNV, 805) - GL_STUB(glProgramParameters4fvNV, 806) - GL_STUB(glRequestResidentProgramsNV, 807) - GL_STUB(glTrackMatrixNV, 808) - GL_STUB(glVertexAttrib1dNV, 809) - GL_STUB(glVertexAttrib1dvNV, 810) - GL_STUB(glVertexAttrib1fNV, 811) - GL_STUB(glVertexAttrib1fvNV, 812) - GL_STUB(glVertexAttrib1sNV, 813) - GL_STUB(glVertexAttrib1svNV, 814) - GL_STUB(glVertexAttrib2dNV, 815) - GL_STUB(glVertexAttrib2dvNV, 816) - GL_STUB(glVertexAttrib2fNV, 817) - GL_STUB(glVertexAttrib2fvNV, 818) - GL_STUB(glVertexAttrib2sNV, 819) - GL_STUB(glVertexAttrib2svNV, 820) - GL_STUB(glVertexAttrib3dNV, 821) - GL_STUB(glVertexAttrib3dvNV, 822) - GL_STUB(glVertexAttrib3fNV, 823) - GL_STUB(glVertexAttrib3fvNV, 824) - GL_STUB(glVertexAttrib3sNV, 825) - GL_STUB(glVertexAttrib3svNV, 826) - GL_STUB(glVertexAttrib4dNV, 827) - GL_STUB(glVertexAttrib4dvNV, 828) - GL_STUB(glVertexAttrib4fNV, 829) - GL_STUB(glVertexAttrib4fvNV, 830) - GL_STUB(glVertexAttrib4sNV, 831) - GL_STUB(glVertexAttrib4svNV, 832) - GL_STUB(glVertexAttrib4ubNV, 833) - GL_STUB(glVertexAttrib4ubvNV, 834) - GL_STUB(glVertexAttribPointerNV, 835) - GL_STUB(glVertexAttribs1dvNV, 836) - GL_STUB(glVertexAttribs1fvNV, 837) - GL_STUB(glVertexAttribs1svNV, 838) - GL_STUB(glVertexAttribs2dvNV, 839) - GL_STUB(glVertexAttribs2fvNV, 840) - GL_STUB(glVertexAttribs2svNV, 841) - GL_STUB(glVertexAttribs3dvNV, 842) - GL_STUB(glVertexAttribs3fvNV, 843) - GL_STUB(glVertexAttribs3svNV, 844) - GL_STUB(glVertexAttribs4dvNV, 845) - GL_STUB(glVertexAttribs4fvNV, 846) - GL_STUB(glVertexAttribs4svNV, 847) - GL_STUB(glVertexAttribs4ubvNV, 848) - GL_STUB(glGetTexBumpParameterfvATI, 849) - GL_STUB(glGetTexBumpParameterivATI, 850) - GL_STUB(glTexBumpParameterfvATI, 851) - GL_STUB(glTexBumpParameterivATI, 852) - GL_STUB(glAlphaFragmentOp1ATI, 853) - GL_STUB(glAlphaFragmentOp2ATI, 854) - GL_STUB(glAlphaFragmentOp3ATI, 855) - GL_STUB(glBeginFragmentShaderATI, 856) - GL_STUB(glBindFragmentShaderATI, 857) - GL_STUB(glColorFragmentOp1ATI, 858) - GL_STUB(glColorFragmentOp2ATI, 859) - GL_STUB(glColorFragmentOp3ATI, 860) - GL_STUB(glDeleteFragmentShaderATI, 861) - GL_STUB(glEndFragmentShaderATI, 862) - GL_STUB(glGenFragmentShadersATI, 863) - GL_STUB(glPassTexCoordATI, 864) - GL_STUB(glSampleMapATI, 865) - GL_STUB(glSetFragmentShaderConstantATI, 866) - GL_STUB(glPointParameteriNV, 867) - GL_STUB(glPointParameterivNV, 868) - GL_STUB(gl_dispatch_stub_869, 869) - HIDDEN(gl_dispatch_stub_869) - GL_STUB(gl_dispatch_stub_870, 870) - HIDDEN(gl_dispatch_stub_870) + GL_STUB(gl_dispatch_stub_789, 789) + HIDDEN(gl_dispatch_stub_789) + GL_STUB(gl_dispatch_stub_790, 790) + HIDDEN(gl_dispatch_stub_790) + GL_STUB(glAreProgramsResidentNV, 791) + GL_STUB(glBindProgramNV, 792) + GL_STUB(glDeleteProgramsNV, 793) + GL_STUB(glExecuteProgramNV, 794) + GL_STUB(glGenProgramsNV, 795) + GL_STUB(glGetProgramParameterdvNV, 796) + GL_STUB(glGetProgramParameterfvNV, 797) + GL_STUB(glGetProgramStringNV, 798) + GL_STUB(glGetProgramivNV, 799) + GL_STUB(glGetTrackMatrixivNV, 800) + GL_STUB(glGetVertexAttribPointervNV, 801) + GL_STUB(glGetVertexAttribdvNV, 802) + GL_STUB(glGetVertexAttribfvNV, 803) + GL_STUB(glGetVertexAttribivNV, 804) + GL_STUB(glIsProgramNV, 805) + GL_STUB(glLoadProgramNV, 806) + GL_STUB(glProgramParameters4dvNV, 807) + GL_STUB(glProgramParameters4fvNV, 808) + GL_STUB(glRequestResidentProgramsNV, 809) + GL_STUB(glTrackMatrixNV, 810) + GL_STUB(glVertexAttrib1dNV, 811) + GL_STUB(glVertexAttrib1dvNV, 812) + GL_STUB(glVertexAttrib1fNV, 813) + GL_STUB(glVertexAttrib1fvNV, 814) + GL_STUB(glVertexAttrib1sNV, 815) + GL_STUB(glVertexAttrib1svNV, 816) + GL_STUB(glVertexAttrib2dNV, 817) + GL_STUB(glVertexAttrib2dvNV, 818) + GL_STUB(glVertexAttrib2fNV, 819) + GL_STUB(glVertexAttrib2fvNV, 820) + GL_STUB(glVertexAttrib2sNV, 821) + GL_STUB(glVertexAttrib2svNV, 822) + GL_STUB(glVertexAttrib3dNV, 823) + GL_STUB(glVertexAttrib3dvNV, 824) + GL_STUB(glVertexAttrib3fNV, 825) + GL_STUB(glVertexAttrib3fvNV, 826) + GL_STUB(glVertexAttrib3sNV, 827) + GL_STUB(glVertexAttrib3svNV, 828) + GL_STUB(glVertexAttrib4dNV, 829) + GL_STUB(glVertexAttrib4dvNV, 830) + GL_STUB(glVertexAttrib4fNV, 831) + GL_STUB(glVertexAttrib4fvNV, 832) + GL_STUB(glVertexAttrib4sNV, 833) + GL_STUB(glVertexAttrib4svNV, 834) + GL_STUB(glVertexAttrib4ubNV, 835) + GL_STUB(glVertexAttrib4ubvNV, 836) + GL_STUB(glVertexAttribPointerNV, 837) + GL_STUB(glVertexAttribs1dvNV, 838) + GL_STUB(glVertexAttribs1fvNV, 839) + GL_STUB(glVertexAttribs1svNV, 840) + GL_STUB(glVertexAttribs2dvNV, 841) + GL_STUB(glVertexAttribs2fvNV, 842) + GL_STUB(glVertexAttribs2svNV, 843) + GL_STUB(glVertexAttribs3dvNV, 844) + GL_STUB(glVertexAttribs3fvNV, 845) + GL_STUB(glVertexAttribs3svNV, 846) + GL_STUB(glVertexAttribs4dvNV, 847) + GL_STUB(glVertexAttribs4fvNV, 848) + GL_STUB(glVertexAttribs4svNV, 849) + GL_STUB(glVertexAttribs4ubvNV, 850) + GL_STUB(glGetTexBumpParameterfvATI, 851) + GL_STUB(glGetTexBumpParameterivATI, 852) + GL_STUB(glTexBumpParameterfvATI, 853) + GL_STUB(glTexBumpParameterivATI, 854) + GL_STUB(glAlphaFragmentOp1ATI, 855) + GL_STUB(glAlphaFragmentOp2ATI, 856) + GL_STUB(glAlphaFragmentOp3ATI, 857) + GL_STUB(glBeginFragmentShaderATI, 858) + GL_STUB(glBindFragmentShaderATI, 859) + GL_STUB(glColorFragmentOp1ATI, 860) + GL_STUB(glColorFragmentOp2ATI, 861) + GL_STUB(glColorFragmentOp3ATI, 862) + GL_STUB(glDeleteFragmentShaderATI, 863) + GL_STUB(glEndFragmentShaderATI, 864) + GL_STUB(glGenFragmentShadersATI, 865) + GL_STUB(glPassTexCoordATI, 866) + GL_STUB(glSampleMapATI, 867) + GL_STUB(glSetFragmentShaderConstantATI, 868) + GL_STUB(glPointParameteriNV, 869) + GL_STUB(glPointParameterivNV, 870) GL_STUB(gl_dispatch_stub_871, 871) HIDDEN(gl_dispatch_stub_871) GL_STUB(gl_dispatch_stub_872, 872) HIDDEN(gl_dispatch_stub_872) GL_STUB(gl_dispatch_stub_873, 873) HIDDEN(gl_dispatch_stub_873) - GL_STUB(glGetProgramNamedParameterdvNV, 874) - GL_STUB(glGetProgramNamedParameterfvNV, 875) - GL_STUB(glProgramNamedParameter4dNV, 876) - GL_STUB(glProgramNamedParameter4dvNV, 877) - GL_STUB(glProgramNamedParameter4fNV, 878) - GL_STUB(glProgramNamedParameter4fvNV, 879) - GL_STUB(glPrimitiveRestartIndexNV, 880) - GL_STUB(glPrimitiveRestartNV, 881) - GL_STUB(gl_dispatch_stub_882, 882) - HIDDEN(gl_dispatch_stub_882) - GL_STUB(gl_dispatch_stub_883, 883) - HIDDEN(gl_dispatch_stub_883) - GL_STUB(glBindFramebufferEXT, 884) - GL_STUB(glBindRenderbufferEXT, 885) - GL_STUB(glCheckFramebufferStatusEXT, 886) - GL_STUB(glDeleteFramebuffersEXT, 887) - GL_STUB(glDeleteRenderbuffersEXT, 888) - GL_STUB(glFramebufferRenderbufferEXT, 889) - GL_STUB(glFramebufferTexture1DEXT, 890) - GL_STUB(glFramebufferTexture2DEXT, 891) - GL_STUB(glFramebufferTexture3DEXT, 892) - GL_STUB(glGenFramebuffersEXT, 893) - GL_STUB(glGenRenderbuffersEXT, 894) - GL_STUB(glGenerateMipmapEXT, 895) - GL_STUB(glGetFramebufferAttachmentParameterivEXT, 896) - GL_STUB(glGetRenderbufferParameterivEXT, 897) - GL_STUB(glIsFramebufferEXT, 898) - GL_STUB(glIsRenderbufferEXT, 899) - GL_STUB(glRenderbufferStorageEXT, 900) - GL_STUB(gl_dispatch_stub_901, 901) - HIDDEN(gl_dispatch_stub_901) - GL_STUB(gl_dispatch_stub_902, 902) - HIDDEN(gl_dispatch_stub_902) + GL_STUB(gl_dispatch_stub_874, 874) + HIDDEN(gl_dispatch_stub_874) + GL_STUB(gl_dispatch_stub_875, 875) + HIDDEN(gl_dispatch_stub_875) + GL_STUB(glGetProgramNamedParameterdvNV, 876) + GL_STUB(glGetProgramNamedParameterfvNV, 877) + GL_STUB(glProgramNamedParameter4dNV, 878) + GL_STUB(glProgramNamedParameter4dvNV, 879) + GL_STUB(glProgramNamedParameter4fNV, 880) + GL_STUB(glProgramNamedParameter4fvNV, 881) + GL_STUB(glPrimitiveRestartIndexNV, 882) + GL_STUB(glPrimitiveRestartNV, 883) + GL_STUB(gl_dispatch_stub_884, 884) + HIDDEN(gl_dispatch_stub_884) + GL_STUB(gl_dispatch_stub_885, 885) + HIDDEN(gl_dispatch_stub_885) + GL_STUB(glBindFramebufferEXT, 886) + GL_STUB(glBindRenderbufferEXT, 887) + GL_STUB(glCheckFramebufferStatusEXT, 888) + GL_STUB(glDeleteFramebuffersEXT, 889) + GL_STUB(glDeleteRenderbuffersEXT, 890) + GL_STUB(glFramebufferRenderbufferEXT, 891) + GL_STUB(glFramebufferTexture1DEXT, 892) + GL_STUB(glFramebufferTexture2DEXT, 893) + GL_STUB(glFramebufferTexture3DEXT, 894) + GL_STUB(glGenFramebuffersEXT, 895) + GL_STUB(glGenRenderbuffersEXT, 896) + GL_STUB(glGenerateMipmapEXT, 897) + GL_STUB(glGetFramebufferAttachmentParameterivEXT, 898) + GL_STUB(glGetRenderbufferParameterivEXT, 899) + GL_STUB(glIsFramebufferEXT, 900) + GL_STUB(glIsRenderbufferEXT, 901) + GL_STUB(glRenderbufferStorageEXT, 902) GL_STUB(gl_dispatch_stub_903, 903) HIDDEN(gl_dispatch_stub_903) - GL_STUB(glBindFragDataLocationEXT, 904) - GL_STUB(glGetFragDataLocationEXT, 905) - GL_STUB(glGetUniformuivEXT, 906) - GL_STUB(glGetVertexAttribIivEXT, 907) - GL_STUB(glGetVertexAttribIuivEXT, 908) - GL_STUB(glUniform1uiEXT, 909) - GL_STUB(glUniform1uivEXT, 910) - GL_STUB(glUniform2uiEXT, 911) - GL_STUB(glUniform2uivEXT, 912) - GL_STUB(glUniform3uiEXT, 913) - GL_STUB(glUniform3uivEXT, 914) - GL_STUB(glUniform4uiEXT, 915) - GL_STUB(glUniform4uivEXT, 916) - GL_STUB(glVertexAttribI1iEXT, 917) - GL_STUB(glVertexAttribI1ivEXT, 918) - GL_STUB(glVertexAttribI1uiEXT, 919) - GL_STUB(glVertexAttribI1uivEXT, 920) - GL_STUB(glVertexAttribI2iEXT, 921) - GL_STUB(glVertexAttribI2ivEXT, 922) - GL_STUB(glVertexAttribI2uiEXT, 923) - GL_STUB(glVertexAttribI2uivEXT, 924) - GL_STUB(glVertexAttribI3iEXT, 925) - GL_STUB(glVertexAttribI3ivEXT, 926) - GL_STUB(glVertexAttribI3uiEXT, 927) - GL_STUB(glVertexAttribI3uivEXT, 928) - GL_STUB(glVertexAttribI4bvEXT, 929) - GL_STUB(glVertexAttribI4iEXT, 930) - GL_STUB(glVertexAttribI4ivEXT, 931) - GL_STUB(glVertexAttribI4svEXT, 932) - GL_STUB(glVertexAttribI4ubvEXT, 933) - GL_STUB(glVertexAttribI4uiEXT, 934) - GL_STUB(glVertexAttribI4uivEXT, 935) - GL_STUB(glVertexAttribI4usvEXT, 936) - GL_STUB(glVertexAttribIPointerEXT, 937) - GL_STUB(glFramebufferTextureLayerEXT, 938) - GL_STUB(glColorMaskIndexedEXT, 939) - GL_STUB(glDisableIndexedEXT, 940) - GL_STUB(glEnableIndexedEXT, 941) - GL_STUB(glGetBooleanIndexedvEXT, 942) - GL_STUB(glGetIntegerIndexedvEXT, 943) - GL_STUB(glIsEnabledIndexedEXT, 944) - GL_STUB(glClearColorIiEXT, 945) - GL_STUB(glClearColorIuiEXT, 946) - GL_STUB(glGetTexParameterIivEXT, 947) - GL_STUB(glGetTexParameterIuivEXT, 948) - GL_STUB(glTexParameterIivEXT, 949) - GL_STUB(glTexParameterIuivEXT, 950) - GL_STUB(glBeginConditionalRenderNV, 951) - GL_STUB(glEndConditionalRenderNV, 952) - GL_STUB(glBeginTransformFeedbackEXT, 953) - GL_STUB(glBindBufferBaseEXT, 954) - GL_STUB(glBindBufferOffsetEXT, 955) - GL_STUB(glBindBufferRangeEXT, 956) - GL_STUB(glEndTransformFeedbackEXT, 957) - GL_STUB(glGetTransformFeedbackVaryingEXT, 958) - GL_STUB(glTransformFeedbackVaryingsEXT, 959) - GL_STUB(glProvokingVertexEXT, 960) - GL_STUB(gl_dispatch_stub_961, 961) - HIDDEN(gl_dispatch_stub_961) - GL_STUB(gl_dispatch_stub_962, 962) - HIDDEN(gl_dispatch_stub_962) - GL_STUB(glGetObjectParameterivAPPLE, 963) - GL_STUB(glObjectPurgeableAPPLE, 964) - GL_STUB(glObjectUnpurgeableAPPLE, 965) - GL_STUB(glActiveProgramEXT, 966) - GL_STUB(glCreateShaderProgramEXT, 967) - GL_STUB(glUseShaderProgramEXT, 968) - GL_STUB(glTextureBarrierNV, 969) - GL_STUB(gl_dispatch_stub_970, 970) - HIDDEN(gl_dispatch_stub_970) - GL_STUB(gl_dispatch_stub_971, 971) - HIDDEN(gl_dispatch_stub_971) + GL_STUB(gl_dispatch_stub_904, 904) + HIDDEN(gl_dispatch_stub_904) + GL_STUB(gl_dispatch_stub_905, 905) + HIDDEN(gl_dispatch_stub_905) + GL_STUB(glBindFragDataLocationEXT, 906) + GL_STUB(glGetFragDataLocationEXT, 907) + GL_STUB(glGetUniformuivEXT, 908) + GL_STUB(glGetVertexAttribIivEXT, 909) + GL_STUB(glGetVertexAttribIuivEXT, 910) + GL_STUB(glUniform1uiEXT, 911) + GL_STUB(glUniform1uivEXT, 912) + GL_STUB(glUniform2uiEXT, 913) + GL_STUB(glUniform2uivEXT, 914) + GL_STUB(glUniform3uiEXT, 915) + GL_STUB(glUniform3uivEXT, 916) + GL_STUB(glUniform4uiEXT, 917) + GL_STUB(glUniform4uivEXT, 918) + GL_STUB(glVertexAttribI1iEXT, 919) + GL_STUB(glVertexAttribI1ivEXT, 920) + GL_STUB(glVertexAttribI1uiEXT, 921) + GL_STUB(glVertexAttribI1uivEXT, 922) + GL_STUB(glVertexAttribI2iEXT, 923) + GL_STUB(glVertexAttribI2ivEXT, 924) + GL_STUB(glVertexAttribI2uiEXT, 925) + GL_STUB(glVertexAttribI2uivEXT, 926) + GL_STUB(glVertexAttribI3iEXT, 927) + GL_STUB(glVertexAttribI3ivEXT, 928) + GL_STUB(glVertexAttribI3uiEXT, 929) + GL_STUB(glVertexAttribI3uivEXT, 930) + GL_STUB(glVertexAttribI4bvEXT, 931) + GL_STUB(glVertexAttribI4iEXT, 932) + GL_STUB(glVertexAttribI4ivEXT, 933) + GL_STUB(glVertexAttribI4svEXT, 934) + GL_STUB(glVertexAttribI4ubvEXT, 935) + GL_STUB(glVertexAttribI4uiEXT, 936) + GL_STUB(glVertexAttribI4uivEXT, 937) + GL_STUB(glVertexAttribI4usvEXT, 938) + GL_STUB(glVertexAttribIPointerEXT, 939) + GL_STUB(glFramebufferTextureLayerEXT, 940) + GL_STUB(glColorMaskIndexedEXT, 941) + GL_STUB(glDisableIndexedEXT, 942) + GL_STUB(glEnableIndexedEXT, 943) + GL_STUB(glGetBooleanIndexedvEXT, 944) + GL_STUB(glGetIntegerIndexedvEXT, 945) + GL_STUB(glIsEnabledIndexedEXT, 946) + GL_STUB(glClearColorIiEXT, 947) + GL_STUB(glClearColorIuiEXT, 948) + GL_STUB(glGetTexParameterIivEXT, 949) + GL_STUB(glGetTexParameterIuivEXT, 950) + GL_STUB(glTexParameterIivEXT, 951) + GL_STUB(glTexParameterIuivEXT, 952) + GL_STUB(glBeginConditionalRenderNV, 953) + GL_STUB(glEndConditionalRenderNV, 954) + GL_STUB(glBeginTransformFeedbackEXT, 955) + GL_STUB(glBindBufferBaseEXT, 956) + GL_STUB(glBindBufferOffsetEXT, 957) + GL_STUB(glBindBufferRangeEXT, 958) + GL_STUB(glEndTransformFeedbackEXT, 959) + GL_STUB(glGetTransformFeedbackVaryingEXT, 960) + GL_STUB(glTransformFeedbackVaryingsEXT, 961) + GL_STUB(glProvokingVertexEXT, 962) + GL_STUB(gl_dispatch_stub_963, 963) + HIDDEN(gl_dispatch_stub_963) + GL_STUB(gl_dispatch_stub_964, 964) + HIDDEN(gl_dispatch_stub_964) + GL_STUB(glGetObjectParameterivAPPLE, 965) + GL_STUB(glObjectPurgeableAPPLE, 966) + GL_STUB(glObjectUnpurgeableAPPLE, 967) + GL_STUB(glActiveProgramEXT, 968) + GL_STUB(glCreateShaderProgramEXT, 969) + GL_STUB(glUseShaderProgramEXT, 970) + GL_STUB(glTextureBarrierNV, 971) GL_STUB(gl_dispatch_stub_972, 972) HIDDEN(gl_dispatch_stub_972) GL_STUB(gl_dispatch_stub_973, 973) HIDDEN(gl_dispatch_stub_973) GL_STUB(gl_dispatch_stub_974, 974) HIDDEN(gl_dispatch_stub_974) - GL_STUB(glEGLImageTargetRenderbufferStorageOES, 975) - GL_STUB(glEGLImageTargetTexture2DOES, 976) + GL_STUB(gl_dispatch_stub_975, 975) + HIDDEN(gl_dispatch_stub_975) + GL_STUB(gl_dispatch_stub_976, 976) + HIDDEN(gl_dispatch_stub_976) + GL_STUB(glEGLImageTargetRenderbufferStorageOES, 977) + GL_STUB(glEGLImageTargetTexture2DOES, 978) GL_STUB_ALIAS(glArrayElementEXT, glArrayElement) GL_STUB_ALIAS(glBindTextureEXT, glBindTexture) GL_STUB_ALIAS(glDrawArraysEXT, glDrawArrays) diff --git a/src/mapi/glapi/glapi_x86-64.S b/src/mapi/glapi/glapi_x86-64.S index 8ea2a3b440b..afcd2638f27 100644 --- a/src/mapi/glapi/glapi_x86-64.S +++ b/src/mapi/glapi/glapi_x86-64.S @@ -22713,9 +22713,9 @@ GL_PREFIX(BlendFunciARB): .size GL_PREFIX(BlendFunciARB), .-GL_PREFIX(BlendFunciARB) .p2align 4,,15 - .globl GL_PREFIX(BindSampler) - .type GL_PREFIX(BindSampler), @function -GL_PREFIX(BindSampler): + .globl GL_PREFIX(BindFragDataLocationIndexed) + .type GL_PREFIX(BindFragDataLocationIndexed), @function +GL_PREFIX(BindFragDataLocationIndexed): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT movq 4808(%rax), %r11 @@ -22723,9 +22723,13 @@ GL_PREFIX(BindSampler): #elif defined(PTHREADS) pushq %rdi pushq %rsi + pushq %rdx + pushq %rcx pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp + popq %rcx + popq %rdx popq %rsi popq %rdi movq 4808(%rax), %r11 @@ -22739,20 +22743,24 @@ GL_PREFIX(BindSampler): 1: pushq %rdi pushq %rsi + pushq %rdx + pushq %rcx pushq %rbp call _glapi_get_dispatch popq %rbp + popq %rcx + popq %rdx popq %rsi popq %rdi movq 4808(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(BindSampler), .-GL_PREFIX(BindSampler) + .size GL_PREFIX(BindFragDataLocationIndexed), .-GL_PREFIX(BindFragDataLocationIndexed) .p2align 4,,15 - .globl GL_PREFIX(DeleteSamplers) - .type GL_PREFIX(DeleteSamplers), @function -GL_PREFIX(DeleteSamplers): + .globl GL_PREFIX(GetFragDataIndex) + .type GL_PREFIX(GetFragDataIndex), @function +GL_PREFIX(GetFragDataIndex): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT movq 4816(%rax), %r11 @@ -22784,12 +22792,12 @@ GL_PREFIX(DeleteSamplers): movq 4816(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(DeleteSamplers), .-GL_PREFIX(DeleteSamplers) + .size GL_PREFIX(GetFragDataIndex), .-GL_PREFIX(GetFragDataIndex) .p2align 4,,15 - .globl GL_PREFIX(GenSamplers) - .type GL_PREFIX(GenSamplers), @function -GL_PREFIX(GenSamplers): + .globl GL_PREFIX(BindSampler) + .type GL_PREFIX(BindSampler), @function +GL_PREFIX(BindSampler): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT movq 4824(%rax), %r11 @@ -22820,6 +22828,80 @@ GL_PREFIX(GenSamplers): popq %rdi movq 4824(%rax), %r11 jmp *%r11 +#endif /* defined(GLX_USE_TLS) */ + .size GL_PREFIX(BindSampler), .-GL_PREFIX(BindSampler) + + .p2align 4,,15 + .globl GL_PREFIX(DeleteSamplers) + .type GL_PREFIX(DeleteSamplers), @function +GL_PREFIX(DeleteSamplers): +#if defined(GLX_USE_TLS) + call _x86_64_get_dispatch@PLT + movq 4832(%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 4832(%rax), %r11 + jmp *%r11 +#else + movq _glapi_Dispatch(%rip), %rax + testq %rax, %rax + je 1f + movq 4832(%rax), %r11 + jmp *%r11 +1: + pushq %rdi + pushq %rsi + pushq %rbp + call _glapi_get_dispatch + popq %rbp + popq %rsi + popq %rdi + movq 4832(%rax), %r11 + jmp *%r11 +#endif /* defined(GLX_USE_TLS) */ + .size GL_PREFIX(DeleteSamplers), .-GL_PREFIX(DeleteSamplers) + + .p2align 4,,15 + .globl GL_PREFIX(GenSamplers) + .type GL_PREFIX(GenSamplers), @function +GL_PREFIX(GenSamplers): +#if defined(GLX_USE_TLS) + call _x86_64_get_dispatch@PLT + movq 4840(%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 4840(%rax), %r11 + jmp *%r11 +#else + movq _glapi_Dispatch(%rip), %rax + testq %rax, %rax + je 1f + movq 4840(%rax), %r11 + jmp *%r11 +1: + pushq %rdi + pushq %rsi + pushq %rbp + call _glapi_get_dispatch + popq %rbp + popq %rsi + popq %rdi + movq 4840(%rax), %r11 + jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenSamplers), .-GL_PREFIX(GenSamplers) @@ -22829,7 +22911,7 @@ GL_PREFIX(GenSamplers): GL_PREFIX(GetSamplerParameterIiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4832(%rax), %r11 + movq 4848(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -22839,13 +22921,13 @@ GL_PREFIX(GetSamplerParameterIiv): popq %rdx popq %rsi popq %rdi - movq 4832(%rax), %r11 + movq 4848(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4832(%rax), %r11 + movq 4848(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -22855,7 +22937,7 @@ GL_PREFIX(GetSamplerParameterIiv): popq %rdx popq %rsi popq %rdi - movq 4832(%rax), %r11 + movq 4848(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetSamplerParameterIiv), .-GL_PREFIX(GetSamplerParameterIiv) @@ -22866,7 +22948,7 @@ GL_PREFIX(GetSamplerParameterIiv): GL_PREFIX(GetSamplerParameterIuiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4840(%rax), %r11 + movq 4856(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -22876,13 +22958,13 @@ GL_PREFIX(GetSamplerParameterIuiv): popq %rdx popq %rsi popq %rdi - movq 4840(%rax), %r11 + movq 4856(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4840(%rax), %r11 + movq 4856(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -22892,7 +22974,7 @@ GL_PREFIX(GetSamplerParameterIuiv): popq %rdx popq %rsi popq %rdi - movq 4840(%rax), %r11 + movq 4856(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetSamplerParameterIuiv), .-GL_PREFIX(GetSamplerParameterIuiv) @@ -22903,7 +22985,7 @@ GL_PREFIX(GetSamplerParameterIuiv): GL_PREFIX(GetSamplerParameterfv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4848(%rax), %r11 + movq 4864(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -22913,13 +22995,13 @@ GL_PREFIX(GetSamplerParameterfv): popq %rdx popq %rsi popq %rdi - movq 4848(%rax), %r11 + movq 4864(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4848(%rax), %r11 + movq 4864(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -22929,7 +23011,7 @@ GL_PREFIX(GetSamplerParameterfv): popq %rdx popq %rsi popq %rdi - movq 4848(%rax), %r11 + movq 4864(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetSamplerParameterfv), .-GL_PREFIX(GetSamplerParameterfv) @@ -22940,7 +23022,7 @@ GL_PREFIX(GetSamplerParameterfv): GL_PREFIX(GetSamplerParameteriv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4856(%rax), %r11 + movq 4872(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -22950,13 +23032,13 @@ GL_PREFIX(GetSamplerParameteriv): popq %rdx popq %rsi popq %rdi - movq 4856(%rax), %r11 + movq 4872(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4856(%rax), %r11 + movq 4872(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -22966,7 +23048,7 @@ GL_PREFIX(GetSamplerParameteriv): popq %rdx popq %rsi popq %rdi - movq 4856(%rax), %r11 + movq 4872(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetSamplerParameteriv), .-GL_PREFIX(GetSamplerParameteriv) @@ -22977,25 +23059,25 @@ GL_PREFIX(GetSamplerParameteriv): GL_PREFIX(IsSampler): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4864(%rax), %r11 + movq 4880(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 4864(%rax), %r11 + movq 4880(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4864(%rax), %r11 + movq 4880(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 4864(%rax), %r11 + movq 4880(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IsSampler), .-GL_PREFIX(IsSampler) @@ -23006,7 +23088,7 @@ GL_PREFIX(IsSampler): GL_PREFIX(SamplerParameterIiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4872(%rax), %r11 + movq 4888(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23016,13 +23098,13 @@ GL_PREFIX(SamplerParameterIiv): popq %rdx popq %rsi popq %rdi - movq 4872(%rax), %r11 + movq 4888(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4872(%rax), %r11 + movq 4888(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23032,7 +23114,7 @@ GL_PREFIX(SamplerParameterIiv): popq %rdx popq %rsi popq %rdi - movq 4872(%rax), %r11 + movq 4888(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SamplerParameterIiv), .-GL_PREFIX(SamplerParameterIiv) @@ -23043,7 +23125,7 @@ GL_PREFIX(SamplerParameterIiv): GL_PREFIX(SamplerParameterIuiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4880(%rax), %r11 + movq 4896(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23053,13 +23135,13 @@ GL_PREFIX(SamplerParameterIuiv): popq %rdx popq %rsi popq %rdi - movq 4880(%rax), %r11 + movq 4896(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4880(%rax), %r11 + movq 4896(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23069,7 +23151,7 @@ GL_PREFIX(SamplerParameterIuiv): popq %rdx popq %rsi popq %rdi - movq 4880(%rax), %r11 + movq 4896(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SamplerParameterIuiv), .-GL_PREFIX(SamplerParameterIuiv) @@ -23080,7 +23162,7 @@ GL_PREFIX(SamplerParameterIuiv): GL_PREFIX(SamplerParameterf): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4888(%rax), %r11 + movq 4904(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -23092,13 +23174,13 @@ GL_PREFIX(SamplerParameterf): movq 8(%rsp), %rsi movq (%rsp), %rdi addq $24, %rsp - movq 4888(%rax), %r11 + movq 4904(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4888(%rax), %r11 + movq 4904(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -23110,7 +23192,7 @@ GL_PREFIX(SamplerParameterf): movq 8(%rsp), %rsi movq (%rsp), %rdi addq $24, %rsp - movq 4888(%rax), %r11 + movq 4904(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SamplerParameterf), .-GL_PREFIX(SamplerParameterf) @@ -23121,7 +23203,7 @@ GL_PREFIX(SamplerParameterf): GL_PREFIX(SamplerParameterfv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4896(%rax), %r11 + movq 4912(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23131,13 +23213,13 @@ GL_PREFIX(SamplerParameterfv): popq %rdx popq %rsi popq %rdi - movq 4896(%rax), %r11 + movq 4912(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4896(%rax), %r11 + movq 4912(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23147,7 +23229,7 @@ GL_PREFIX(SamplerParameterfv): popq %rdx popq %rsi popq %rdi - movq 4896(%rax), %r11 + movq 4912(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SamplerParameterfv), .-GL_PREFIX(SamplerParameterfv) @@ -23158,7 +23240,7 @@ GL_PREFIX(SamplerParameterfv): GL_PREFIX(SamplerParameteri): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4904(%rax), %r11 + movq 4920(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23168,13 +23250,13 @@ GL_PREFIX(SamplerParameteri): popq %rdx popq %rsi popq %rdi - movq 4904(%rax), %r11 + movq 4920(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4904(%rax), %r11 + movq 4920(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23184,7 +23266,7 @@ GL_PREFIX(SamplerParameteri): popq %rdx popq %rsi popq %rdi - movq 4904(%rax), %r11 + movq 4920(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SamplerParameteri), .-GL_PREFIX(SamplerParameteri) @@ -23195,7 +23277,7 @@ GL_PREFIX(SamplerParameteri): GL_PREFIX(SamplerParameteriv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4912(%rax), %r11 + movq 4928(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23205,13 +23287,13 @@ GL_PREFIX(SamplerParameteriv): popq %rdx popq %rsi popq %rdi - movq 4912(%rax), %r11 + movq 4928(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4912(%rax), %r11 + movq 4928(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23221,7 +23303,7 @@ GL_PREFIX(SamplerParameteriv): popq %rdx popq %rsi popq %rdi - movq 4912(%rax), %r11 + movq 4928(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SamplerParameteriv), .-GL_PREFIX(SamplerParameteriv) @@ -23232,7 +23314,7 @@ GL_PREFIX(SamplerParameteriv): GL_PREFIX(ColorP3ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4920(%rax), %r11 + movq 4936(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23242,13 +23324,13 @@ GL_PREFIX(ColorP3ui): popq %rbp popq %rsi popq %rdi - movq 4920(%rax), %r11 + movq 4936(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4920(%rax), %r11 + movq 4936(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23258,7 +23340,7 @@ GL_PREFIX(ColorP3ui): popq %rbp popq %rsi popq %rdi - movq 4920(%rax), %r11 + movq 4936(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorP3ui), .-GL_PREFIX(ColorP3ui) @@ -23269,7 +23351,7 @@ GL_PREFIX(ColorP3ui): GL_PREFIX(ColorP3uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4928(%rax), %r11 + movq 4944(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23279,13 +23361,13 @@ GL_PREFIX(ColorP3uiv): popq %rbp popq %rsi popq %rdi - movq 4928(%rax), %r11 + movq 4944(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4928(%rax), %r11 + movq 4944(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23295,7 +23377,7 @@ GL_PREFIX(ColorP3uiv): popq %rbp popq %rsi popq %rdi - movq 4928(%rax), %r11 + movq 4944(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorP3uiv), .-GL_PREFIX(ColorP3uiv) @@ -23306,7 +23388,7 @@ GL_PREFIX(ColorP3uiv): GL_PREFIX(ColorP4ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4936(%rax), %r11 + movq 4952(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23316,13 +23398,13 @@ GL_PREFIX(ColorP4ui): popq %rbp popq %rsi popq %rdi - movq 4936(%rax), %r11 + movq 4952(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4936(%rax), %r11 + movq 4952(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23332,7 +23414,7 @@ GL_PREFIX(ColorP4ui): popq %rbp popq %rsi popq %rdi - movq 4936(%rax), %r11 + movq 4952(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorP4ui), .-GL_PREFIX(ColorP4ui) @@ -23343,7 +23425,7 @@ GL_PREFIX(ColorP4ui): GL_PREFIX(ColorP4uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4944(%rax), %r11 + movq 4960(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23353,13 +23435,13 @@ GL_PREFIX(ColorP4uiv): popq %rbp popq %rsi popq %rdi - movq 4944(%rax), %r11 + movq 4960(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4944(%rax), %r11 + movq 4960(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23369,7 +23451,7 @@ GL_PREFIX(ColorP4uiv): popq %rbp popq %rsi popq %rdi - movq 4944(%rax), %r11 + movq 4960(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorP4uiv), .-GL_PREFIX(ColorP4uiv) @@ -23380,7 +23462,7 @@ GL_PREFIX(ColorP4uiv): GL_PREFIX(MultiTexCoordP1ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4952(%rax), %r11 + movq 4968(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23390,13 +23472,13 @@ GL_PREFIX(MultiTexCoordP1ui): popq %rdx popq %rsi popq %rdi - movq 4952(%rax), %r11 + movq 4968(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4952(%rax), %r11 + movq 4968(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23406,7 +23488,7 @@ GL_PREFIX(MultiTexCoordP1ui): popq %rdx popq %rsi popq %rdi - movq 4952(%rax), %r11 + movq 4968(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MultiTexCoordP1ui), .-GL_PREFIX(MultiTexCoordP1ui) @@ -23417,7 +23499,7 @@ GL_PREFIX(MultiTexCoordP1ui): GL_PREFIX(MultiTexCoordP1uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4960(%rax), %r11 + movq 4976(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23427,13 +23509,13 @@ GL_PREFIX(MultiTexCoordP1uiv): popq %rdx popq %rsi popq %rdi - movq 4960(%rax), %r11 + movq 4976(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4960(%rax), %r11 + movq 4976(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23443,7 +23525,7 @@ GL_PREFIX(MultiTexCoordP1uiv): popq %rdx popq %rsi popq %rdi - movq 4960(%rax), %r11 + movq 4976(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MultiTexCoordP1uiv), .-GL_PREFIX(MultiTexCoordP1uiv) @@ -23454,7 +23536,7 @@ GL_PREFIX(MultiTexCoordP1uiv): GL_PREFIX(MultiTexCoordP2ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4968(%rax), %r11 + movq 4984(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23464,13 +23546,13 @@ GL_PREFIX(MultiTexCoordP2ui): popq %rdx popq %rsi popq %rdi - movq 4968(%rax), %r11 + movq 4984(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4968(%rax), %r11 + movq 4984(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23480,7 +23562,7 @@ GL_PREFIX(MultiTexCoordP2ui): popq %rdx popq %rsi popq %rdi - movq 4968(%rax), %r11 + movq 4984(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MultiTexCoordP2ui), .-GL_PREFIX(MultiTexCoordP2ui) @@ -23491,7 +23573,7 @@ GL_PREFIX(MultiTexCoordP2ui): GL_PREFIX(MultiTexCoordP2uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4976(%rax), %r11 + movq 4992(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23501,13 +23583,13 @@ GL_PREFIX(MultiTexCoordP2uiv): popq %rdx popq %rsi popq %rdi - movq 4976(%rax), %r11 + movq 4992(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4976(%rax), %r11 + movq 4992(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23517,7 +23599,7 @@ GL_PREFIX(MultiTexCoordP2uiv): popq %rdx popq %rsi popq %rdi - movq 4976(%rax), %r11 + movq 4992(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MultiTexCoordP2uiv), .-GL_PREFIX(MultiTexCoordP2uiv) @@ -23528,7 +23610,7 @@ GL_PREFIX(MultiTexCoordP2uiv): GL_PREFIX(MultiTexCoordP3ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4984(%rax), %r11 + movq 5000(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23538,13 +23620,13 @@ GL_PREFIX(MultiTexCoordP3ui): popq %rdx popq %rsi popq %rdi - movq 4984(%rax), %r11 + movq 5000(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4984(%rax), %r11 + movq 5000(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23554,7 +23636,7 @@ GL_PREFIX(MultiTexCoordP3ui): popq %rdx popq %rsi popq %rdi - movq 4984(%rax), %r11 + movq 5000(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MultiTexCoordP3ui), .-GL_PREFIX(MultiTexCoordP3ui) @@ -23565,7 +23647,7 @@ GL_PREFIX(MultiTexCoordP3ui): GL_PREFIX(MultiTexCoordP3uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 4992(%rax), %r11 + movq 5008(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23575,13 +23657,13 @@ GL_PREFIX(MultiTexCoordP3uiv): popq %rdx popq %rsi popq %rdi - movq 4992(%rax), %r11 + movq 5008(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 4992(%rax), %r11 + movq 5008(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23591,7 +23673,7 @@ GL_PREFIX(MultiTexCoordP3uiv): popq %rdx popq %rsi popq %rdi - movq 4992(%rax), %r11 + movq 5008(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MultiTexCoordP3uiv), .-GL_PREFIX(MultiTexCoordP3uiv) @@ -23602,7 +23684,7 @@ GL_PREFIX(MultiTexCoordP3uiv): GL_PREFIX(MultiTexCoordP4ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5000(%rax), %r11 + movq 5016(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23612,13 +23694,13 @@ GL_PREFIX(MultiTexCoordP4ui): popq %rdx popq %rsi popq %rdi - movq 5000(%rax), %r11 + movq 5016(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5000(%rax), %r11 + movq 5016(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23628,7 +23710,7 @@ GL_PREFIX(MultiTexCoordP4ui): popq %rdx popq %rsi popq %rdi - movq 5000(%rax), %r11 + movq 5016(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MultiTexCoordP4ui), .-GL_PREFIX(MultiTexCoordP4ui) @@ -23639,7 +23721,7 @@ GL_PREFIX(MultiTexCoordP4ui): GL_PREFIX(MultiTexCoordP4uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5008(%rax), %r11 + movq 5024(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23649,13 +23731,13 @@ GL_PREFIX(MultiTexCoordP4uiv): popq %rdx popq %rsi popq %rdi - movq 5008(%rax), %r11 + movq 5024(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5008(%rax), %r11 + movq 5024(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23665,7 +23747,7 @@ GL_PREFIX(MultiTexCoordP4uiv): popq %rdx popq %rsi popq %rdi - movq 5008(%rax), %r11 + movq 5024(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MultiTexCoordP4uiv), .-GL_PREFIX(MultiTexCoordP4uiv) @@ -23676,7 +23758,7 @@ GL_PREFIX(MultiTexCoordP4uiv): GL_PREFIX(NormalP3ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5016(%rax), %r11 + movq 5032(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23686,13 +23768,13 @@ GL_PREFIX(NormalP3ui): popq %rbp popq %rsi popq %rdi - movq 5016(%rax), %r11 + movq 5032(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5016(%rax), %r11 + movq 5032(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23702,7 +23784,7 @@ GL_PREFIX(NormalP3ui): popq %rbp popq %rsi popq %rdi - movq 5016(%rax), %r11 + movq 5032(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(NormalP3ui), .-GL_PREFIX(NormalP3ui) @@ -23713,7 +23795,7 @@ GL_PREFIX(NormalP3ui): GL_PREFIX(NormalP3uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5024(%rax), %r11 + movq 5040(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23723,13 +23805,13 @@ GL_PREFIX(NormalP3uiv): popq %rbp popq %rsi popq %rdi - movq 5024(%rax), %r11 + movq 5040(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5024(%rax), %r11 + movq 5040(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23739,7 +23821,7 @@ GL_PREFIX(NormalP3uiv): popq %rbp popq %rsi popq %rdi - movq 5024(%rax), %r11 + movq 5040(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(NormalP3uiv), .-GL_PREFIX(NormalP3uiv) @@ -23750,7 +23832,7 @@ GL_PREFIX(NormalP3uiv): GL_PREFIX(SecondaryColorP3ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5032(%rax), %r11 + movq 5048(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23760,13 +23842,13 @@ GL_PREFIX(SecondaryColorP3ui): popq %rbp popq %rsi popq %rdi - movq 5032(%rax), %r11 + movq 5048(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5032(%rax), %r11 + movq 5048(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23776,7 +23858,7 @@ GL_PREFIX(SecondaryColorP3ui): popq %rbp popq %rsi popq %rdi - movq 5032(%rax), %r11 + movq 5048(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColorP3ui), .-GL_PREFIX(SecondaryColorP3ui) @@ -23787,7 +23869,7 @@ GL_PREFIX(SecondaryColorP3ui): GL_PREFIX(SecondaryColorP3uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5040(%rax), %r11 + movq 5056(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23797,13 +23879,13 @@ GL_PREFIX(SecondaryColorP3uiv): popq %rbp popq %rsi popq %rdi - movq 5040(%rax), %r11 + movq 5056(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5040(%rax), %r11 + movq 5056(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23813,7 +23895,7 @@ GL_PREFIX(SecondaryColorP3uiv): popq %rbp popq %rsi popq %rdi - movq 5040(%rax), %r11 + movq 5056(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColorP3uiv), .-GL_PREFIX(SecondaryColorP3uiv) @@ -23824,7 +23906,7 @@ GL_PREFIX(SecondaryColorP3uiv): GL_PREFIX(TexCoordP1ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5048(%rax), %r11 + movq 5064(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23834,13 +23916,13 @@ GL_PREFIX(TexCoordP1ui): popq %rbp popq %rsi popq %rdi - movq 5048(%rax), %r11 + movq 5064(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5048(%rax), %r11 + movq 5064(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23850,7 +23932,7 @@ GL_PREFIX(TexCoordP1ui): popq %rbp popq %rsi popq %rdi - movq 5048(%rax), %r11 + movq 5064(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexCoordP1ui), .-GL_PREFIX(TexCoordP1ui) @@ -23861,7 +23943,7 @@ GL_PREFIX(TexCoordP1ui): GL_PREFIX(TexCoordP1uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5056(%rax), %r11 + movq 5072(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23871,13 +23953,13 @@ GL_PREFIX(TexCoordP1uiv): popq %rbp popq %rsi popq %rdi - movq 5056(%rax), %r11 + movq 5072(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5056(%rax), %r11 + movq 5072(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23887,7 +23969,7 @@ GL_PREFIX(TexCoordP1uiv): popq %rbp popq %rsi popq %rdi - movq 5056(%rax), %r11 + movq 5072(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexCoordP1uiv), .-GL_PREFIX(TexCoordP1uiv) @@ -23898,7 +23980,7 @@ GL_PREFIX(TexCoordP1uiv): GL_PREFIX(TexCoordP2ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5064(%rax), %r11 + movq 5080(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23908,13 +23990,13 @@ GL_PREFIX(TexCoordP2ui): popq %rbp popq %rsi popq %rdi - movq 5064(%rax), %r11 + movq 5080(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5064(%rax), %r11 + movq 5080(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23924,7 +24006,7 @@ GL_PREFIX(TexCoordP2ui): popq %rbp popq %rsi popq %rdi - movq 5064(%rax), %r11 + movq 5080(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexCoordP2ui), .-GL_PREFIX(TexCoordP2ui) @@ -23935,7 +24017,7 @@ GL_PREFIX(TexCoordP2ui): GL_PREFIX(TexCoordP2uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5072(%rax), %r11 + movq 5088(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23945,13 +24027,13 @@ GL_PREFIX(TexCoordP2uiv): popq %rbp popq %rsi popq %rdi - movq 5072(%rax), %r11 + movq 5088(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5072(%rax), %r11 + movq 5088(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23961,7 +24043,7 @@ GL_PREFIX(TexCoordP2uiv): popq %rbp popq %rsi popq %rdi - movq 5072(%rax), %r11 + movq 5088(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexCoordP2uiv), .-GL_PREFIX(TexCoordP2uiv) @@ -23972,7 +24054,7 @@ GL_PREFIX(TexCoordP2uiv): GL_PREFIX(TexCoordP3ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5080(%rax), %r11 + movq 5096(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -23982,13 +24064,13 @@ GL_PREFIX(TexCoordP3ui): popq %rbp popq %rsi popq %rdi - movq 5080(%rax), %r11 + movq 5096(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5080(%rax), %r11 + movq 5096(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -23998,7 +24080,7 @@ GL_PREFIX(TexCoordP3ui): popq %rbp popq %rsi popq %rdi - movq 5080(%rax), %r11 + movq 5096(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexCoordP3ui), .-GL_PREFIX(TexCoordP3ui) @@ -24009,7 +24091,7 @@ GL_PREFIX(TexCoordP3ui): GL_PREFIX(TexCoordP3uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5088(%rax), %r11 + movq 5104(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24019,13 +24101,13 @@ GL_PREFIX(TexCoordP3uiv): popq %rbp popq %rsi popq %rdi - movq 5088(%rax), %r11 + movq 5104(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5088(%rax), %r11 + movq 5104(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24035,7 +24117,7 @@ GL_PREFIX(TexCoordP3uiv): popq %rbp popq %rsi popq %rdi - movq 5088(%rax), %r11 + movq 5104(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexCoordP3uiv), .-GL_PREFIX(TexCoordP3uiv) @@ -24046,7 +24128,7 @@ GL_PREFIX(TexCoordP3uiv): GL_PREFIX(TexCoordP4ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5096(%rax), %r11 + movq 5112(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24056,13 +24138,13 @@ GL_PREFIX(TexCoordP4ui): popq %rbp popq %rsi popq %rdi - movq 5096(%rax), %r11 + movq 5112(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5096(%rax), %r11 + movq 5112(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24072,7 +24154,7 @@ GL_PREFIX(TexCoordP4ui): popq %rbp popq %rsi popq %rdi - movq 5096(%rax), %r11 + movq 5112(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexCoordP4ui), .-GL_PREFIX(TexCoordP4ui) @@ -24083,7 +24165,7 @@ GL_PREFIX(TexCoordP4ui): GL_PREFIX(TexCoordP4uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5104(%rax), %r11 + movq 5120(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24093,13 +24175,13 @@ GL_PREFIX(TexCoordP4uiv): popq %rbp popq %rsi popq %rdi - movq 5104(%rax), %r11 + movq 5120(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5104(%rax), %r11 + movq 5120(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24109,7 +24191,7 @@ GL_PREFIX(TexCoordP4uiv): popq %rbp popq %rsi popq %rdi - movq 5104(%rax), %r11 + movq 5120(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexCoordP4uiv), .-GL_PREFIX(TexCoordP4uiv) @@ -24120,7 +24202,7 @@ GL_PREFIX(TexCoordP4uiv): GL_PREFIX(VertexAttribP1ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5112(%rax), %r11 + movq 5128(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24134,13 +24216,13 @@ GL_PREFIX(VertexAttribP1ui): popq %rdx popq %rsi popq %rdi - movq 5112(%rax), %r11 + movq 5128(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5112(%rax), %r11 + movq 5128(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24154,7 +24236,7 @@ GL_PREFIX(VertexAttribP1ui): popq %rdx popq %rsi popq %rdi - movq 5112(%rax), %r11 + movq 5128(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribP1ui), .-GL_PREFIX(VertexAttribP1ui) @@ -24165,7 +24247,7 @@ GL_PREFIX(VertexAttribP1ui): GL_PREFIX(VertexAttribP1uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5120(%rax), %r11 + movq 5136(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24179,13 +24261,13 @@ GL_PREFIX(VertexAttribP1uiv): popq %rdx popq %rsi popq %rdi - movq 5120(%rax), %r11 + movq 5136(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5120(%rax), %r11 + movq 5136(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24199,7 +24281,7 @@ GL_PREFIX(VertexAttribP1uiv): popq %rdx popq %rsi popq %rdi - movq 5120(%rax), %r11 + movq 5136(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribP1uiv), .-GL_PREFIX(VertexAttribP1uiv) @@ -24210,7 +24292,7 @@ GL_PREFIX(VertexAttribP1uiv): GL_PREFIX(VertexAttribP2ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5128(%rax), %r11 + movq 5144(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24224,13 +24306,13 @@ GL_PREFIX(VertexAttribP2ui): popq %rdx popq %rsi popq %rdi - movq 5128(%rax), %r11 + movq 5144(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5128(%rax), %r11 + movq 5144(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24244,7 +24326,7 @@ GL_PREFIX(VertexAttribP2ui): popq %rdx popq %rsi popq %rdi - movq 5128(%rax), %r11 + movq 5144(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribP2ui), .-GL_PREFIX(VertexAttribP2ui) @@ -24255,7 +24337,7 @@ GL_PREFIX(VertexAttribP2ui): GL_PREFIX(VertexAttribP2uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5136(%rax), %r11 + movq 5152(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24269,13 +24351,13 @@ GL_PREFIX(VertexAttribP2uiv): popq %rdx popq %rsi popq %rdi - movq 5136(%rax), %r11 + movq 5152(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5136(%rax), %r11 + movq 5152(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24289,7 +24371,7 @@ GL_PREFIX(VertexAttribP2uiv): popq %rdx popq %rsi popq %rdi - movq 5136(%rax), %r11 + movq 5152(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribP2uiv), .-GL_PREFIX(VertexAttribP2uiv) @@ -24300,7 +24382,7 @@ GL_PREFIX(VertexAttribP2uiv): GL_PREFIX(VertexAttribP3ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5144(%rax), %r11 + movq 5160(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24314,13 +24396,13 @@ GL_PREFIX(VertexAttribP3ui): popq %rdx popq %rsi popq %rdi - movq 5144(%rax), %r11 + movq 5160(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5144(%rax), %r11 + movq 5160(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24334,7 +24416,7 @@ GL_PREFIX(VertexAttribP3ui): popq %rdx popq %rsi popq %rdi - movq 5144(%rax), %r11 + movq 5160(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribP3ui), .-GL_PREFIX(VertexAttribP3ui) @@ -24345,7 +24427,7 @@ GL_PREFIX(VertexAttribP3ui): GL_PREFIX(VertexAttribP3uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5152(%rax), %r11 + movq 5168(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24359,13 +24441,13 @@ GL_PREFIX(VertexAttribP3uiv): popq %rdx popq %rsi popq %rdi - movq 5152(%rax), %r11 + movq 5168(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5152(%rax), %r11 + movq 5168(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24379,7 +24461,7 @@ GL_PREFIX(VertexAttribP3uiv): popq %rdx popq %rsi popq %rdi - movq 5152(%rax), %r11 + movq 5168(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribP3uiv), .-GL_PREFIX(VertexAttribP3uiv) @@ -24390,7 +24472,7 @@ GL_PREFIX(VertexAttribP3uiv): GL_PREFIX(VertexAttribP4ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5160(%rax), %r11 + movq 5176(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24404,13 +24486,13 @@ GL_PREFIX(VertexAttribP4ui): popq %rdx popq %rsi popq %rdi - movq 5160(%rax), %r11 + movq 5176(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5160(%rax), %r11 + movq 5176(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24424,7 +24506,7 @@ GL_PREFIX(VertexAttribP4ui): popq %rdx popq %rsi popq %rdi - movq 5160(%rax), %r11 + movq 5176(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribP4ui), .-GL_PREFIX(VertexAttribP4ui) @@ -24435,7 +24517,7 @@ GL_PREFIX(VertexAttribP4ui): GL_PREFIX(VertexAttribP4uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5168(%rax), %r11 + movq 5184(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24449,13 +24531,13 @@ GL_PREFIX(VertexAttribP4uiv): popq %rdx popq %rsi popq %rdi - movq 5168(%rax), %r11 + movq 5184(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5168(%rax), %r11 + movq 5184(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24469,7 +24551,7 @@ GL_PREFIX(VertexAttribP4uiv): popq %rdx popq %rsi popq %rdi - movq 5168(%rax), %r11 + movq 5184(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribP4uiv), .-GL_PREFIX(VertexAttribP4uiv) @@ -24480,7 +24562,7 @@ GL_PREFIX(VertexAttribP4uiv): GL_PREFIX(VertexP2ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5176(%rax), %r11 + movq 5192(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24490,13 +24572,13 @@ GL_PREFIX(VertexP2ui): popq %rbp popq %rsi popq %rdi - movq 5176(%rax), %r11 + movq 5192(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5176(%rax), %r11 + movq 5192(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24506,7 +24588,7 @@ GL_PREFIX(VertexP2ui): popq %rbp popq %rsi popq %rdi - movq 5176(%rax), %r11 + movq 5192(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexP2ui), .-GL_PREFIX(VertexP2ui) @@ -24517,7 +24599,7 @@ GL_PREFIX(VertexP2ui): GL_PREFIX(VertexP2uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5184(%rax), %r11 + movq 5200(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24527,13 +24609,13 @@ GL_PREFIX(VertexP2uiv): popq %rbp popq %rsi popq %rdi - movq 5184(%rax), %r11 + movq 5200(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5184(%rax), %r11 + movq 5200(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24543,7 +24625,7 @@ GL_PREFIX(VertexP2uiv): popq %rbp popq %rsi popq %rdi - movq 5184(%rax), %r11 + movq 5200(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexP2uiv), .-GL_PREFIX(VertexP2uiv) @@ -24554,7 +24636,7 @@ GL_PREFIX(VertexP2uiv): GL_PREFIX(VertexP3ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5192(%rax), %r11 + movq 5208(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24564,13 +24646,13 @@ GL_PREFIX(VertexP3ui): popq %rbp popq %rsi popq %rdi - movq 5192(%rax), %r11 + movq 5208(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5192(%rax), %r11 + movq 5208(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24580,7 +24662,7 @@ GL_PREFIX(VertexP3ui): popq %rbp popq %rsi popq %rdi - movq 5192(%rax), %r11 + movq 5208(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexP3ui), .-GL_PREFIX(VertexP3ui) @@ -24591,7 +24673,7 @@ GL_PREFIX(VertexP3ui): GL_PREFIX(VertexP3uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5200(%rax), %r11 + movq 5216(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24601,13 +24683,13 @@ GL_PREFIX(VertexP3uiv): popq %rbp popq %rsi popq %rdi - movq 5200(%rax), %r11 + movq 5216(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5200(%rax), %r11 + movq 5216(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24617,7 +24699,7 @@ GL_PREFIX(VertexP3uiv): popq %rbp popq %rsi popq %rdi - movq 5200(%rax), %r11 + movq 5216(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexP3uiv), .-GL_PREFIX(VertexP3uiv) @@ -24628,7 +24710,7 @@ GL_PREFIX(VertexP3uiv): GL_PREFIX(VertexP4ui): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5208(%rax), %r11 + movq 5224(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24638,13 +24720,13 @@ GL_PREFIX(VertexP4ui): popq %rbp popq %rsi popq %rdi - movq 5208(%rax), %r11 + movq 5224(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5208(%rax), %r11 + movq 5224(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24654,7 +24736,7 @@ GL_PREFIX(VertexP4ui): popq %rbp popq %rsi popq %rdi - movq 5208(%rax), %r11 + movq 5224(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexP4ui), .-GL_PREFIX(VertexP4ui) @@ -24665,7 +24747,7 @@ GL_PREFIX(VertexP4ui): GL_PREFIX(VertexP4uiv): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5216(%rax), %r11 + movq 5232(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24675,13 +24757,13 @@ GL_PREFIX(VertexP4uiv): popq %rbp popq %rsi popq %rdi - movq 5216(%rax), %r11 + movq 5232(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5216(%rax), %r11 + movq 5232(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24691,7 +24773,7 @@ GL_PREFIX(VertexP4uiv): popq %rbp popq %rsi popq %rdi - movq 5216(%rax), %r11 + movq 5232(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexP4uiv), .-GL_PREFIX(VertexP4uiv) @@ -24702,7 +24784,7 @@ GL_PREFIX(VertexP4uiv): GL_PREFIX(BindTransformFeedback): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5224(%rax), %r11 + movq 5240(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24712,13 +24794,13 @@ GL_PREFIX(BindTransformFeedback): popq %rbp popq %rsi popq %rdi - movq 5224(%rax), %r11 + movq 5240(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5224(%rax), %r11 + movq 5240(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24728,7 +24810,7 @@ GL_PREFIX(BindTransformFeedback): popq %rbp popq %rsi popq %rdi - movq 5224(%rax), %r11 + movq 5240(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindTransformFeedback), .-GL_PREFIX(BindTransformFeedback) @@ -24739,7 +24821,7 @@ GL_PREFIX(BindTransformFeedback): GL_PREFIX(DeleteTransformFeedbacks): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5232(%rax), %r11 + movq 5248(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24749,13 +24831,13 @@ GL_PREFIX(DeleteTransformFeedbacks): popq %rbp popq %rsi popq %rdi - movq 5232(%rax), %r11 + movq 5248(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5232(%rax), %r11 + movq 5248(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24765,7 +24847,7 @@ GL_PREFIX(DeleteTransformFeedbacks): popq %rbp popq %rsi popq %rdi - movq 5232(%rax), %r11 + movq 5248(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DeleteTransformFeedbacks), .-GL_PREFIX(DeleteTransformFeedbacks) @@ -24776,7 +24858,7 @@ GL_PREFIX(DeleteTransformFeedbacks): GL_PREFIX(DrawTransformFeedback): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5240(%rax), %r11 + movq 5256(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24786,13 +24868,13 @@ GL_PREFIX(DrawTransformFeedback): popq %rbp popq %rsi popq %rdi - movq 5240(%rax), %r11 + movq 5256(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5240(%rax), %r11 + movq 5256(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24802,7 +24884,7 @@ GL_PREFIX(DrawTransformFeedback): popq %rbp popq %rsi popq %rdi - movq 5240(%rax), %r11 + movq 5256(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DrawTransformFeedback), .-GL_PREFIX(DrawTransformFeedback) @@ -24813,7 +24895,7 @@ GL_PREFIX(DrawTransformFeedback): GL_PREFIX(GenTransformFeedbacks): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5248(%rax), %r11 + movq 5264(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24823,13 +24905,13 @@ GL_PREFIX(GenTransformFeedbacks): popq %rbp popq %rsi popq %rdi - movq 5248(%rax), %r11 + movq 5264(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5248(%rax), %r11 + movq 5264(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24839,7 +24921,7 @@ GL_PREFIX(GenTransformFeedbacks): popq %rbp popq %rsi popq %rdi - movq 5248(%rax), %r11 + movq 5264(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenTransformFeedbacks), .-GL_PREFIX(GenTransformFeedbacks) @@ -24850,25 +24932,25 @@ GL_PREFIX(GenTransformFeedbacks): GL_PREFIX(IsTransformFeedback): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5256(%rax), %r11 + movq 5272(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5256(%rax), %r11 + movq 5272(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5256(%rax), %r11 + movq 5272(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5256(%rax), %r11 + movq 5272(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IsTransformFeedback), .-GL_PREFIX(IsTransformFeedback) @@ -24879,25 +24961,25 @@ GL_PREFIX(IsTransformFeedback): GL_PREFIX(PauseTransformFeedback): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5264(%rax), %r11 + movq 5280(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 5264(%rax), %r11 + movq 5280(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5264(%rax), %r11 + movq 5280(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 5264(%rax), %r11 + movq 5280(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PauseTransformFeedback), .-GL_PREFIX(PauseTransformFeedback) @@ -24908,25 +24990,25 @@ GL_PREFIX(PauseTransformFeedback): GL_PREFIX(ResumeTransformFeedback): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5272(%rax), %r11 + movq 5288(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 5272(%rax), %r11 + movq 5288(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5272(%rax), %r11 + movq 5288(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 5272(%rax), %r11 + movq 5288(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ResumeTransformFeedback), .-GL_PREFIX(ResumeTransformFeedback) @@ -24937,25 +25019,25 @@ GL_PREFIX(ResumeTransformFeedback): GL_PREFIX(ClearDepthf): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5280(%rax), %r11 + movq 5296(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5280(%rax), %r11 + movq 5296(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5280(%rax), %r11 + movq 5296(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5280(%rax), %r11 + movq 5296(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ClearDepthf), .-GL_PREFIX(ClearDepthf) @@ -24966,7 +25048,7 @@ GL_PREFIX(ClearDepthf): GL_PREFIX(DepthRangef): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5288(%rax), %r11 + movq 5304(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -24976,13 +25058,13 @@ GL_PREFIX(DepthRangef): popq %rbp popq %rsi popq %rdi - movq 5288(%rax), %r11 + movq 5304(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5288(%rax), %r11 + movq 5304(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -24992,7 +25074,7 @@ GL_PREFIX(DepthRangef): popq %rbp popq %rsi popq %rdi - movq 5288(%rax), %r11 + movq 5304(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DepthRangef), .-GL_PREFIX(DepthRangef) @@ -25003,7 +25085,7 @@ GL_PREFIX(DepthRangef): GL_PREFIX(GetShaderPrecisionFormat): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5296(%rax), %r11 + movq 5312(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25017,13 +25099,13 @@ GL_PREFIX(GetShaderPrecisionFormat): popq %rdx popq %rsi popq %rdi - movq 5296(%rax), %r11 + movq 5312(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5296(%rax), %r11 + movq 5312(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25037,7 +25119,7 @@ GL_PREFIX(GetShaderPrecisionFormat): popq %rdx popq %rsi popq %rdi - movq 5296(%rax), %r11 + movq 5312(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetShaderPrecisionFormat), .-GL_PREFIX(GetShaderPrecisionFormat) @@ -25048,25 +25130,25 @@ GL_PREFIX(GetShaderPrecisionFormat): GL_PREFIX(ReleaseShaderCompiler): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5304(%rax), %r11 + movq 5320(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 5304(%rax), %r11 + movq 5320(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5304(%rax), %r11 + movq 5320(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 5304(%rax), %r11 + movq 5320(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ReleaseShaderCompiler), .-GL_PREFIX(ReleaseShaderCompiler) @@ -25077,7 +25159,7 @@ GL_PREFIX(ReleaseShaderCompiler): GL_PREFIX(ShaderBinary): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5312(%rax), %r11 + movq 5328(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25091,13 +25173,13 @@ GL_PREFIX(ShaderBinary): popq %rdx popq %rsi popq %rdi - movq 5312(%rax), %r11 + movq 5328(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5312(%rax), %r11 + movq 5328(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25111,7 +25193,7 @@ GL_PREFIX(ShaderBinary): popq %rdx popq %rsi popq %rdi - movq 5312(%rax), %r11 + movq 5328(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ShaderBinary), .-GL_PREFIX(ShaderBinary) @@ -25122,7 +25204,7 @@ GL_PREFIX(ShaderBinary): GL_PREFIX(DebugMessageCallbackARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5320(%rax), %r11 + movq 5336(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25132,13 +25214,13 @@ GL_PREFIX(DebugMessageCallbackARB): popq %rbp popq %rsi popq %rdi - movq 5320(%rax), %r11 + movq 5336(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5320(%rax), %r11 + movq 5336(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25148,7 +25230,7 @@ GL_PREFIX(DebugMessageCallbackARB): popq %rbp popq %rsi popq %rdi - movq 5320(%rax), %r11 + movq 5336(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DebugMessageCallbackARB), .-GL_PREFIX(DebugMessageCallbackARB) @@ -25159,7 +25241,7 @@ GL_PREFIX(DebugMessageCallbackARB): GL_PREFIX(DebugMessageControlARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5328(%rax), %r11 + movq 5344(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25177,13 +25259,13 @@ GL_PREFIX(DebugMessageControlARB): popq %rdx popq %rsi popq %rdi - movq 5328(%rax), %r11 + movq 5344(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5328(%rax), %r11 + movq 5344(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25201,7 +25283,7 @@ GL_PREFIX(DebugMessageControlARB): popq %rdx popq %rsi popq %rdi - movq 5328(%rax), %r11 + movq 5344(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DebugMessageControlARB), .-GL_PREFIX(DebugMessageControlARB) @@ -25212,7 +25294,7 @@ GL_PREFIX(DebugMessageControlARB): GL_PREFIX(DebugMessageInsertARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5336(%rax), %r11 + movq 5352(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25230,13 +25312,13 @@ GL_PREFIX(DebugMessageInsertARB): popq %rdx popq %rsi popq %rdi - movq 5336(%rax), %r11 + movq 5352(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5336(%rax), %r11 + movq 5352(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25254,7 +25336,7 @@ GL_PREFIX(DebugMessageInsertARB): popq %rdx popq %rsi popq %rdi - movq 5336(%rax), %r11 + movq 5352(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DebugMessageInsertARB), .-GL_PREFIX(DebugMessageInsertARB) @@ -25265,7 +25347,7 @@ GL_PREFIX(DebugMessageInsertARB): GL_PREFIX(GetDebugMessageLogARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5344(%rax), %r11 + movq 5360(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25283,13 +25365,13 @@ GL_PREFIX(GetDebugMessageLogARB): popq %rdx popq %rsi popq %rdi - movq 5344(%rax), %r11 + movq 5360(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5344(%rax), %r11 + movq 5360(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25307,7 +25389,7 @@ GL_PREFIX(GetDebugMessageLogARB): popq %rdx popq %rsi popq %rdi - movq 5344(%rax), %r11 + movq 5360(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetDebugMessageLogARB), .-GL_PREFIX(GetDebugMessageLogARB) @@ -25318,25 +25400,25 @@ GL_PREFIX(GetDebugMessageLogARB): GL_PREFIX(GetGraphicsResetStatusARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5352(%rax), %r11 + movq 5368(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 5352(%rax), %r11 + movq 5368(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5352(%rax), %r11 + movq 5368(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 5352(%rax), %r11 + movq 5368(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetGraphicsResetStatusARB), .-GL_PREFIX(GetGraphicsResetStatusARB) @@ -25347,7 +25429,7 @@ GL_PREFIX(GetGraphicsResetStatusARB): GL_PREFIX(GetnColorTableARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5360(%rax), %r11 + movq 5376(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25361,13 +25443,13 @@ GL_PREFIX(GetnColorTableARB): popq %rdx popq %rsi popq %rdi - movq 5360(%rax), %r11 + movq 5376(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5360(%rax), %r11 + movq 5376(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25381,7 +25463,7 @@ GL_PREFIX(GetnColorTableARB): popq %rdx popq %rsi popq %rdi - movq 5360(%rax), %r11 + movq 5376(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnColorTableARB), .-GL_PREFIX(GetnColorTableARB) @@ -25392,7 +25474,7 @@ GL_PREFIX(GetnColorTableARB): GL_PREFIX(GetnCompressedTexImageARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5368(%rax), %r11 + movq 5384(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25406,13 +25488,13 @@ GL_PREFIX(GetnCompressedTexImageARB): popq %rdx popq %rsi popq %rdi - movq 5368(%rax), %r11 + movq 5384(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5368(%rax), %r11 + movq 5384(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25426,7 +25508,7 @@ GL_PREFIX(GetnCompressedTexImageARB): popq %rdx popq %rsi popq %rdi - movq 5368(%rax), %r11 + movq 5384(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnCompressedTexImageARB), .-GL_PREFIX(GetnCompressedTexImageARB) @@ -25437,7 +25519,7 @@ GL_PREFIX(GetnCompressedTexImageARB): GL_PREFIX(GetnConvolutionFilterARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5376(%rax), %r11 + movq 5392(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25451,13 +25533,13 @@ GL_PREFIX(GetnConvolutionFilterARB): popq %rdx popq %rsi popq %rdi - movq 5376(%rax), %r11 + movq 5392(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5376(%rax), %r11 + movq 5392(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25471,7 +25553,7 @@ GL_PREFIX(GetnConvolutionFilterARB): popq %rdx popq %rsi popq %rdi - movq 5376(%rax), %r11 + movq 5392(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnConvolutionFilterARB), .-GL_PREFIX(GetnConvolutionFilterARB) @@ -25482,7 +25564,7 @@ GL_PREFIX(GetnConvolutionFilterARB): GL_PREFIX(GetnHistogramARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5384(%rax), %r11 + movq 5400(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25500,13 +25582,13 @@ GL_PREFIX(GetnHistogramARB): popq %rdx popq %rsi popq %rdi - movq 5384(%rax), %r11 + movq 5400(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5384(%rax), %r11 + movq 5400(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25524,7 +25606,7 @@ GL_PREFIX(GetnHistogramARB): popq %rdx popq %rsi popq %rdi - movq 5384(%rax), %r11 + movq 5400(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnHistogramARB), .-GL_PREFIX(GetnHistogramARB) @@ -25535,7 +25617,7 @@ GL_PREFIX(GetnHistogramARB): GL_PREFIX(GetnMapdvARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5392(%rax), %r11 + movq 5408(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25549,13 +25631,13 @@ GL_PREFIX(GetnMapdvARB): popq %rdx popq %rsi popq %rdi - movq 5392(%rax), %r11 + movq 5408(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5392(%rax), %r11 + movq 5408(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25569,7 +25651,7 @@ GL_PREFIX(GetnMapdvARB): popq %rdx popq %rsi popq %rdi - movq 5392(%rax), %r11 + movq 5408(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnMapdvARB), .-GL_PREFIX(GetnMapdvARB) @@ -25580,7 +25662,7 @@ GL_PREFIX(GetnMapdvARB): GL_PREFIX(GetnMapfvARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5400(%rax), %r11 + movq 5416(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25594,13 +25676,13 @@ GL_PREFIX(GetnMapfvARB): popq %rdx popq %rsi popq %rdi - movq 5400(%rax), %r11 + movq 5416(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5400(%rax), %r11 + movq 5416(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25614,7 +25696,7 @@ GL_PREFIX(GetnMapfvARB): popq %rdx popq %rsi popq %rdi - movq 5400(%rax), %r11 + movq 5416(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnMapfvARB), .-GL_PREFIX(GetnMapfvARB) @@ -25625,7 +25707,7 @@ GL_PREFIX(GetnMapfvARB): GL_PREFIX(GetnMapivARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5408(%rax), %r11 + movq 5424(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25639,13 +25721,13 @@ GL_PREFIX(GetnMapivARB): popq %rdx popq %rsi popq %rdi - movq 5408(%rax), %r11 + movq 5424(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5408(%rax), %r11 + movq 5424(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25659,7 +25741,7 @@ GL_PREFIX(GetnMapivARB): popq %rdx popq %rsi popq %rdi - movq 5408(%rax), %r11 + movq 5424(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnMapivARB), .-GL_PREFIX(GetnMapivARB) @@ -25670,7 +25752,7 @@ GL_PREFIX(GetnMapivARB): GL_PREFIX(GetnMinmaxARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5416(%rax), %r11 + movq 5432(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25688,13 +25770,13 @@ GL_PREFIX(GetnMinmaxARB): popq %rdx popq %rsi popq %rdi - movq 5416(%rax), %r11 + movq 5432(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5416(%rax), %r11 + movq 5432(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25712,7 +25794,7 @@ GL_PREFIX(GetnMinmaxARB): popq %rdx popq %rsi popq %rdi - movq 5416(%rax), %r11 + movq 5432(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnMinmaxARB), .-GL_PREFIX(GetnMinmaxARB) @@ -25723,7 +25805,7 @@ GL_PREFIX(GetnMinmaxARB): GL_PREFIX(GetnPixelMapfvARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5424(%rax), %r11 + movq 5440(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25733,13 +25815,13 @@ GL_PREFIX(GetnPixelMapfvARB): popq %rdx popq %rsi popq %rdi - movq 5424(%rax), %r11 + movq 5440(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5424(%rax), %r11 + movq 5440(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25749,7 +25831,7 @@ GL_PREFIX(GetnPixelMapfvARB): popq %rdx popq %rsi popq %rdi - movq 5424(%rax), %r11 + movq 5440(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnPixelMapfvARB), .-GL_PREFIX(GetnPixelMapfvARB) @@ -25760,7 +25842,7 @@ GL_PREFIX(GetnPixelMapfvARB): GL_PREFIX(GetnPixelMapuivARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5432(%rax), %r11 + movq 5448(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25770,13 +25852,13 @@ GL_PREFIX(GetnPixelMapuivARB): popq %rdx popq %rsi popq %rdi - movq 5432(%rax), %r11 + movq 5448(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5432(%rax), %r11 + movq 5448(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25786,7 +25868,7 @@ GL_PREFIX(GetnPixelMapuivARB): popq %rdx popq %rsi popq %rdi - movq 5432(%rax), %r11 + movq 5448(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnPixelMapuivARB), .-GL_PREFIX(GetnPixelMapuivARB) @@ -25797,7 +25879,7 @@ GL_PREFIX(GetnPixelMapuivARB): GL_PREFIX(GetnPixelMapusvARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5440(%rax), %r11 + movq 5456(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25807,13 +25889,13 @@ GL_PREFIX(GetnPixelMapusvARB): popq %rdx popq %rsi popq %rdi - movq 5440(%rax), %r11 + movq 5456(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5440(%rax), %r11 + movq 5456(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25823,7 +25905,7 @@ GL_PREFIX(GetnPixelMapusvARB): popq %rdx popq %rsi popq %rdi - movq 5440(%rax), %r11 + movq 5456(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnPixelMapusvARB), .-GL_PREFIX(GetnPixelMapusvARB) @@ -25834,7 +25916,7 @@ GL_PREFIX(GetnPixelMapusvARB): GL_PREFIX(GetnPolygonStippleARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5448(%rax), %r11 + movq 5464(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25844,13 +25926,13 @@ GL_PREFIX(GetnPolygonStippleARB): popq %rbp popq %rsi popq %rdi - movq 5448(%rax), %r11 + movq 5464(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5448(%rax), %r11 + movq 5464(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25860,7 +25942,7 @@ GL_PREFIX(GetnPolygonStippleARB): popq %rbp popq %rsi popq %rdi - movq 5448(%rax), %r11 + movq 5464(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnPolygonStippleARB), .-GL_PREFIX(GetnPolygonStippleARB) @@ -25871,7 +25953,7 @@ GL_PREFIX(GetnPolygonStippleARB): GL_PREFIX(GetnSeparableFilterARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5456(%rax), %r11 + movq 5472(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25889,13 +25971,13 @@ GL_PREFIX(GetnSeparableFilterARB): popq %rdx popq %rsi popq %rdi - movq 5456(%rax), %r11 + movq 5472(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5456(%rax), %r11 + movq 5472(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25913,7 +25995,7 @@ GL_PREFIX(GetnSeparableFilterARB): popq %rdx popq %rsi popq %rdi - movq 5456(%rax), %r11 + movq 5472(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnSeparableFilterARB), .-GL_PREFIX(GetnSeparableFilterARB) @@ -25924,7 +26006,7 @@ GL_PREFIX(GetnSeparableFilterARB): GL_PREFIX(GetnTexImageARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5464(%rax), %r11 + movq 5480(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25942,13 +26024,13 @@ GL_PREFIX(GetnTexImageARB): popq %rdx popq %rsi popq %rdi - movq 5464(%rax), %r11 + movq 5480(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5464(%rax), %r11 + movq 5480(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -25966,7 +26048,7 @@ GL_PREFIX(GetnTexImageARB): popq %rdx popq %rsi popq %rdi - movq 5464(%rax), %r11 + movq 5480(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnTexImageARB), .-GL_PREFIX(GetnTexImageARB) @@ -25977,7 +26059,7 @@ GL_PREFIX(GetnTexImageARB): GL_PREFIX(GetnUniformdvARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5472(%rax), %r11 + movq 5488(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -25991,13 +26073,13 @@ GL_PREFIX(GetnUniformdvARB): popq %rdx popq %rsi popq %rdi - movq 5472(%rax), %r11 + movq 5488(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5472(%rax), %r11 + movq 5488(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26011,7 +26093,7 @@ GL_PREFIX(GetnUniformdvARB): popq %rdx popq %rsi popq %rdi - movq 5472(%rax), %r11 + movq 5488(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnUniformdvARB), .-GL_PREFIX(GetnUniformdvARB) @@ -26022,7 +26104,7 @@ GL_PREFIX(GetnUniformdvARB): GL_PREFIX(GetnUniformfvARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5480(%rax), %r11 + movq 5496(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26036,13 +26118,13 @@ GL_PREFIX(GetnUniformfvARB): popq %rdx popq %rsi popq %rdi - movq 5480(%rax), %r11 + movq 5496(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5480(%rax), %r11 + movq 5496(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26056,7 +26138,7 @@ GL_PREFIX(GetnUniformfvARB): popq %rdx popq %rsi popq %rdi - movq 5480(%rax), %r11 + movq 5496(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnUniformfvARB), .-GL_PREFIX(GetnUniformfvARB) @@ -26067,7 +26149,7 @@ GL_PREFIX(GetnUniformfvARB): GL_PREFIX(GetnUniformivARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5488(%rax), %r11 + movq 5504(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26081,13 +26163,13 @@ GL_PREFIX(GetnUniformivARB): popq %rdx popq %rsi popq %rdi - movq 5488(%rax), %r11 + movq 5504(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5488(%rax), %r11 + movq 5504(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26101,7 +26183,7 @@ GL_PREFIX(GetnUniformivARB): popq %rdx popq %rsi popq %rdi - movq 5488(%rax), %r11 + movq 5504(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnUniformivARB), .-GL_PREFIX(GetnUniformivARB) @@ -26112,7 +26194,7 @@ GL_PREFIX(GetnUniformivARB): GL_PREFIX(GetnUniformuivARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5496(%rax), %r11 + movq 5512(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26126,13 +26208,13 @@ GL_PREFIX(GetnUniformuivARB): popq %rdx popq %rsi popq %rdi - movq 5496(%rax), %r11 + movq 5512(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5496(%rax), %r11 + movq 5512(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26146,7 +26228,7 @@ GL_PREFIX(GetnUniformuivARB): popq %rdx popq %rsi popq %rdi - movq 5496(%rax), %r11 + movq 5512(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetnUniformuivARB), .-GL_PREFIX(GetnUniformuivARB) @@ -26157,7 +26239,7 @@ GL_PREFIX(GetnUniformuivARB): GL_PREFIX(ReadnPixelsARB): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5504(%rax), %r11 + movq 5520(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26175,13 +26257,13 @@ GL_PREFIX(ReadnPixelsARB): popq %rdx popq %rsi popq %rdi - movq 5504(%rax), %r11 + movq 5520(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5504(%rax), %r11 + movq 5520(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26199,7 +26281,7 @@ GL_PREFIX(ReadnPixelsARB): popq %rdx popq %rsi popq %rdi - movq 5504(%rax), %r11 + movq 5520(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ReadnPixelsARB), .-GL_PREFIX(ReadnPixelsARB) @@ -26210,7 +26292,7 @@ GL_PREFIX(ReadnPixelsARB): GL_PREFIX(TexStorage1D): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5512(%rax), %r11 + movq 5528(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26224,13 +26306,13 @@ GL_PREFIX(TexStorage1D): popq %rdx popq %rsi popq %rdi - movq 5512(%rax), %r11 + movq 5528(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5512(%rax), %r11 + movq 5528(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26244,7 +26326,7 @@ GL_PREFIX(TexStorage1D): popq %rdx popq %rsi popq %rdi - movq 5512(%rax), %r11 + movq 5528(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexStorage1D), .-GL_PREFIX(TexStorage1D) @@ -26255,7 +26337,7 @@ GL_PREFIX(TexStorage1D): GL_PREFIX(TexStorage2D): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5520(%rax), %r11 + movq 5536(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26269,13 +26351,13 @@ GL_PREFIX(TexStorage2D): popq %rdx popq %rsi popq %rdi - movq 5520(%rax), %r11 + movq 5536(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5520(%rax), %r11 + movq 5536(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26289,7 +26371,7 @@ GL_PREFIX(TexStorage2D): popq %rdx popq %rsi popq %rdi - movq 5520(%rax), %r11 + movq 5536(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexStorage2D), .-GL_PREFIX(TexStorage2D) @@ -26300,7 +26382,7 @@ GL_PREFIX(TexStorage2D): GL_PREFIX(TexStorage3D): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5528(%rax), %r11 + movq 5544(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26318,13 +26400,13 @@ GL_PREFIX(TexStorage3D): popq %rdx popq %rsi popq %rdi - movq 5528(%rax), %r11 + movq 5544(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5528(%rax), %r11 + movq 5544(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26342,7 +26424,7 @@ GL_PREFIX(TexStorage3D): popq %rdx popq %rsi popq %rdi - movq 5528(%rax), %r11 + movq 5544(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexStorage3D), .-GL_PREFIX(TexStorage3D) @@ -26353,7 +26435,7 @@ GL_PREFIX(TexStorage3D): GL_PREFIX(TextureStorage1DEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5536(%rax), %r11 + movq 5552(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26367,13 +26449,13 @@ GL_PREFIX(TextureStorage1DEXT): popq %rdx popq %rsi popq %rdi - movq 5536(%rax), %r11 + movq 5552(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5536(%rax), %r11 + movq 5552(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26387,7 +26469,7 @@ GL_PREFIX(TextureStorage1DEXT): popq %rdx popq %rsi popq %rdi - movq 5536(%rax), %r11 + movq 5552(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TextureStorage1DEXT), .-GL_PREFIX(TextureStorage1DEXT) @@ -26398,7 +26480,7 @@ GL_PREFIX(TextureStorage1DEXT): GL_PREFIX(TextureStorage2DEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5544(%rax), %r11 + movq 5560(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26416,13 +26498,13 @@ GL_PREFIX(TextureStorage2DEXT): popq %rdx popq %rsi popq %rdi - movq 5544(%rax), %r11 + movq 5560(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5544(%rax), %r11 + movq 5560(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26440,7 +26522,7 @@ GL_PREFIX(TextureStorage2DEXT): popq %rdx popq %rsi popq %rdi - movq 5544(%rax), %r11 + movq 5560(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TextureStorage2DEXT), .-GL_PREFIX(TextureStorage2DEXT) @@ -26451,7 +26533,7 @@ GL_PREFIX(TextureStorage2DEXT): GL_PREFIX(TextureStorage3DEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5552(%rax), %r11 + movq 5568(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26469,13 +26551,13 @@ GL_PREFIX(TextureStorage3DEXT): popq %rdx popq %rsi popq %rdi - movq 5552(%rax), %r11 + movq 5568(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5552(%rax), %r11 + movq 5568(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26493,7 +26575,7 @@ GL_PREFIX(TextureStorage3DEXT): popq %rdx popq %rsi popq %rdi - movq 5552(%rax), %r11 + movq 5568(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TextureStorage3DEXT), .-GL_PREFIX(TextureStorage3DEXT) @@ -26504,7 +26586,7 @@ GL_PREFIX(TextureStorage3DEXT): GL_PREFIX(PolygonOffsetEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5560(%rax), %r11 + movq 5576(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -26514,13 +26596,13 @@ GL_PREFIX(PolygonOffsetEXT): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 5560(%rax), %r11 + movq 5576(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5560(%rax), %r11 + movq 5576(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -26530,19 +26612,19 @@ GL_PREFIX(PolygonOffsetEXT): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 5560(%rax), %r11 + movq 5576(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PolygonOffsetEXT), .-GL_PREFIX(PolygonOffsetEXT) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_696) - .type GL_PREFIX(_dispatch_stub_696), @function - HIDDEN(GL_PREFIX(_dispatch_stub_696)) -GL_PREFIX(_dispatch_stub_696): + .globl GL_PREFIX(_dispatch_stub_698) + .type GL_PREFIX(_dispatch_stub_698), @function + HIDDEN(GL_PREFIX(_dispatch_stub_698)) +GL_PREFIX(_dispatch_stub_698): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5568(%rax), %r11 + movq 5584(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26552,13 +26634,13 @@ GL_PREFIX(_dispatch_stub_696): popq %rbp popq %rsi popq %rdi - movq 5568(%rax), %r11 + movq 5584(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5568(%rax), %r11 + movq 5584(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26568,19 +26650,19 @@ GL_PREFIX(_dispatch_stub_696): popq %rbp popq %rsi popq %rdi - movq 5568(%rax), %r11 + movq 5584(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_696), .-GL_PREFIX(_dispatch_stub_696) + .size GL_PREFIX(_dispatch_stub_698), .-GL_PREFIX(_dispatch_stub_698) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_697) - .type GL_PREFIX(_dispatch_stub_697), @function - HIDDEN(GL_PREFIX(_dispatch_stub_697)) -GL_PREFIX(_dispatch_stub_697): + .globl GL_PREFIX(_dispatch_stub_699) + .type GL_PREFIX(_dispatch_stub_699), @function + HIDDEN(GL_PREFIX(_dispatch_stub_699)) +GL_PREFIX(_dispatch_stub_699): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5576(%rax), %r11 + movq 5592(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26590,13 +26672,13 @@ GL_PREFIX(_dispatch_stub_697): popq %rbp popq %rsi popq %rdi - movq 5576(%rax), %r11 + movq 5592(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5576(%rax), %r11 + movq 5592(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26606,19 +26688,19 @@ GL_PREFIX(_dispatch_stub_697): popq %rbp popq %rsi popq %rdi - movq 5576(%rax), %r11 + movq 5592(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_697), .-GL_PREFIX(_dispatch_stub_697) + .size GL_PREFIX(_dispatch_stub_699), .-GL_PREFIX(_dispatch_stub_699) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_698) - .type GL_PREFIX(_dispatch_stub_698), @function - HIDDEN(GL_PREFIX(_dispatch_stub_698)) -GL_PREFIX(_dispatch_stub_698): + .globl GL_PREFIX(_dispatch_stub_700) + .type GL_PREFIX(_dispatch_stub_700), @function + HIDDEN(GL_PREFIX(_dispatch_stub_700)) +GL_PREFIX(_dispatch_stub_700): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5584(%rax), %r11 + movq 5600(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -26628,13 +26710,13 @@ GL_PREFIX(_dispatch_stub_698): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 5584(%rax), %r11 + movq 5600(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5584(%rax), %r11 + movq 5600(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -26644,19 +26726,19 @@ GL_PREFIX(_dispatch_stub_698): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 5584(%rax), %r11 + movq 5600(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_698), .-GL_PREFIX(_dispatch_stub_698) + .size GL_PREFIX(_dispatch_stub_700), .-GL_PREFIX(_dispatch_stub_700) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_699) - .type GL_PREFIX(_dispatch_stub_699), @function - HIDDEN(GL_PREFIX(_dispatch_stub_699)) -GL_PREFIX(_dispatch_stub_699): + .globl GL_PREFIX(_dispatch_stub_701) + .type GL_PREFIX(_dispatch_stub_701), @function + HIDDEN(GL_PREFIX(_dispatch_stub_701)) +GL_PREFIX(_dispatch_stub_701): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5592(%rax), %r11 + movq 5608(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26666,13 +26748,13 @@ GL_PREFIX(_dispatch_stub_699): popq %rbp popq %rsi popq %rdi - movq 5592(%rax), %r11 + movq 5608(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5592(%rax), %r11 + movq 5608(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26682,19 +26764,19 @@ GL_PREFIX(_dispatch_stub_699): popq %rbp popq %rsi popq %rdi - movq 5592(%rax), %r11 + movq 5608(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_699), .-GL_PREFIX(_dispatch_stub_699) + .size GL_PREFIX(_dispatch_stub_701), .-GL_PREFIX(_dispatch_stub_701) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_700) - .type GL_PREFIX(_dispatch_stub_700), @function - HIDDEN(GL_PREFIX(_dispatch_stub_700)) -GL_PREFIX(_dispatch_stub_700): + .globl GL_PREFIX(_dispatch_stub_702) + .type GL_PREFIX(_dispatch_stub_702), @function + HIDDEN(GL_PREFIX(_dispatch_stub_702)) +GL_PREFIX(_dispatch_stub_702): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5600(%rax), %r11 + movq 5616(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26704,13 +26786,13 @@ GL_PREFIX(_dispatch_stub_700): popq %rbp popq %rsi popq %rdi - movq 5600(%rax), %r11 + movq 5616(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5600(%rax), %r11 + movq 5616(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26720,19 +26802,19 @@ GL_PREFIX(_dispatch_stub_700): popq %rbp popq %rsi popq %rdi - movq 5600(%rax), %r11 + movq 5616(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_700), .-GL_PREFIX(_dispatch_stub_700) + .size GL_PREFIX(_dispatch_stub_702), .-GL_PREFIX(_dispatch_stub_702) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_701) - .type GL_PREFIX(_dispatch_stub_701), @function - HIDDEN(GL_PREFIX(_dispatch_stub_701)) -GL_PREFIX(_dispatch_stub_701): + .globl GL_PREFIX(_dispatch_stub_703) + .type GL_PREFIX(_dispatch_stub_703), @function + HIDDEN(GL_PREFIX(_dispatch_stub_703)) +GL_PREFIX(_dispatch_stub_703): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5608(%rax), %r11 + movq 5624(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26742,13 +26824,13 @@ GL_PREFIX(_dispatch_stub_701): popq %rbp popq %rsi popq %rdi - movq 5608(%rax), %r11 + movq 5624(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5608(%rax), %r11 + movq 5624(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26758,19 +26840,19 @@ GL_PREFIX(_dispatch_stub_701): popq %rbp popq %rsi popq %rdi - movq 5608(%rax), %r11 + movq 5624(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_701), .-GL_PREFIX(_dispatch_stub_701) + .size GL_PREFIX(_dispatch_stub_703), .-GL_PREFIX(_dispatch_stub_703) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_702) - .type GL_PREFIX(_dispatch_stub_702), @function - HIDDEN(GL_PREFIX(_dispatch_stub_702)) -GL_PREFIX(_dispatch_stub_702): + .globl GL_PREFIX(_dispatch_stub_704) + .type GL_PREFIX(_dispatch_stub_704), @function + HIDDEN(GL_PREFIX(_dispatch_stub_704)) +GL_PREFIX(_dispatch_stub_704): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5616(%rax), %r11 + movq 5632(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26780,13 +26862,13 @@ GL_PREFIX(_dispatch_stub_702): popq %rbp popq %rsi popq %rdi - movq 5616(%rax), %r11 + movq 5632(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5616(%rax), %r11 + movq 5632(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26796,40 +26878,40 @@ GL_PREFIX(_dispatch_stub_702): popq %rbp popq %rsi popq %rdi - movq 5616(%rax), %r11 + movq 5632(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_702), .-GL_PREFIX(_dispatch_stub_702) + .size GL_PREFIX(_dispatch_stub_704), .-GL_PREFIX(_dispatch_stub_704) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_703) - .type GL_PREFIX(_dispatch_stub_703), @function - HIDDEN(GL_PREFIX(_dispatch_stub_703)) -GL_PREFIX(_dispatch_stub_703): + .globl GL_PREFIX(_dispatch_stub_705) + .type GL_PREFIX(_dispatch_stub_705), @function + HIDDEN(GL_PREFIX(_dispatch_stub_705)) +GL_PREFIX(_dispatch_stub_705): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5624(%rax), %r11 + movq 5640(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5624(%rax), %r11 + movq 5640(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5624(%rax), %r11 + movq 5640(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5624(%rax), %r11 + movq 5640(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_703), .-GL_PREFIX(_dispatch_stub_703) + .size GL_PREFIX(_dispatch_stub_705), .-GL_PREFIX(_dispatch_stub_705) .p2align 4,,15 .globl GL_PREFIX(ColorPointerEXT) @@ -26837,7 +26919,7 @@ GL_PREFIX(_dispatch_stub_703): GL_PREFIX(ColorPointerEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5632(%rax), %r11 + movq 5648(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26851,13 +26933,13 @@ GL_PREFIX(ColorPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5632(%rax), %r11 + movq 5648(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5632(%rax), %r11 + movq 5648(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26871,7 +26953,7 @@ GL_PREFIX(ColorPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5632(%rax), %r11 + movq 5648(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorPointerEXT), .-GL_PREFIX(ColorPointerEXT) @@ -26882,7 +26964,7 @@ GL_PREFIX(ColorPointerEXT): GL_PREFIX(EdgeFlagPointerEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5640(%rax), %r11 + movq 5656(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26892,13 +26974,13 @@ GL_PREFIX(EdgeFlagPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5640(%rax), %r11 + movq 5656(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5640(%rax), %r11 + movq 5656(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26908,7 +26990,7 @@ GL_PREFIX(EdgeFlagPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5640(%rax), %r11 + movq 5656(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EdgeFlagPointerEXT), .-GL_PREFIX(EdgeFlagPointerEXT) @@ -26919,7 +27001,7 @@ GL_PREFIX(EdgeFlagPointerEXT): GL_PREFIX(IndexPointerEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5648(%rax), %r11 + movq 5664(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26933,13 +27015,13 @@ GL_PREFIX(IndexPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5648(%rax), %r11 + movq 5664(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5648(%rax), %r11 + movq 5664(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26953,7 +27035,7 @@ GL_PREFIX(IndexPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5648(%rax), %r11 + movq 5664(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IndexPointerEXT), .-GL_PREFIX(IndexPointerEXT) @@ -26964,7 +27046,7 @@ GL_PREFIX(IndexPointerEXT): GL_PREFIX(NormalPointerEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5656(%rax), %r11 + movq 5672(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -26978,13 +27060,13 @@ GL_PREFIX(NormalPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5656(%rax), %r11 + movq 5672(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5656(%rax), %r11 + movq 5672(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -26998,7 +27080,7 @@ GL_PREFIX(NormalPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5656(%rax), %r11 + movq 5672(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(NormalPointerEXT), .-GL_PREFIX(NormalPointerEXT) @@ -27009,7 +27091,7 @@ GL_PREFIX(NormalPointerEXT): GL_PREFIX(TexCoordPointerEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5664(%rax), %r11 + movq 5680(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27023,13 +27105,13 @@ GL_PREFIX(TexCoordPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5664(%rax), %r11 + movq 5680(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5664(%rax), %r11 + movq 5680(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27043,7 +27125,7 @@ GL_PREFIX(TexCoordPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5664(%rax), %r11 + movq 5680(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexCoordPointerEXT), .-GL_PREFIX(TexCoordPointerEXT) @@ -27054,7 +27136,7 @@ GL_PREFIX(TexCoordPointerEXT): GL_PREFIX(VertexPointerEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5672(%rax), %r11 + movq 5688(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27068,13 +27150,13 @@ GL_PREFIX(VertexPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5672(%rax), %r11 + movq 5688(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5672(%rax), %r11 + movq 5688(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27088,7 +27170,7 @@ GL_PREFIX(VertexPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5672(%rax), %r11 + movq 5688(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexPointerEXT), .-GL_PREFIX(VertexPointerEXT) @@ -27099,7 +27181,7 @@ GL_PREFIX(VertexPointerEXT): GL_PREFIX(PointParameterfEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5680(%rax), %r11 + movq 5696(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -27109,13 +27191,13 @@ GL_PREFIX(PointParameterfEXT): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 5680(%rax), %r11 + movq 5696(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5680(%rax), %r11 + movq 5696(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -27125,7 +27207,7 @@ GL_PREFIX(PointParameterfEXT): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 5680(%rax), %r11 + movq 5696(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PointParameterfEXT), .-GL_PREFIX(PointParameterfEXT) @@ -27136,7 +27218,7 @@ GL_PREFIX(PointParameterfEXT): GL_PREFIX(PointParameterfvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5688(%rax), %r11 + movq 5704(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27146,13 +27228,13 @@ GL_PREFIX(PointParameterfvEXT): popq %rbp popq %rsi popq %rdi - movq 5688(%rax), %r11 + movq 5704(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5688(%rax), %r11 + movq 5704(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27162,7 +27244,7 @@ GL_PREFIX(PointParameterfvEXT): popq %rbp popq %rsi popq %rdi - movq 5688(%rax), %r11 + movq 5704(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PointParameterfvEXT), .-GL_PREFIX(PointParameterfvEXT) @@ -27173,7 +27255,7 @@ GL_PREFIX(PointParameterfvEXT): GL_PREFIX(LockArraysEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5696(%rax), %r11 + movq 5712(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27183,13 +27265,13 @@ GL_PREFIX(LockArraysEXT): popq %rbp popq %rsi popq %rdi - movq 5696(%rax), %r11 + movq 5712(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5696(%rax), %r11 + movq 5712(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27199,7 +27281,7 @@ GL_PREFIX(LockArraysEXT): popq %rbp popq %rsi popq %rdi - movq 5696(%rax), %r11 + movq 5712(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(LockArraysEXT), .-GL_PREFIX(LockArraysEXT) @@ -27210,25 +27292,25 @@ GL_PREFIX(LockArraysEXT): GL_PREFIX(UnlockArraysEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5704(%rax), %r11 + movq 5720(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 5704(%rax), %r11 + movq 5720(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5704(%rax), %r11 + movq 5720(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 5704(%rax), %r11 + movq 5720(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(UnlockArraysEXT), .-GL_PREFIX(UnlockArraysEXT) @@ -27239,7 +27321,7 @@ GL_PREFIX(UnlockArraysEXT): GL_PREFIX(SecondaryColor3bEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5712(%rax), %r11 + movq 5728(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27249,13 +27331,13 @@ GL_PREFIX(SecondaryColor3bEXT): popq %rdx popq %rsi popq %rdi - movq 5712(%rax), %r11 + movq 5728(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5712(%rax), %r11 + movq 5728(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27265,7 +27347,7 @@ GL_PREFIX(SecondaryColor3bEXT): popq %rdx popq %rsi popq %rdi - movq 5712(%rax), %r11 + movq 5728(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3bEXT), .-GL_PREFIX(SecondaryColor3bEXT) @@ -27276,25 +27358,25 @@ GL_PREFIX(SecondaryColor3bEXT): GL_PREFIX(SecondaryColor3bvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5720(%rax), %r11 + movq 5736(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5720(%rax), %r11 + movq 5736(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5720(%rax), %r11 + movq 5736(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5720(%rax), %r11 + movq 5736(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3bvEXT), .-GL_PREFIX(SecondaryColor3bvEXT) @@ -27305,7 +27387,7 @@ GL_PREFIX(SecondaryColor3bvEXT): GL_PREFIX(SecondaryColor3dEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5728(%rax), %r11 + movq 5744(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -27317,13 +27399,13 @@ GL_PREFIX(SecondaryColor3dEXT): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 5728(%rax), %r11 + movq 5744(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5728(%rax), %r11 + movq 5744(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -27335,7 +27417,7 @@ GL_PREFIX(SecondaryColor3dEXT): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 5728(%rax), %r11 + movq 5744(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3dEXT), .-GL_PREFIX(SecondaryColor3dEXT) @@ -27346,25 +27428,25 @@ GL_PREFIX(SecondaryColor3dEXT): GL_PREFIX(SecondaryColor3dvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5736(%rax), %r11 + movq 5752(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5736(%rax), %r11 + movq 5752(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5736(%rax), %r11 + movq 5752(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5736(%rax), %r11 + movq 5752(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3dvEXT), .-GL_PREFIX(SecondaryColor3dvEXT) @@ -27375,7 +27457,7 @@ GL_PREFIX(SecondaryColor3dvEXT): GL_PREFIX(SecondaryColor3fEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5744(%rax), %r11 + movq 5760(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -27387,13 +27469,13 @@ GL_PREFIX(SecondaryColor3fEXT): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 5744(%rax), %r11 + movq 5760(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5744(%rax), %r11 + movq 5760(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -27405,7 +27487,7 @@ GL_PREFIX(SecondaryColor3fEXT): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 5744(%rax), %r11 + movq 5760(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3fEXT), .-GL_PREFIX(SecondaryColor3fEXT) @@ -27416,25 +27498,25 @@ GL_PREFIX(SecondaryColor3fEXT): GL_PREFIX(SecondaryColor3fvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5752(%rax), %r11 + movq 5768(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5752(%rax), %r11 + movq 5768(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5752(%rax), %r11 + movq 5768(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5752(%rax), %r11 + movq 5768(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3fvEXT), .-GL_PREFIX(SecondaryColor3fvEXT) @@ -27445,7 +27527,7 @@ GL_PREFIX(SecondaryColor3fvEXT): GL_PREFIX(SecondaryColor3iEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5760(%rax), %r11 + movq 5776(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27455,13 +27537,13 @@ GL_PREFIX(SecondaryColor3iEXT): popq %rdx popq %rsi popq %rdi - movq 5760(%rax), %r11 + movq 5776(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5760(%rax), %r11 + movq 5776(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27471,7 +27553,7 @@ GL_PREFIX(SecondaryColor3iEXT): popq %rdx popq %rsi popq %rdi - movq 5760(%rax), %r11 + movq 5776(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3iEXT), .-GL_PREFIX(SecondaryColor3iEXT) @@ -27482,25 +27564,25 @@ GL_PREFIX(SecondaryColor3iEXT): GL_PREFIX(SecondaryColor3ivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5768(%rax), %r11 + movq 5784(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5768(%rax), %r11 + movq 5784(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5768(%rax), %r11 + movq 5784(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5768(%rax), %r11 + movq 5784(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3ivEXT), .-GL_PREFIX(SecondaryColor3ivEXT) @@ -27511,7 +27593,7 @@ GL_PREFIX(SecondaryColor3ivEXT): GL_PREFIX(SecondaryColor3sEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5776(%rax), %r11 + movq 5792(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27521,13 +27603,13 @@ GL_PREFIX(SecondaryColor3sEXT): popq %rdx popq %rsi popq %rdi - movq 5776(%rax), %r11 + movq 5792(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5776(%rax), %r11 + movq 5792(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27537,7 +27619,7 @@ GL_PREFIX(SecondaryColor3sEXT): popq %rdx popq %rsi popq %rdi - movq 5776(%rax), %r11 + movq 5792(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3sEXT), .-GL_PREFIX(SecondaryColor3sEXT) @@ -27548,25 +27630,25 @@ GL_PREFIX(SecondaryColor3sEXT): GL_PREFIX(SecondaryColor3svEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5784(%rax), %r11 + movq 5800(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5784(%rax), %r11 + movq 5800(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5784(%rax), %r11 + movq 5800(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5784(%rax), %r11 + movq 5800(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3svEXT), .-GL_PREFIX(SecondaryColor3svEXT) @@ -27577,7 +27659,7 @@ GL_PREFIX(SecondaryColor3svEXT): GL_PREFIX(SecondaryColor3ubEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5792(%rax), %r11 + movq 5808(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27587,13 +27669,13 @@ GL_PREFIX(SecondaryColor3ubEXT): popq %rdx popq %rsi popq %rdi - movq 5792(%rax), %r11 + movq 5808(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5792(%rax), %r11 + movq 5808(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27603,7 +27685,7 @@ GL_PREFIX(SecondaryColor3ubEXT): popq %rdx popq %rsi popq %rdi - movq 5792(%rax), %r11 + movq 5808(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3ubEXT), .-GL_PREFIX(SecondaryColor3ubEXT) @@ -27614,25 +27696,25 @@ GL_PREFIX(SecondaryColor3ubEXT): GL_PREFIX(SecondaryColor3ubvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5800(%rax), %r11 + movq 5816(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5800(%rax), %r11 + movq 5816(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5800(%rax), %r11 + movq 5816(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5800(%rax), %r11 + movq 5816(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3ubvEXT), .-GL_PREFIX(SecondaryColor3ubvEXT) @@ -27643,7 +27725,7 @@ GL_PREFIX(SecondaryColor3ubvEXT): GL_PREFIX(SecondaryColor3uiEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5808(%rax), %r11 + movq 5824(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27653,13 +27735,13 @@ GL_PREFIX(SecondaryColor3uiEXT): popq %rdx popq %rsi popq %rdi - movq 5808(%rax), %r11 + movq 5824(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5808(%rax), %r11 + movq 5824(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27669,7 +27751,7 @@ GL_PREFIX(SecondaryColor3uiEXT): popq %rdx popq %rsi popq %rdi - movq 5808(%rax), %r11 + movq 5824(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3uiEXT), .-GL_PREFIX(SecondaryColor3uiEXT) @@ -27680,25 +27762,25 @@ GL_PREFIX(SecondaryColor3uiEXT): GL_PREFIX(SecondaryColor3uivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5816(%rax), %r11 + movq 5832(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5816(%rax), %r11 + movq 5832(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5816(%rax), %r11 + movq 5832(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5816(%rax), %r11 + movq 5832(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3uivEXT), .-GL_PREFIX(SecondaryColor3uivEXT) @@ -27709,7 +27791,7 @@ GL_PREFIX(SecondaryColor3uivEXT): GL_PREFIX(SecondaryColor3usEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5824(%rax), %r11 + movq 5840(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27719,13 +27801,13 @@ GL_PREFIX(SecondaryColor3usEXT): popq %rdx popq %rsi popq %rdi - movq 5824(%rax), %r11 + movq 5840(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5824(%rax), %r11 + movq 5840(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27735,7 +27817,7 @@ GL_PREFIX(SecondaryColor3usEXT): popq %rdx popq %rsi popq %rdi - movq 5824(%rax), %r11 + movq 5840(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3usEXT), .-GL_PREFIX(SecondaryColor3usEXT) @@ -27746,25 +27828,25 @@ GL_PREFIX(SecondaryColor3usEXT): GL_PREFIX(SecondaryColor3usvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5832(%rax), %r11 + movq 5848(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5832(%rax), %r11 + movq 5848(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5832(%rax), %r11 + movq 5848(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5832(%rax), %r11 + movq 5848(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColor3usvEXT), .-GL_PREFIX(SecondaryColor3usvEXT) @@ -27775,7 +27857,7 @@ GL_PREFIX(SecondaryColor3usvEXT): GL_PREFIX(SecondaryColorPointerEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5840(%rax), %r11 + movq 5856(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27789,13 +27871,13 @@ GL_PREFIX(SecondaryColorPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5840(%rax), %r11 + movq 5856(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5840(%rax), %r11 + movq 5856(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27809,7 +27891,7 @@ GL_PREFIX(SecondaryColorPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5840(%rax), %r11 + movq 5856(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SecondaryColorPointerEXT), .-GL_PREFIX(SecondaryColorPointerEXT) @@ -27820,7 +27902,7 @@ GL_PREFIX(SecondaryColorPointerEXT): GL_PREFIX(MultiDrawArraysEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5848(%rax), %r11 + movq 5864(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27834,13 +27916,13 @@ GL_PREFIX(MultiDrawArraysEXT): popq %rdx popq %rsi popq %rdi - movq 5848(%rax), %r11 + movq 5864(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5848(%rax), %r11 + movq 5864(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27854,7 +27936,7 @@ GL_PREFIX(MultiDrawArraysEXT): popq %rdx popq %rsi popq %rdi - movq 5848(%rax), %r11 + movq 5864(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MultiDrawArraysEXT), .-GL_PREFIX(MultiDrawArraysEXT) @@ -27865,7 +27947,7 @@ GL_PREFIX(MultiDrawArraysEXT): GL_PREFIX(MultiDrawElementsEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5856(%rax), %r11 + movq 5872(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27879,13 +27961,13 @@ GL_PREFIX(MultiDrawElementsEXT): popq %rdx popq %rsi popq %rdi - movq 5856(%rax), %r11 + movq 5872(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5856(%rax), %r11 + movq 5872(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27899,7 +27981,7 @@ GL_PREFIX(MultiDrawElementsEXT): popq %rdx popq %rsi popq %rdi - movq 5856(%rax), %r11 + movq 5872(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(MultiDrawElementsEXT), .-GL_PREFIX(MultiDrawElementsEXT) @@ -27910,7 +27992,7 @@ GL_PREFIX(MultiDrawElementsEXT): GL_PREFIX(FogCoordPointerEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5864(%rax), %r11 + movq 5880(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -27920,13 +28002,13 @@ GL_PREFIX(FogCoordPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5864(%rax), %r11 + movq 5880(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5864(%rax), %r11 + movq 5880(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -27936,7 +28018,7 @@ GL_PREFIX(FogCoordPointerEXT): popq %rdx popq %rsi popq %rdi - movq 5864(%rax), %r11 + movq 5880(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FogCoordPointerEXT), .-GL_PREFIX(FogCoordPointerEXT) @@ -27947,7 +28029,7 @@ GL_PREFIX(FogCoordPointerEXT): GL_PREFIX(FogCoorddEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5872(%rax), %r11 + movq 5888(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $8, %rsp @@ -27955,13 +28037,13 @@ GL_PREFIX(FogCoorddEXT): call _x86_64_get_dispatch@PLT movq (%rsp), %xmm0 addq $8, %rsp - movq 5872(%rax), %r11 + movq 5888(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5872(%rax), %r11 + movq 5888(%rax), %r11 jmp *%r11 1: subq $8, %rsp @@ -27969,7 +28051,7 @@ GL_PREFIX(FogCoorddEXT): call _glapi_get_dispatch movq (%rsp), %xmm0 addq $8, %rsp - movq 5872(%rax), %r11 + movq 5888(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FogCoorddEXT), .-GL_PREFIX(FogCoorddEXT) @@ -27980,25 +28062,25 @@ GL_PREFIX(FogCoorddEXT): GL_PREFIX(FogCoorddvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5880(%rax), %r11 + movq 5896(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5880(%rax), %r11 + movq 5896(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5880(%rax), %r11 + movq 5896(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5880(%rax), %r11 + movq 5896(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FogCoorddvEXT), .-GL_PREFIX(FogCoorddvEXT) @@ -28009,7 +28091,7 @@ GL_PREFIX(FogCoorddvEXT): GL_PREFIX(FogCoordfEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5888(%rax), %r11 + movq 5904(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $8, %rsp @@ -28017,13 +28099,13 @@ GL_PREFIX(FogCoordfEXT): call _x86_64_get_dispatch@PLT movq (%rsp), %xmm0 addq $8, %rsp - movq 5888(%rax), %r11 + movq 5904(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5888(%rax), %r11 + movq 5904(%rax), %r11 jmp *%r11 1: subq $8, %rsp @@ -28031,7 +28113,7 @@ GL_PREFIX(FogCoordfEXT): call _glapi_get_dispatch movq (%rsp), %xmm0 addq $8, %rsp - movq 5888(%rax), %r11 + movq 5904(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FogCoordfEXT), .-GL_PREFIX(FogCoordfEXT) @@ -28042,58 +28124,58 @@ GL_PREFIX(FogCoordfEXT): GL_PREFIX(FogCoordfvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5896(%rax), %r11 + movq 5912(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5896(%rax), %r11 + movq 5912(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5896(%rax), %r11 + movq 5912(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5896(%rax), %r11 + movq 5912(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FogCoordfvEXT), .-GL_PREFIX(FogCoordfvEXT) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_738) - .type GL_PREFIX(_dispatch_stub_738), @function - HIDDEN(GL_PREFIX(_dispatch_stub_738)) -GL_PREFIX(_dispatch_stub_738): + .globl GL_PREFIX(_dispatch_stub_740) + .type GL_PREFIX(_dispatch_stub_740), @function + HIDDEN(GL_PREFIX(_dispatch_stub_740)) +GL_PREFIX(_dispatch_stub_740): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5904(%rax), %r11 + movq 5920(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 5904(%rax), %r11 + movq 5920(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5904(%rax), %r11 + movq 5920(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 5904(%rax), %r11 + movq 5920(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_738), .-GL_PREFIX(_dispatch_stub_738) + .size GL_PREFIX(_dispatch_stub_740), .-GL_PREFIX(_dispatch_stub_740) .p2align 4,,15 .globl GL_PREFIX(BlendFuncSeparateEXT) @@ -28101,7 +28183,7 @@ GL_PREFIX(_dispatch_stub_738): GL_PREFIX(BlendFuncSeparateEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5912(%rax), %r11 + movq 5928(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28115,13 +28197,13 @@ GL_PREFIX(BlendFuncSeparateEXT): popq %rdx popq %rsi popq %rdi - movq 5912(%rax), %r11 + movq 5928(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5912(%rax), %r11 + movq 5928(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28135,7 +28217,7 @@ GL_PREFIX(BlendFuncSeparateEXT): popq %rdx popq %rsi popq %rdi - movq 5912(%rax), %r11 + movq 5928(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BlendFuncSeparateEXT), .-GL_PREFIX(BlendFuncSeparateEXT) @@ -28146,25 +28228,25 @@ GL_PREFIX(BlendFuncSeparateEXT): GL_PREFIX(FlushVertexArrayRangeNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5920(%rax), %r11 + movq 5936(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 5920(%rax), %r11 + movq 5936(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5920(%rax), %r11 + movq 5936(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 5920(%rax), %r11 + movq 5936(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FlushVertexArrayRangeNV), .-GL_PREFIX(FlushVertexArrayRangeNV) @@ -28175,7 +28257,7 @@ GL_PREFIX(FlushVertexArrayRangeNV): GL_PREFIX(VertexArrayRangeNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5928(%rax), %r11 + movq 5944(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28185,13 +28267,13 @@ GL_PREFIX(VertexArrayRangeNV): popq %rbp popq %rsi popq %rdi - movq 5928(%rax), %r11 + movq 5944(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5928(%rax), %r11 + movq 5944(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28201,7 +28283,7 @@ GL_PREFIX(VertexArrayRangeNV): popq %rbp popq %rsi popq %rdi - movq 5928(%rax), %r11 + movq 5944(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexArrayRangeNV), .-GL_PREFIX(VertexArrayRangeNV) @@ -28212,7 +28294,7 @@ GL_PREFIX(VertexArrayRangeNV): GL_PREFIX(CombinerInputNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5936(%rax), %r11 + movq 5952(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28230,13 +28312,13 @@ GL_PREFIX(CombinerInputNV): popq %rdx popq %rsi popq %rdi - movq 5936(%rax), %r11 + movq 5952(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5936(%rax), %r11 + movq 5952(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28254,7 +28336,7 @@ GL_PREFIX(CombinerInputNV): popq %rdx popq %rsi popq %rdi - movq 5936(%rax), %r11 + movq 5952(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CombinerInputNV), .-GL_PREFIX(CombinerInputNV) @@ -28265,7 +28347,7 @@ GL_PREFIX(CombinerInputNV): GL_PREFIX(CombinerOutputNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5944(%rax), %r11 + movq 5960(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28283,13 +28365,13 @@ GL_PREFIX(CombinerOutputNV): popq %rdx popq %rsi popq %rdi - movq 5944(%rax), %r11 + movq 5960(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5944(%rax), %r11 + movq 5960(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28307,7 +28389,7 @@ GL_PREFIX(CombinerOutputNV): popq %rdx popq %rsi popq %rdi - movq 5944(%rax), %r11 + movq 5960(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CombinerOutputNV), .-GL_PREFIX(CombinerOutputNV) @@ -28318,7 +28400,7 @@ GL_PREFIX(CombinerOutputNV): GL_PREFIX(CombinerParameterfNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5952(%rax), %r11 + movq 5968(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -28328,13 +28410,13 @@ GL_PREFIX(CombinerParameterfNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 5952(%rax), %r11 + movq 5968(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5952(%rax), %r11 + movq 5968(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -28344,7 +28426,7 @@ GL_PREFIX(CombinerParameterfNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 5952(%rax), %r11 + movq 5968(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CombinerParameterfNV), .-GL_PREFIX(CombinerParameterfNV) @@ -28355,7 +28437,7 @@ GL_PREFIX(CombinerParameterfNV): GL_PREFIX(CombinerParameterfvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5960(%rax), %r11 + movq 5976(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28365,13 +28447,13 @@ GL_PREFIX(CombinerParameterfvNV): popq %rbp popq %rsi popq %rdi - movq 5960(%rax), %r11 + movq 5976(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5960(%rax), %r11 + movq 5976(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28381,7 +28463,7 @@ GL_PREFIX(CombinerParameterfvNV): popq %rbp popq %rsi popq %rdi - movq 5960(%rax), %r11 + movq 5976(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CombinerParameterfvNV), .-GL_PREFIX(CombinerParameterfvNV) @@ -28392,7 +28474,7 @@ GL_PREFIX(CombinerParameterfvNV): GL_PREFIX(CombinerParameteriNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5968(%rax), %r11 + movq 5984(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28402,13 +28484,13 @@ GL_PREFIX(CombinerParameteriNV): popq %rbp popq %rsi popq %rdi - movq 5968(%rax), %r11 + movq 5984(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5968(%rax), %r11 + movq 5984(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28418,7 +28500,7 @@ GL_PREFIX(CombinerParameteriNV): popq %rbp popq %rsi popq %rdi - movq 5968(%rax), %r11 + movq 5984(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CombinerParameteriNV), .-GL_PREFIX(CombinerParameteriNV) @@ -28429,7 +28511,7 @@ GL_PREFIX(CombinerParameteriNV): GL_PREFIX(CombinerParameterivNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5976(%rax), %r11 + movq 5992(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28439,13 +28521,13 @@ GL_PREFIX(CombinerParameterivNV): popq %rbp popq %rsi popq %rdi - movq 5976(%rax), %r11 + movq 5992(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5976(%rax), %r11 + movq 5992(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28455,7 +28537,7 @@ GL_PREFIX(CombinerParameterivNV): popq %rbp popq %rsi popq %rdi - movq 5976(%rax), %r11 + movq 5992(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CombinerParameterivNV), .-GL_PREFIX(CombinerParameterivNV) @@ -28466,7 +28548,7 @@ GL_PREFIX(CombinerParameterivNV): GL_PREFIX(FinalCombinerInputNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5984(%rax), %r11 + movq 6000(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28480,13 +28562,13 @@ GL_PREFIX(FinalCombinerInputNV): popq %rdx popq %rsi popq %rdi - movq 5984(%rax), %r11 + movq 6000(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5984(%rax), %r11 + movq 6000(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28500,7 +28582,7 @@ GL_PREFIX(FinalCombinerInputNV): popq %rdx popq %rsi popq %rdi - movq 5984(%rax), %r11 + movq 6000(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FinalCombinerInputNV), .-GL_PREFIX(FinalCombinerInputNV) @@ -28511,7 +28593,7 @@ GL_PREFIX(FinalCombinerInputNV): GL_PREFIX(GetCombinerInputParameterfvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 5992(%rax), %r11 + movq 6008(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28525,13 +28607,13 @@ GL_PREFIX(GetCombinerInputParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 5992(%rax), %r11 + movq 6008(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 5992(%rax), %r11 + movq 6008(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28545,7 +28627,7 @@ GL_PREFIX(GetCombinerInputParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 5992(%rax), %r11 + movq 6008(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetCombinerInputParameterfvNV), .-GL_PREFIX(GetCombinerInputParameterfvNV) @@ -28556,7 +28638,7 @@ GL_PREFIX(GetCombinerInputParameterfvNV): GL_PREFIX(GetCombinerInputParameterivNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6000(%rax), %r11 + movq 6016(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28570,13 +28652,13 @@ GL_PREFIX(GetCombinerInputParameterivNV): popq %rdx popq %rsi popq %rdi - movq 6000(%rax), %r11 + movq 6016(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6000(%rax), %r11 + movq 6016(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28590,7 +28672,7 @@ GL_PREFIX(GetCombinerInputParameterivNV): popq %rdx popq %rsi popq %rdi - movq 6000(%rax), %r11 + movq 6016(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetCombinerInputParameterivNV), .-GL_PREFIX(GetCombinerInputParameterivNV) @@ -28601,7 +28683,7 @@ GL_PREFIX(GetCombinerInputParameterivNV): GL_PREFIX(GetCombinerOutputParameterfvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6008(%rax), %r11 + movq 6024(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28615,13 +28697,13 @@ GL_PREFIX(GetCombinerOutputParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 6008(%rax), %r11 + movq 6024(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6008(%rax), %r11 + movq 6024(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28635,7 +28717,7 @@ GL_PREFIX(GetCombinerOutputParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 6008(%rax), %r11 + movq 6024(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetCombinerOutputParameterfvNV), .-GL_PREFIX(GetCombinerOutputParameterfvNV) @@ -28646,7 +28728,7 @@ GL_PREFIX(GetCombinerOutputParameterfvNV): GL_PREFIX(GetCombinerOutputParameterivNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6016(%rax), %r11 + movq 6032(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28660,13 +28742,13 @@ GL_PREFIX(GetCombinerOutputParameterivNV): popq %rdx popq %rsi popq %rdi - movq 6016(%rax), %r11 + movq 6032(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6016(%rax), %r11 + movq 6032(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28680,7 +28762,7 @@ GL_PREFIX(GetCombinerOutputParameterivNV): popq %rdx popq %rsi popq %rdi - movq 6016(%rax), %r11 + movq 6032(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetCombinerOutputParameterivNV), .-GL_PREFIX(GetCombinerOutputParameterivNV) @@ -28691,7 +28773,7 @@ GL_PREFIX(GetCombinerOutputParameterivNV): GL_PREFIX(GetFinalCombinerInputParameterfvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6024(%rax), %r11 + movq 6040(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28701,13 +28783,13 @@ GL_PREFIX(GetFinalCombinerInputParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 6024(%rax), %r11 + movq 6040(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6024(%rax), %r11 + movq 6040(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28717,7 +28799,7 @@ GL_PREFIX(GetFinalCombinerInputParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 6024(%rax), %r11 + movq 6040(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetFinalCombinerInputParameterfvNV), .-GL_PREFIX(GetFinalCombinerInputParameterfvNV) @@ -28728,7 +28810,7 @@ GL_PREFIX(GetFinalCombinerInputParameterfvNV): GL_PREFIX(GetFinalCombinerInputParameterivNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6032(%rax), %r11 + movq 6048(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28738,13 +28820,13 @@ GL_PREFIX(GetFinalCombinerInputParameterivNV): popq %rdx popq %rsi popq %rdi - movq 6032(%rax), %r11 + movq 6048(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6032(%rax), %r11 + movq 6048(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28754,7 +28836,7 @@ GL_PREFIX(GetFinalCombinerInputParameterivNV): popq %rdx popq %rsi popq %rdi - movq 6032(%rax), %r11 + movq 6048(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetFinalCombinerInputParameterivNV), .-GL_PREFIX(GetFinalCombinerInputParameterivNV) @@ -28765,25 +28847,25 @@ GL_PREFIX(GetFinalCombinerInputParameterivNV): GL_PREFIX(ResizeBuffersMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6040(%rax), %r11 + movq 6056(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 6040(%rax), %r11 + movq 6056(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6040(%rax), %r11 + movq 6056(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 6040(%rax), %r11 + movq 6056(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ResizeBuffersMESA), .-GL_PREFIX(ResizeBuffersMESA) @@ -28794,7 +28876,7 @@ GL_PREFIX(ResizeBuffersMESA): GL_PREFIX(WindowPos2dMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6048(%rax), %r11 + movq 6064(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -28804,13 +28886,13 @@ GL_PREFIX(WindowPos2dMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 6048(%rax), %r11 + movq 6064(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6048(%rax), %r11 + movq 6064(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -28820,7 +28902,7 @@ GL_PREFIX(WindowPos2dMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 6048(%rax), %r11 + movq 6064(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2dMESA), .-GL_PREFIX(WindowPos2dMESA) @@ -28831,25 +28913,25 @@ GL_PREFIX(WindowPos2dMESA): GL_PREFIX(WindowPos2dvMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6056(%rax), %r11 + movq 6072(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6056(%rax), %r11 + movq 6072(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6056(%rax), %r11 + movq 6072(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6056(%rax), %r11 + movq 6072(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2dvMESA), .-GL_PREFIX(WindowPos2dvMESA) @@ -28860,7 +28942,7 @@ GL_PREFIX(WindowPos2dvMESA): GL_PREFIX(WindowPos2fMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6064(%rax), %r11 + movq 6080(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -28870,13 +28952,13 @@ GL_PREFIX(WindowPos2fMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 6064(%rax), %r11 + movq 6080(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6064(%rax), %r11 + movq 6080(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -28886,7 +28968,7 @@ GL_PREFIX(WindowPos2fMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 6064(%rax), %r11 + movq 6080(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2fMESA), .-GL_PREFIX(WindowPos2fMESA) @@ -28897,25 +28979,25 @@ GL_PREFIX(WindowPos2fMESA): GL_PREFIX(WindowPos2fvMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6072(%rax), %r11 + movq 6088(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6072(%rax), %r11 + movq 6088(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6072(%rax), %r11 + movq 6088(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6072(%rax), %r11 + movq 6088(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2fvMESA), .-GL_PREFIX(WindowPos2fvMESA) @@ -28926,7 +29008,7 @@ GL_PREFIX(WindowPos2fvMESA): GL_PREFIX(WindowPos2iMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6080(%rax), %r11 + movq 6096(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -28936,13 +29018,13 @@ GL_PREFIX(WindowPos2iMESA): popq %rbp popq %rsi popq %rdi - movq 6080(%rax), %r11 + movq 6096(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6080(%rax), %r11 + movq 6096(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -28952,7 +29034,7 @@ GL_PREFIX(WindowPos2iMESA): popq %rbp popq %rsi popq %rdi - movq 6080(%rax), %r11 + movq 6096(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2iMESA), .-GL_PREFIX(WindowPos2iMESA) @@ -28963,25 +29045,25 @@ GL_PREFIX(WindowPos2iMESA): GL_PREFIX(WindowPos2ivMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6088(%rax), %r11 + movq 6104(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6088(%rax), %r11 + movq 6104(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6088(%rax), %r11 + movq 6104(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6088(%rax), %r11 + movq 6104(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2ivMESA), .-GL_PREFIX(WindowPos2ivMESA) @@ -28992,7 +29074,7 @@ GL_PREFIX(WindowPos2ivMESA): GL_PREFIX(WindowPos2sMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6096(%rax), %r11 + movq 6112(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29002,13 +29084,13 @@ GL_PREFIX(WindowPos2sMESA): popq %rbp popq %rsi popq %rdi - movq 6096(%rax), %r11 + movq 6112(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6096(%rax), %r11 + movq 6112(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29018,7 +29100,7 @@ GL_PREFIX(WindowPos2sMESA): popq %rbp popq %rsi popq %rdi - movq 6096(%rax), %r11 + movq 6112(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2sMESA), .-GL_PREFIX(WindowPos2sMESA) @@ -29029,25 +29111,25 @@ GL_PREFIX(WindowPos2sMESA): GL_PREFIX(WindowPos2svMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6104(%rax), %r11 + movq 6120(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6104(%rax), %r11 + movq 6120(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6104(%rax), %r11 + movq 6120(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6104(%rax), %r11 + movq 6120(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos2svMESA), .-GL_PREFIX(WindowPos2svMESA) @@ -29058,7 +29140,7 @@ GL_PREFIX(WindowPos2svMESA): GL_PREFIX(WindowPos3dMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6112(%rax), %r11 + movq 6128(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -29070,13 +29152,13 @@ GL_PREFIX(WindowPos3dMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 6112(%rax), %r11 + movq 6128(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6112(%rax), %r11 + movq 6128(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -29088,7 +29170,7 @@ GL_PREFIX(WindowPos3dMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 6112(%rax), %r11 + movq 6128(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3dMESA), .-GL_PREFIX(WindowPos3dMESA) @@ -29099,25 +29181,25 @@ GL_PREFIX(WindowPos3dMESA): GL_PREFIX(WindowPos3dvMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6120(%rax), %r11 + movq 6136(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6120(%rax), %r11 + movq 6136(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6120(%rax), %r11 + movq 6136(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6120(%rax), %r11 + movq 6136(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3dvMESA), .-GL_PREFIX(WindowPos3dvMESA) @@ -29128,7 +29210,7 @@ GL_PREFIX(WindowPos3dvMESA): GL_PREFIX(WindowPos3fMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6128(%rax), %r11 + movq 6144(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -29140,13 +29222,13 @@ GL_PREFIX(WindowPos3fMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 6128(%rax), %r11 + movq 6144(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6128(%rax), %r11 + movq 6144(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -29158,7 +29240,7 @@ GL_PREFIX(WindowPos3fMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $24, %rsp - movq 6128(%rax), %r11 + movq 6144(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3fMESA), .-GL_PREFIX(WindowPos3fMESA) @@ -29169,25 +29251,25 @@ GL_PREFIX(WindowPos3fMESA): GL_PREFIX(WindowPos3fvMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6136(%rax), %r11 + movq 6152(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6136(%rax), %r11 + movq 6152(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6136(%rax), %r11 + movq 6152(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6136(%rax), %r11 + movq 6152(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3fvMESA), .-GL_PREFIX(WindowPos3fvMESA) @@ -29198,7 +29280,7 @@ GL_PREFIX(WindowPos3fvMESA): GL_PREFIX(WindowPos3iMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6144(%rax), %r11 + movq 6160(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29208,13 +29290,13 @@ GL_PREFIX(WindowPos3iMESA): popq %rdx popq %rsi popq %rdi - movq 6144(%rax), %r11 + movq 6160(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6144(%rax), %r11 + movq 6160(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29224,7 +29306,7 @@ GL_PREFIX(WindowPos3iMESA): popq %rdx popq %rsi popq %rdi - movq 6144(%rax), %r11 + movq 6160(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3iMESA), .-GL_PREFIX(WindowPos3iMESA) @@ -29235,25 +29317,25 @@ GL_PREFIX(WindowPos3iMESA): GL_PREFIX(WindowPos3ivMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6152(%rax), %r11 + movq 6168(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6152(%rax), %r11 + movq 6168(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6152(%rax), %r11 + movq 6168(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6152(%rax), %r11 + movq 6168(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3ivMESA), .-GL_PREFIX(WindowPos3ivMESA) @@ -29264,7 +29346,7 @@ GL_PREFIX(WindowPos3ivMESA): GL_PREFIX(WindowPos3sMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6160(%rax), %r11 + movq 6176(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29274,13 +29356,13 @@ GL_PREFIX(WindowPos3sMESA): popq %rdx popq %rsi popq %rdi - movq 6160(%rax), %r11 + movq 6176(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6160(%rax), %r11 + movq 6176(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29290,7 +29372,7 @@ GL_PREFIX(WindowPos3sMESA): popq %rdx popq %rsi popq %rdi - movq 6160(%rax), %r11 + movq 6176(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3sMESA), .-GL_PREFIX(WindowPos3sMESA) @@ -29301,25 +29383,25 @@ GL_PREFIX(WindowPos3sMESA): GL_PREFIX(WindowPos3svMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6168(%rax), %r11 + movq 6184(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6168(%rax), %r11 + movq 6184(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6168(%rax), %r11 + movq 6184(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6168(%rax), %r11 + movq 6184(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos3svMESA), .-GL_PREFIX(WindowPos3svMESA) @@ -29330,7 +29412,7 @@ GL_PREFIX(WindowPos3svMESA): GL_PREFIX(WindowPos4dMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6176(%rax), %r11 + movq 6192(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $40, %rsp @@ -29344,13 +29426,13 @@ GL_PREFIX(WindowPos4dMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $40, %rsp - movq 6176(%rax), %r11 + movq 6192(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6176(%rax), %r11 + movq 6192(%rax), %r11 jmp *%r11 1: subq $40, %rsp @@ -29364,7 +29446,7 @@ GL_PREFIX(WindowPos4dMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $40, %rsp - movq 6176(%rax), %r11 + movq 6192(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos4dMESA), .-GL_PREFIX(WindowPos4dMESA) @@ -29375,25 +29457,25 @@ GL_PREFIX(WindowPos4dMESA): GL_PREFIX(WindowPos4dvMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6184(%rax), %r11 + movq 6200(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6184(%rax), %r11 + movq 6200(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6184(%rax), %r11 + movq 6200(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6184(%rax), %r11 + movq 6200(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos4dvMESA), .-GL_PREFIX(WindowPos4dvMESA) @@ -29404,7 +29486,7 @@ GL_PREFIX(WindowPos4dvMESA): GL_PREFIX(WindowPos4fMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6192(%rax), %r11 + movq 6208(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $40, %rsp @@ -29418,13 +29500,13 @@ GL_PREFIX(WindowPos4fMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $40, %rsp - movq 6192(%rax), %r11 + movq 6208(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6192(%rax), %r11 + movq 6208(%rax), %r11 jmp *%r11 1: subq $40, %rsp @@ -29438,7 +29520,7 @@ GL_PREFIX(WindowPos4fMESA): movq 8(%rsp), %xmm1 movq (%rsp), %xmm0 addq $40, %rsp - movq 6192(%rax), %r11 + movq 6208(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos4fMESA), .-GL_PREFIX(WindowPos4fMESA) @@ -29449,25 +29531,25 @@ GL_PREFIX(WindowPos4fMESA): GL_PREFIX(WindowPos4fvMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6200(%rax), %r11 + movq 6216(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6200(%rax), %r11 + movq 6216(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6200(%rax), %r11 + movq 6216(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6200(%rax), %r11 + movq 6216(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos4fvMESA), .-GL_PREFIX(WindowPos4fvMESA) @@ -29478,7 +29560,7 @@ GL_PREFIX(WindowPos4fvMESA): GL_PREFIX(WindowPos4iMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6208(%rax), %r11 + movq 6224(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29492,13 +29574,13 @@ GL_PREFIX(WindowPos4iMESA): popq %rdx popq %rsi popq %rdi - movq 6208(%rax), %r11 + movq 6224(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6208(%rax), %r11 + movq 6224(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29512,7 +29594,7 @@ GL_PREFIX(WindowPos4iMESA): popq %rdx popq %rsi popq %rdi - movq 6208(%rax), %r11 + movq 6224(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos4iMESA), .-GL_PREFIX(WindowPos4iMESA) @@ -29523,25 +29605,25 @@ GL_PREFIX(WindowPos4iMESA): GL_PREFIX(WindowPos4ivMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6216(%rax), %r11 + movq 6232(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6216(%rax), %r11 + movq 6232(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6216(%rax), %r11 + movq 6232(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6216(%rax), %r11 + movq 6232(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos4ivMESA), .-GL_PREFIX(WindowPos4ivMESA) @@ -29552,7 +29634,7 @@ GL_PREFIX(WindowPos4ivMESA): GL_PREFIX(WindowPos4sMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6224(%rax), %r11 + movq 6240(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29566,13 +29648,13 @@ GL_PREFIX(WindowPos4sMESA): popq %rdx popq %rsi popq %rdi - movq 6224(%rax), %r11 + movq 6240(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6224(%rax), %r11 + movq 6240(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29586,7 +29668,7 @@ GL_PREFIX(WindowPos4sMESA): popq %rdx popq %rsi popq %rdi - movq 6224(%rax), %r11 + movq 6240(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos4sMESA), .-GL_PREFIX(WindowPos4sMESA) @@ -29597,37 +29679,37 @@ GL_PREFIX(WindowPos4sMESA): GL_PREFIX(WindowPos4svMESA): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6232(%rax), %r11 + movq 6248(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6232(%rax), %r11 + movq 6248(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6232(%rax), %r11 + movq 6248(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6232(%rax), %r11 + movq 6248(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(WindowPos4svMESA), .-GL_PREFIX(WindowPos4svMESA) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_780) - .type GL_PREFIX(_dispatch_stub_780), @function - HIDDEN(GL_PREFIX(_dispatch_stub_780)) -GL_PREFIX(_dispatch_stub_780): + .globl GL_PREFIX(_dispatch_stub_782) + .type GL_PREFIX(_dispatch_stub_782), @function + HIDDEN(GL_PREFIX(_dispatch_stub_782)) +GL_PREFIX(_dispatch_stub_782): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6240(%rax), %r11 + movq 6256(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29641,13 +29723,13 @@ GL_PREFIX(_dispatch_stub_780): popq %rdx popq %rsi popq %rdi - movq 6240(%rax), %r11 + movq 6256(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6240(%rax), %r11 + movq 6256(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29661,19 +29743,19 @@ GL_PREFIX(_dispatch_stub_780): popq %rdx popq %rsi popq %rdi - movq 6240(%rax), %r11 + movq 6256(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_780), .-GL_PREFIX(_dispatch_stub_780) + .size GL_PREFIX(_dispatch_stub_782), .-GL_PREFIX(_dispatch_stub_782) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_781) - .type GL_PREFIX(_dispatch_stub_781), @function - HIDDEN(GL_PREFIX(_dispatch_stub_781)) -GL_PREFIX(_dispatch_stub_781): + .globl GL_PREFIX(_dispatch_stub_783) + .type GL_PREFIX(_dispatch_stub_783), @function + HIDDEN(GL_PREFIX(_dispatch_stub_783)) +GL_PREFIX(_dispatch_stub_783): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6248(%rax), %r11 + movq 6264(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29691,13 +29773,13 @@ GL_PREFIX(_dispatch_stub_781): popq %rdx popq %rsi popq %rdi - movq 6248(%rax), %r11 + movq 6264(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6248(%rax), %r11 + movq 6264(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29715,19 +29797,19 @@ GL_PREFIX(_dispatch_stub_781): popq %rdx popq %rsi popq %rdi - movq 6248(%rax), %r11 + movq 6264(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_781), .-GL_PREFIX(_dispatch_stub_781) + .size GL_PREFIX(_dispatch_stub_783), .-GL_PREFIX(_dispatch_stub_783) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_782) - .type GL_PREFIX(_dispatch_stub_782), @function - HIDDEN(GL_PREFIX(_dispatch_stub_782)) -GL_PREFIX(_dispatch_stub_782): + .globl GL_PREFIX(_dispatch_stub_784) + .type GL_PREFIX(_dispatch_stub_784), @function + HIDDEN(GL_PREFIX(_dispatch_stub_784)) +GL_PREFIX(_dispatch_stub_784): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6256(%rax), %r11 + movq 6272(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29737,13 +29819,13 @@ GL_PREFIX(_dispatch_stub_782): popq %rbp popq %rsi popq %rdi - movq 6256(%rax), %r11 + movq 6272(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6256(%rax), %r11 + movq 6272(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29753,49 +29835,49 @@ GL_PREFIX(_dispatch_stub_782): popq %rbp popq %rsi popq %rdi - movq 6256(%rax), %r11 + movq 6272(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_782), .-GL_PREFIX(_dispatch_stub_782) + .size GL_PREFIX(_dispatch_stub_784), .-GL_PREFIX(_dispatch_stub_784) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_783) - .type GL_PREFIX(_dispatch_stub_783), @function - HIDDEN(GL_PREFIX(_dispatch_stub_783)) -GL_PREFIX(_dispatch_stub_783): + .globl GL_PREFIX(_dispatch_stub_785) + .type GL_PREFIX(_dispatch_stub_785), @function + HIDDEN(GL_PREFIX(_dispatch_stub_785)) +GL_PREFIX(_dispatch_stub_785): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6264(%rax), %r11 + movq 6280(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6264(%rax), %r11 + movq 6280(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6264(%rax), %r11 + movq 6280(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6264(%rax), %r11 + movq 6280(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_783), .-GL_PREFIX(_dispatch_stub_783) + .size GL_PREFIX(_dispatch_stub_785), .-GL_PREFIX(_dispatch_stub_785) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_784) - .type GL_PREFIX(_dispatch_stub_784), @function - HIDDEN(GL_PREFIX(_dispatch_stub_784)) -GL_PREFIX(_dispatch_stub_784): + .globl GL_PREFIX(_dispatch_stub_786) + .type GL_PREFIX(_dispatch_stub_786), @function + HIDDEN(GL_PREFIX(_dispatch_stub_786)) +GL_PREFIX(_dispatch_stub_786): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6272(%rax), %r11 + movq 6288(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29805,13 +29887,13 @@ GL_PREFIX(_dispatch_stub_784): popq %rbp popq %rsi popq %rdi - movq 6272(%rax), %r11 + movq 6288(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6272(%rax), %r11 + movq 6288(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29821,19 +29903,19 @@ GL_PREFIX(_dispatch_stub_784): popq %rbp popq %rsi popq %rdi - movq 6272(%rax), %r11 + movq 6288(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_784), .-GL_PREFIX(_dispatch_stub_784) + .size GL_PREFIX(_dispatch_stub_786), .-GL_PREFIX(_dispatch_stub_786) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_785) - .type GL_PREFIX(_dispatch_stub_785), @function - HIDDEN(GL_PREFIX(_dispatch_stub_785)) -GL_PREFIX(_dispatch_stub_785): + .globl GL_PREFIX(_dispatch_stub_787) + .type GL_PREFIX(_dispatch_stub_787), @function + HIDDEN(GL_PREFIX(_dispatch_stub_787)) +GL_PREFIX(_dispatch_stub_787): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6280(%rax), %r11 + movq 6296(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29843,13 +29925,13 @@ GL_PREFIX(_dispatch_stub_785): popq %rdx popq %rsi popq %rdi - movq 6280(%rax), %r11 + movq 6296(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6280(%rax), %r11 + movq 6296(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29859,49 +29941,49 @@ GL_PREFIX(_dispatch_stub_785): popq %rdx popq %rsi popq %rdi - movq 6280(%rax), %r11 + movq 6296(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_785), .-GL_PREFIX(_dispatch_stub_785) + .size GL_PREFIX(_dispatch_stub_787), .-GL_PREFIX(_dispatch_stub_787) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_786) - .type GL_PREFIX(_dispatch_stub_786), @function - HIDDEN(GL_PREFIX(_dispatch_stub_786)) -GL_PREFIX(_dispatch_stub_786): + .globl GL_PREFIX(_dispatch_stub_788) + .type GL_PREFIX(_dispatch_stub_788), @function + HIDDEN(GL_PREFIX(_dispatch_stub_788)) +GL_PREFIX(_dispatch_stub_788): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6288(%rax), %r11 + movq 6304(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6288(%rax), %r11 + movq 6304(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6288(%rax), %r11 + movq 6304(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6288(%rax), %r11 + movq 6304(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_786), .-GL_PREFIX(_dispatch_stub_786) + .size GL_PREFIX(_dispatch_stub_788), .-GL_PREFIX(_dispatch_stub_788) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_787) - .type GL_PREFIX(_dispatch_stub_787), @function - HIDDEN(GL_PREFIX(_dispatch_stub_787)) -GL_PREFIX(_dispatch_stub_787): + .globl GL_PREFIX(_dispatch_stub_789) + .type GL_PREFIX(_dispatch_stub_789), @function + HIDDEN(GL_PREFIX(_dispatch_stub_789)) +GL_PREFIX(_dispatch_stub_789): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6296(%rax), %r11 + movq 6312(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29911,13 +29993,13 @@ GL_PREFIX(_dispatch_stub_787): popq %rbp popq %rsi popq %rdi - movq 6296(%rax), %r11 + movq 6312(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6296(%rax), %r11 + movq 6312(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29927,40 +30009,40 @@ GL_PREFIX(_dispatch_stub_787): popq %rbp popq %rsi popq %rdi - movq 6296(%rax), %r11 + movq 6312(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_787), .-GL_PREFIX(_dispatch_stub_787) + .size GL_PREFIX(_dispatch_stub_789), .-GL_PREFIX(_dispatch_stub_789) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_788) - .type GL_PREFIX(_dispatch_stub_788), @function - HIDDEN(GL_PREFIX(_dispatch_stub_788)) -GL_PREFIX(_dispatch_stub_788): + .globl GL_PREFIX(_dispatch_stub_790) + .type GL_PREFIX(_dispatch_stub_790), @function + HIDDEN(GL_PREFIX(_dispatch_stub_790)) +GL_PREFIX(_dispatch_stub_790): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6304(%rax), %r11 + movq 6320(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6304(%rax), %r11 + movq 6320(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6304(%rax), %r11 + movq 6320(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6304(%rax), %r11 + movq 6320(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_788), .-GL_PREFIX(_dispatch_stub_788) + .size GL_PREFIX(_dispatch_stub_790), .-GL_PREFIX(_dispatch_stub_790) .p2align 4,,15 .globl GL_PREFIX(AreProgramsResidentNV) @@ -29968,7 +30050,7 @@ GL_PREFIX(_dispatch_stub_788): GL_PREFIX(AreProgramsResidentNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6312(%rax), %r11 + movq 6328(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -29978,13 +30060,13 @@ GL_PREFIX(AreProgramsResidentNV): popq %rdx popq %rsi popq %rdi - movq 6312(%rax), %r11 + movq 6328(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6312(%rax), %r11 + movq 6328(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -29994,7 +30076,7 @@ GL_PREFIX(AreProgramsResidentNV): popq %rdx popq %rsi popq %rdi - movq 6312(%rax), %r11 + movq 6328(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(AreProgramsResidentNV), .-GL_PREFIX(AreProgramsResidentNV) @@ -30005,7 +30087,7 @@ GL_PREFIX(AreProgramsResidentNV): GL_PREFIX(BindProgramNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6320(%rax), %r11 + movq 6336(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30015,13 +30097,13 @@ GL_PREFIX(BindProgramNV): popq %rbp popq %rsi popq %rdi - movq 6320(%rax), %r11 + movq 6336(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6320(%rax), %r11 + movq 6336(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30031,7 +30113,7 @@ GL_PREFIX(BindProgramNV): popq %rbp popq %rsi popq %rdi - movq 6320(%rax), %r11 + movq 6336(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindProgramNV), .-GL_PREFIX(BindProgramNV) @@ -30042,7 +30124,7 @@ GL_PREFIX(BindProgramNV): GL_PREFIX(DeleteProgramsNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6328(%rax), %r11 + movq 6344(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30052,13 +30134,13 @@ GL_PREFIX(DeleteProgramsNV): popq %rbp popq %rsi popq %rdi - movq 6328(%rax), %r11 + movq 6344(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6328(%rax), %r11 + movq 6344(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30068,7 +30150,7 @@ GL_PREFIX(DeleteProgramsNV): popq %rbp popq %rsi popq %rdi - movq 6328(%rax), %r11 + movq 6344(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DeleteProgramsNV), .-GL_PREFIX(DeleteProgramsNV) @@ -30079,7 +30161,7 @@ GL_PREFIX(DeleteProgramsNV): GL_PREFIX(ExecuteProgramNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6336(%rax), %r11 + movq 6352(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30089,13 +30171,13 @@ GL_PREFIX(ExecuteProgramNV): popq %rdx popq %rsi popq %rdi - movq 6336(%rax), %r11 + movq 6352(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6336(%rax), %r11 + movq 6352(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30105,7 +30187,7 @@ GL_PREFIX(ExecuteProgramNV): popq %rdx popq %rsi popq %rdi - movq 6336(%rax), %r11 + movq 6352(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ExecuteProgramNV), .-GL_PREFIX(ExecuteProgramNV) @@ -30116,7 +30198,7 @@ GL_PREFIX(ExecuteProgramNV): GL_PREFIX(GenProgramsNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6344(%rax), %r11 + movq 6360(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30126,13 +30208,13 @@ GL_PREFIX(GenProgramsNV): popq %rbp popq %rsi popq %rdi - movq 6344(%rax), %r11 + movq 6360(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6344(%rax), %r11 + movq 6360(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30142,7 +30224,7 @@ GL_PREFIX(GenProgramsNV): popq %rbp popq %rsi popq %rdi - movq 6344(%rax), %r11 + movq 6360(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenProgramsNV), .-GL_PREFIX(GenProgramsNV) @@ -30153,7 +30235,7 @@ GL_PREFIX(GenProgramsNV): GL_PREFIX(GetProgramParameterdvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6352(%rax), %r11 + movq 6368(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30167,13 +30249,13 @@ GL_PREFIX(GetProgramParameterdvNV): popq %rdx popq %rsi popq %rdi - movq 6352(%rax), %r11 + movq 6368(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6352(%rax), %r11 + movq 6368(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30187,7 +30269,7 @@ GL_PREFIX(GetProgramParameterdvNV): popq %rdx popq %rsi popq %rdi - movq 6352(%rax), %r11 + movq 6368(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetProgramParameterdvNV), .-GL_PREFIX(GetProgramParameterdvNV) @@ -30198,7 +30280,7 @@ GL_PREFIX(GetProgramParameterdvNV): GL_PREFIX(GetProgramParameterfvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6360(%rax), %r11 + movq 6376(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30212,13 +30294,13 @@ GL_PREFIX(GetProgramParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 6360(%rax), %r11 + movq 6376(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6360(%rax), %r11 + movq 6376(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30232,7 +30314,7 @@ GL_PREFIX(GetProgramParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 6360(%rax), %r11 + movq 6376(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetProgramParameterfvNV), .-GL_PREFIX(GetProgramParameterfvNV) @@ -30243,7 +30325,7 @@ GL_PREFIX(GetProgramParameterfvNV): GL_PREFIX(GetProgramStringNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6368(%rax), %r11 + movq 6384(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30253,13 +30335,13 @@ GL_PREFIX(GetProgramStringNV): popq %rdx popq %rsi popq %rdi - movq 6368(%rax), %r11 + movq 6384(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6368(%rax), %r11 + movq 6384(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30269,7 +30351,7 @@ GL_PREFIX(GetProgramStringNV): popq %rdx popq %rsi popq %rdi - movq 6368(%rax), %r11 + movq 6384(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetProgramStringNV), .-GL_PREFIX(GetProgramStringNV) @@ -30280,7 +30362,7 @@ GL_PREFIX(GetProgramStringNV): GL_PREFIX(GetProgramivNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6376(%rax), %r11 + movq 6392(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30290,13 +30372,13 @@ GL_PREFIX(GetProgramivNV): popq %rdx popq %rsi popq %rdi - movq 6376(%rax), %r11 + movq 6392(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6376(%rax), %r11 + movq 6392(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30306,7 +30388,7 @@ GL_PREFIX(GetProgramivNV): popq %rdx popq %rsi popq %rdi - movq 6376(%rax), %r11 + movq 6392(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetProgramivNV), .-GL_PREFIX(GetProgramivNV) @@ -30317,7 +30399,7 @@ GL_PREFIX(GetProgramivNV): GL_PREFIX(GetTrackMatrixivNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6384(%rax), %r11 + movq 6400(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30331,13 +30413,13 @@ GL_PREFIX(GetTrackMatrixivNV): popq %rdx popq %rsi popq %rdi - movq 6384(%rax), %r11 + movq 6400(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6384(%rax), %r11 + movq 6400(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30351,7 +30433,7 @@ GL_PREFIX(GetTrackMatrixivNV): popq %rdx popq %rsi popq %rdi - movq 6384(%rax), %r11 + movq 6400(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetTrackMatrixivNV), .-GL_PREFIX(GetTrackMatrixivNV) @@ -30362,7 +30444,7 @@ GL_PREFIX(GetTrackMatrixivNV): GL_PREFIX(GetVertexAttribPointervNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6392(%rax), %r11 + movq 6408(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30372,13 +30454,13 @@ GL_PREFIX(GetVertexAttribPointervNV): popq %rdx popq %rsi popq %rdi - movq 6392(%rax), %r11 + movq 6408(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6392(%rax), %r11 + movq 6408(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30388,7 +30470,7 @@ GL_PREFIX(GetVertexAttribPointervNV): popq %rdx popq %rsi popq %rdi - movq 6392(%rax), %r11 + movq 6408(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetVertexAttribPointervNV), .-GL_PREFIX(GetVertexAttribPointervNV) @@ -30399,7 +30481,7 @@ GL_PREFIX(GetVertexAttribPointervNV): GL_PREFIX(GetVertexAttribdvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6400(%rax), %r11 + movq 6416(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30409,13 +30491,13 @@ GL_PREFIX(GetVertexAttribdvNV): popq %rdx popq %rsi popq %rdi - movq 6400(%rax), %r11 + movq 6416(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6400(%rax), %r11 + movq 6416(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30425,7 +30507,7 @@ GL_PREFIX(GetVertexAttribdvNV): popq %rdx popq %rsi popq %rdi - movq 6400(%rax), %r11 + movq 6416(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetVertexAttribdvNV), .-GL_PREFIX(GetVertexAttribdvNV) @@ -30436,7 +30518,7 @@ GL_PREFIX(GetVertexAttribdvNV): GL_PREFIX(GetVertexAttribfvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6408(%rax), %r11 + movq 6424(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30446,13 +30528,13 @@ GL_PREFIX(GetVertexAttribfvNV): popq %rdx popq %rsi popq %rdi - movq 6408(%rax), %r11 + movq 6424(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6408(%rax), %r11 + movq 6424(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30462,7 +30544,7 @@ GL_PREFIX(GetVertexAttribfvNV): popq %rdx popq %rsi popq %rdi - movq 6408(%rax), %r11 + movq 6424(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetVertexAttribfvNV), .-GL_PREFIX(GetVertexAttribfvNV) @@ -30473,7 +30555,7 @@ GL_PREFIX(GetVertexAttribfvNV): GL_PREFIX(GetVertexAttribivNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6416(%rax), %r11 + movq 6432(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30483,13 +30565,13 @@ GL_PREFIX(GetVertexAttribivNV): popq %rdx popq %rsi popq %rdi - movq 6416(%rax), %r11 + movq 6432(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6416(%rax), %r11 + movq 6432(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30499,7 +30581,7 @@ GL_PREFIX(GetVertexAttribivNV): popq %rdx popq %rsi popq %rdi - movq 6416(%rax), %r11 + movq 6432(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetVertexAttribivNV), .-GL_PREFIX(GetVertexAttribivNV) @@ -30510,25 +30592,25 @@ GL_PREFIX(GetVertexAttribivNV): GL_PREFIX(IsProgramNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6424(%rax), %r11 + movq 6440(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6424(%rax), %r11 + movq 6440(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6424(%rax), %r11 + movq 6440(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6424(%rax), %r11 + movq 6440(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IsProgramNV), .-GL_PREFIX(IsProgramNV) @@ -30539,7 +30621,7 @@ GL_PREFIX(IsProgramNV): GL_PREFIX(LoadProgramNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6432(%rax), %r11 + movq 6448(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30553,13 +30635,13 @@ GL_PREFIX(LoadProgramNV): popq %rdx popq %rsi popq %rdi - movq 6432(%rax), %r11 + movq 6448(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6432(%rax), %r11 + movq 6448(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30573,7 +30655,7 @@ GL_PREFIX(LoadProgramNV): popq %rdx popq %rsi popq %rdi - movq 6432(%rax), %r11 + movq 6448(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(LoadProgramNV), .-GL_PREFIX(LoadProgramNV) @@ -30584,7 +30666,7 @@ GL_PREFIX(LoadProgramNV): GL_PREFIX(ProgramParameters4dvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6440(%rax), %r11 + movq 6456(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30598,13 +30680,13 @@ GL_PREFIX(ProgramParameters4dvNV): popq %rdx popq %rsi popq %rdi - movq 6440(%rax), %r11 + movq 6456(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6440(%rax), %r11 + movq 6456(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30618,7 +30700,7 @@ GL_PREFIX(ProgramParameters4dvNV): popq %rdx popq %rsi popq %rdi - movq 6440(%rax), %r11 + movq 6456(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProgramParameters4dvNV), .-GL_PREFIX(ProgramParameters4dvNV) @@ -30629,7 +30711,7 @@ GL_PREFIX(ProgramParameters4dvNV): GL_PREFIX(ProgramParameters4fvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6448(%rax), %r11 + movq 6464(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30643,13 +30725,13 @@ GL_PREFIX(ProgramParameters4fvNV): popq %rdx popq %rsi popq %rdi - movq 6448(%rax), %r11 + movq 6464(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6448(%rax), %r11 + movq 6464(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30663,7 +30745,7 @@ GL_PREFIX(ProgramParameters4fvNV): popq %rdx popq %rsi popq %rdi - movq 6448(%rax), %r11 + movq 6464(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProgramParameters4fvNV), .-GL_PREFIX(ProgramParameters4fvNV) @@ -30674,7 +30756,7 @@ GL_PREFIX(ProgramParameters4fvNV): GL_PREFIX(RequestResidentProgramsNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6456(%rax), %r11 + movq 6472(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30684,13 +30766,13 @@ GL_PREFIX(RequestResidentProgramsNV): popq %rbp popq %rsi popq %rdi - movq 6456(%rax), %r11 + movq 6472(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6456(%rax), %r11 + movq 6472(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30700,7 +30782,7 @@ GL_PREFIX(RequestResidentProgramsNV): popq %rbp popq %rsi popq %rdi - movq 6456(%rax), %r11 + movq 6472(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(RequestResidentProgramsNV), .-GL_PREFIX(RequestResidentProgramsNV) @@ -30711,7 +30793,7 @@ GL_PREFIX(RequestResidentProgramsNV): GL_PREFIX(TrackMatrixNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6464(%rax), %r11 + movq 6480(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30725,13 +30807,13 @@ GL_PREFIX(TrackMatrixNV): popq %rdx popq %rsi popq %rdi - movq 6464(%rax), %r11 + movq 6480(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6464(%rax), %r11 + movq 6480(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30745,7 +30827,7 @@ GL_PREFIX(TrackMatrixNV): popq %rdx popq %rsi popq %rdi - movq 6464(%rax), %r11 + movq 6480(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TrackMatrixNV), .-GL_PREFIX(TrackMatrixNV) @@ -30756,7 +30838,7 @@ GL_PREFIX(TrackMatrixNV): GL_PREFIX(VertexAttrib1dNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6472(%rax), %r11 + movq 6488(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -30766,13 +30848,13 @@ GL_PREFIX(VertexAttrib1dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 6472(%rax), %r11 + movq 6488(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6472(%rax), %r11 + movq 6488(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -30782,7 +30864,7 @@ GL_PREFIX(VertexAttrib1dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 6472(%rax), %r11 + movq 6488(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib1dNV), .-GL_PREFIX(VertexAttrib1dNV) @@ -30793,7 +30875,7 @@ GL_PREFIX(VertexAttrib1dNV): GL_PREFIX(VertexAttrib1dvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6480(%rax), %r11 + movq 6496(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30803,13 +30885,13 @@ GL_PREFIX(VertexAttrib1dvNV): popq %rbp popq %rsi popq %rdi - movq 6480(%rax), %r11 + movq 6496(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6480(%rax), %r11 + movq 6496(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30819,7 +30901,7 @@ GL_PREFIX(VertexAttrib1dvNV): popq %rbp popq %rsi popq %rdi - movq 6480(%rax), %r11 + movq 6496(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib1dvNV), .-GL_PREFIX(VertexAttrib1dvNV) @@ -30830,7 +30912,7 @@ GL_PREFIX(VertexAttrib1dvNV): GL_PREFIX(VertexAttrib1fNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6488(%rax), %r11 + movq 6504(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -30840,13 +30922,13 @@ GL_PREFIX(VertexAttrib1fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 6488(%rax), %r11 + movq 6504(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6488(%rax), %r11 + movq 6504(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -30856,7 +30938,7 @@ GL_PREFIX(VertexAttrib1fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 6488(%rax), %r11 + movq 6504(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib1fNV), .-GL_PREFIX(VertexAttrib1fNV) @@ -30867,7 +30949,7 @@ GL_PREFIX(VertexAttrib1fNV): GL_PREFIX(VertexAttrib1fvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6496(%rax), %r11 + movq 6512(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30877,13 +30959,13 @@ GL_PREFIX(VertexAttrib1fvNV): popq %rbp popq %rsi popq %rdi - movq 6496(%rax), %r11 + movq 6512(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6496(%rax), %r11 + movq 6512(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30893,7 +30975,7 @@ GL_PREFIX(VertexAttrib1fvNV): popq %rbp popq %rsi popq %rdi - movq 6496(%rax), %r11 + movq 6512(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib1fvNV), .-GL_PREFIX(VertexAttrib1fvNV) @@ -30904,7 +30986,7 @@ GL_PREFIX(VertexAttrib1fvNV): GL_PREFIX(VertexAttrib1sNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6504(%rax), %r11 + movq 6520(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30914,13 +30996,13 @@ GL_PREFIX(VertexAttrib1sNV): popq %rbp popq %rsi popq %rdi - movq 6504(%rax), %r11 + movq 6520(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6504(%rax), %r11 + movq 6520(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30930,7 +31012,7 @@ GL_PREFIX(VertexAttrib1sNV): popq %rbp popq %rsi popq %rdi - movq 6504(%rax), %r11 + movq 6520(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib1sNV), .-GL_PREFIX(VertexAttrib1sNV) @@ -30941,7 +31023,7 @@ GL_PREFIX(VertexAttrib1sNV): GL_PREFIX(VertexAttrib1svNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6512(%rax), %r11 + movq 6528(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -30951,13 +31033,13 @@ GL_PREFIX(VertexAttrib1svNV): popq %rbp popq %rsi popq %rdi - movq 6512(%rax), %r11 + movq 6528(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6512(%rax), %r11 + movq 6528(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -30967,7 +31049,7 @@ GL_PREFIX(VertexAttrib1svNV): popq %rbp popq %rsi popq %rdi - movq 6512(%rax), %r11 + movq 6528(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib1svNV), .-GL_PREFIX(VertexAttrib1svNV) @@ -30978,7 +31060,7 @@ GL_PREFIX(VertexAttrib1svNV): GL_PREFIX(VertexAttrib2dNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6520(%rax), %r11 + movq 6536(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -30990,13 +31072,13 @@ GL_PREFIX(VertexAttrib2dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 6520(%rax), %r11 + movq 6536(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6520(%rax), %r11 + movq 6536(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -31008,7 +31090,7 @@ GL_PREFIX(VertexAttrib2dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 6520(%rax), %r11 + movq 6536(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib2dNV), .-GL_PREFIX(VertexAttrib2dNV) @@ -31019,7 +31101,7 @@ GL_PREFIX(VertexAttrib2dNV): GL_PREFIX(VertexAttrib2dvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6528(%rax), %r11 + movq 6544(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31029,13 +31111,13 @@ GL_PREFIX(VertexAttrib2dvNV): popq %rbp popq %rsi popq %rdi - movq 6528(%rax), %r11 + movq 6544(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6528(%rax), %r11 + movq 6544(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31045,7 +31127,7 @@ GL_PREFIX(VertexAttrib2dvNV): popq %rbp popq %rsi popq %rdi - movq 6528(%rax), %r11 + movq 6544(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib2dvNV), .-GL_PREFIX(VertexAttrib2dvNV) @@ -31056,7 +31138,7 @@ GL_PREFIX(VertexAttrib2dvNV): GL_PREFIX(VertexAttrib2fNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6536(%rax), %r11 + movq 6552(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $24, %rsp @@ -31068,13 +31150,13 @@ GL_PREFIX(VertexAttrib2fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 6536(%rax), %r11 + movq 6552(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6536(%rax), %r11 + movq 6552(%rax), %r11 jmp *%r11 1: subq $24, %rsp @@ -31086,7 +31168,7 @@ GL_PREFIX(VertexAttrib2fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $24, %rsp - movq 6536(%rax), %r11 + movq 6552(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib2fNV), .-GL_PREFIX(VertexAttrib2fNV) @@ -31097,7 +31179,7 @@ GL_PREFIX(VertexAttrib2fNV): GL_PREFIX(VertexAttrib2fvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6544(%rax), %r11 + movq 6560(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31107,13 +31189,13 @@ GL_PREFIX(VertexAttrib2fvNV): popq %rbp popq %rsi popq %rdi - movq 6544(%rax), %r11 + movq 6560(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6544(%rax), %r11 + movq 6560(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31123,7 +31205,7 @@ GL_PREFIX(VertexAttrib2fvNV): popq %rbp popq %rsi popq %rdi - movq 6544(%rax), %r11 + movq 6560(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib2fvNV), .-GL_PREFIX(VertexAttrib2fvNV) @@ -31134,7 +31216,7 @@ GL_PREFIX(VertexAttrib2fvNV): GL_PREFIX(VertexAttrib2sNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6552(%rax), %r11 + movq 6568(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31144,13 +31226,13 @@ GL_PREFIX(VertexAttrib2sNV): popq %rdx popq %rsi popq %rdi - movq 6552(%rax), %r11 + movq 6568(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6552(%rax), %r11 + movq 6568(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31160,7 +31242,7 @@ GL_PREFIX(VertexAttrib2sNV): popq %rdx popq %rsi popq %rdi - movq 6552(%rax), %r11 + movq 6568(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib2sNV), .-GL_PREFIX(VertexAttrib2sNV) @@ -31171,7 +31253,7 @@ GL_PREFIX(VertexAttrib2sNV): GL_PREFIX(VertexAttrib2svNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6560(%rax), %r11 + movq 6576(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31181,13 +31263,13 @@ GL_PREFIX(VertexAttrib2svNV): popq %rbp popq %rsi popq %rdi - movq 6560(%rax), %r11 + movq 6576(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6560(%rax), %r11 + movq 6576(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31197,7 +31279,7 @@ GL_PREFIX(VertexAttrib2svNV): popq %rbp popq %rsi popq %rdi - movq 6560(%rax), %r11 + movq 6576(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib2svNV), .-GL_PREFIX(VertexAttrib2svNV) @@ -31208,7 +31290,7 @@ GL_PREFIX(VertexAttrib2svNV): GL_PREFIX(VertexAttrib3dNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6568(%rax), %r11 + movq 6584(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $40, %rsp @@ -31222,13 +31304,13 @@ GL_PREFIX(VertexAttrib3dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - movq 6568(%rax), %r11 + movq 6584(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6568(%rax), %r11 + movq 6584(%rax), %r11 jmp *%r11 1: subq $40, %rsp @@ -31242,7 +31324,7 @@ GL_PREFIX(VertexAttrib3dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - movq 6568(%rax), %r11 + movq 6584(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib3dNV), .-GL_PREFIX(VertexAttrib3dNV) @@ -31253,7 +31335,7 @@ GL_PREFIX(VertexAttrib3dNV): GL_PREFIX(VertexAttrib3dvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6576(%rax), %r11 + movq 6592(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31263,13 +31345,13 @@ GL_PREFIX(VertexAttrib3dvNV): popq %rbp popq %rsi popq %rdi - movq 6576(%rax), %r11 + movq 6592(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6576(%rax), %r11 + movq 6592(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31279,7 +31361,7 @@ GL_PREFIX(VertexAttrib3dvNV): popq %rbp popq %rsi popq %rdi - movq 6576(%rax), %r11 + movq 6592(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib3dvNV), .-GL_PREFIX(VertexAttrib3dvNV) @@ -31290,7 +31372,7 @@ GL_PREFIX(VertexAttrib3dvNV): GL_PREFIX(VertexAttrib3fNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6584(%rax), %r11 + movq 6600(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $40, %rsp @@ -31304,13 +31386,13 @@ GL_PREFIX(VertexAttrib3fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - movq 6584(%rax), %r11 + movq 6600(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6584(%rax), %r11 + movq 6600(%rax), %r11 jmp *%r11 1: subq $40, %rsp @@ -31324,7 +31406,7 @@ GL_PREFIX(VertexAttrib3fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - movq 6584(%rax), %r11 + movq 6600(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib3fNV), .-GL_PREFIX(VertexAttrib3fNV) @@ -31335,7 +31417,7 @@ GL_PREFIX(VertexAttrib3fNV): GL_PREFIX(VertexAttrib3fvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6592(%rax), %r11 + movq 6608(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31345,13 +31427,13 @@ GL_PREFIX(VertexAttrib3fvNV): popq %rbp popq %rsi popq %rdi - movq 6592(%rax), %r11 + movq 6608(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6592(%rax), %r11 + movq 6608(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31361,7 +31443,7 @@ GL_PREFIX(VertexAttrib3fvNV): popq %rbp popq %rsi popq %rdi - movq 6592(%rax), %r11 + movq 6608(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib3fvNV), .-GL_PREFIX(VertexAttrib3fvNV) @@ -31372,7 +31454,7 @@ GL_PREFIX(VertexAttrib3fvNV): GL_PREFIX(VertexAttrib3sNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6600(%rax), %r11 + movq 6616(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31386,13 +31468,13 @@ GL_PREFIX(VertexAttrib3sNV): popq %rdx popq %rsi popq %rdi - movq 6600(%rax), %r11 + movq 6616(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6600(%rax), %r11 + movq 6616(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31406,7 +31488,7 @@ GL_PREFIX(VertexAttrib3sNV): popq %rdx popq %rsi popq %rdi - movq 6600(%rax), %r11 + movq 6616(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib3sNV), .-GL_PREFIX(VertexAttrib3sNV) @@ -31417,7 +31499,7 @@ GL_PREFIX(VertexAttrib3sNV): GL_PREFIX(VertexAttrib3svNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6608(%rax), %r11 + movq 6624(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31427,13 +31509,13 @@ GL_PREFIX(VertexAttrib3svNV): popq %rbp popq %rsi popq %rdi - movq 6608(%rax), %r11 + movq 6624(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6608(%rax), %r11 + movq 6624(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31443,7 +31525,7 @@ GL_PREFIX(VertexAttrib3svNV): popq %rbp popq %rsi popq %rdi - movq 6608(%rax), %r11 + movq 6624(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib3svNV), .-GL_PREFIX(VertexAttrib3svNV) @@ -31454,7 +31536,7 @@ GL_PREFIX(VertexAttrib3svNV): GL_PREFIX(VertexAttrib4dNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6616(%rax), %r11 + movq 6632(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $40, %rsp @@ -31470,13 +31552,13 @@ GL_PREFIX(VertexAttrib4dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - movq 6616(%rax), %r11 + movq 6632(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6616(%rax), %r11 + movq 6632(%rax), %r11 jmp *%r11 1: subq $40, %rsp @@ -31492,7 +31574,7 @@ GL_PREFIX(VertexAttrib4dNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - movq 6616(%rax), %r11 + movq 6632(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4dNV), .-GL_PREFIX(VertexAttrib4dNV) @@ -31503,7 +31585,7 @@ GL_PREFIX(VertexAttrib4dNV): GL_PREFIX(VertexAttrib4dvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6624(%rax), %r11 + movq 6640(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31513,13 +31595,13 @@ GL_PREFIX(VertexAttrib4dvNV): popq %rbp popq %rsi popq %rdi - movq 6624(%rax), %r11 + movq 6640(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6624(%rax), %r11 + movq 6640(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31529,7 +31611,7 @@ GL_PREFIX(VertexAttrib4dvNV): popq %rbp popq %rsi popq %rdi - movq 6624(%rax), %r11 + movq 6640(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4dvNV), .-GL_PREFIX(VertexAttrib4dvNV) @@ -31540,7 +31622,7 @@ GL_PREFIX(VertexAttrib4dvNV): GL_PREFIX(VertexAttrib4fNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6632(%rax), %r11 + movq 6648(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $40, %rsp @@ -31556,13 +31638,13 @@ GL_PREFIX(VertexAttrib4fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - movq 6632(%rax), %r11 + movq 6648(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6632(%rax), %r11 + movq 6648(%rax), %r11 jmp *%r11 1: subq $40, %rsp @@ -31578,7 +31660,7 @@ GL_PREFIX(VertexAttrib4fNV): movq 8(%rsp), %xmm0 movq (%rsp), %rdi addq $40, %rsp - movq 6632(%rax), %r11 + movq 6648(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4fNV), .-GL_PREFIX(VertexAttrib4fNV) @@ -31589,7 +31671,7 @@ GL_PREFIX(VertexAttrib4fNV): GL_PREFIX(VertexAttrib4fvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6640(%rax), %r11 + movq 6656(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31599,13 +31681,13 @@ GL_PREFIX(VertexAttrib4fvNV): popq %rbp popq %rsi popq %rdi - movq 6640(%rax), %r11 + movq 6656(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6640(%rax), %r11 + movq 6656(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31615,7 +31697,7 @@ GL_PREFIX(VertexAttrib4fvNV): popq %rbp popq %rsi popq %rdi - movq 6640(%rax), %r11 + movq 6656(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4fvNV), .-GL_PREFIX(VertexAttrib4fvNV) @@ -31626,7 +31708,7 @@ GL_PREFIX(VertexAttrib4fvNV): GL_PREFIX(VertexAttrib4sNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6648(%rax), %r11 + movq 6664(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31640,13 +31722,13 @@ GL_PREFIX(VertexAttrib4sNV): popq %rdx popq %rsi popq %rdi - movq 6648(%rax), %r11 + movq 6664(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6648(%rax), %r11 + movq 6664(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31660,7 +31742,7 @@ GL_PREFIX(VertexAttrib4sNV): popq %rdx popq %rsi popq %rdi - movq 6648(%rax), %r11 + movq 6664(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4sNV), .-GL_PREFIX(VertexAttrib4sNV) @@ -31671,7 +31753,7 @@ GL_PREFIX(VertexAttrib4sNV): GL_PREFIX(VertexAttrib4svNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6656(%rax), %r11 + movq 6672(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31681,13 +31763,13 @@ GL_PREFIX(VertexAttrib4svNV): popq %rbp popq %rsi popq %rdi - movq 6656(%rax), %r11 + movq 6672(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6656(%rax), %r11 + movq 6672(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31697,7 +31779,7 @@ GL_PREFIX(VertexAttrib4svNV): popq %rbp popq %rsi popq %rdi - movq 6656(%rax), %r11 + movq 6672(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4svNV), .-GL_PREFIX(VertexAttrib4svNV) @@ -31708,7 +31790,7 @@ GL_PREFIX(VertexAttrib4svNV): GL_PREFIX(VertexAttrib4ubNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6664(%rax), %r11 + movq 6680(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31722,13 +31804,13 @@ GL_PREFIX(VertexAttrib4ubNV): popq %rdx popq %rsi popq %rdi - movq 6664(%rax), %r11 + movq 6680(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6664(%rax), %r11 + movq 6680(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31742,7 +31824,7 @@ GL_PREFIX(VertexAttrib4ubNV): popq %rdx popq %rsi popq %rdi - movq 6664(%rax), %r11 + movq 6680(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4ubNV), .-GL_PREFIX(VertexAttrib4ubNV) @@ -31753,7 +31835,7 @@ GL_PREFIX(VertexAttrib4ubNV): GL_PREFIX(VertexAttrib4ubvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6672(%rax), %r11 + movq 6688(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31763,13 +31845,13 @@ GL_PREFIX(VertexAttrib4ubvNV): popq %rbp popq %rsi popq %rdi - movq 6672(%rax), %r11 + movq 6688(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6672(%rax), %r11 + movq 6688(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31779,7 +31861,7 @@ GL_PREFIX(VertexAttrib4ubvNV): popq %rbp popq %rsi popq %rdi - movq 6672(%rax), %r11 + movq 6688(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttrib4ubvNV), .-GL_PREFIX(VertexAttrib4ubvNV) @@ -31790,7 +31872,7 @@ GL_PREFIX(VertexAttrib4ubvNV): GL_PREFIX(VertexAttribPointerNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6680(%rax), %r11 + movq 6696(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31804,13 +31886,13 @@ GL_PREFIX(VertexAttribPointerNV): popq %rdx popq %rsi popq %rdi - movq 6680(%rax), %r11 + movq 6696(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6680(%rax), %r11 + movq 6696(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31824,7 +31906,7 @@ GL_PREFIX(VertexAttribPointerNV): popq %rdx popq %rsi popq %rdi - movq 6680(%rax), %r11 + movq 6696(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribPointerNV), .-GL_PREFIX(VertexAttribPointerNV) @@ -31835,7 +31917,7 @@ GL_PREFIX(VertexAttribPointerNV): GL_PREFIX(VertexAttribs1dvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6688(%rax), %r11 + movq 6704(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31845,13 +31927,13 @@ GL_PREFIX(VertexAttribs1dvNV): popq %rdx popq %rsi popq %rdi - movq 6688(%rax), %r11 + movq 6704(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6688(%rax), %r11 + movq 6704(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31861,7 +31943,7 @@ GL_PREFIX(VertexAttribs1dvNV): popq %rdx popq %rsi popq %rdi - movq 6688(%rax), %r11 + movq 6704(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs1dvNV), .-GL_PREFIX(VertexAttribs1dvNV) @@ -31872,7 +31954,7 @@ GL_PREFIX(VertexAttribs1dvNV): GL_PREFIX(VertexAttribs1fvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6696(%rax), %r11 + movq 6712(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31882,13 +31964,13 @@ GL_PREFIX(VertexAttribs1fvNV): popq %rdx popq %rsi popq %rdi - movq 6696(%rax), %r11 + movq 6712(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6696(%rax), %r11 + movq 6712(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31898,7 +31980,7 @@ GL_PREFIX(VertexAttribs1fvNV): popq %rdx popq %rsi popq %rdi - movq 6696(%rax), %r11 + movq 6712(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs1fvNV), .-GL_PREFIX(VertexAttribs1fvNV) @@ -31909,7 +31991,7 @@ GL_PREFIX(VertexAttribs1fvNV): GL_PREFIX(VertexAttribs1svNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6704(%rax), %r11 + movq 6720(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31919,13 +32001,13 @@ GL_PREFIX(VertexAttribs1svNV): popq %rdx popq %rsi popq %rdi - movq 6704(%rax), %r11 + movq 6720(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6704(%rax), %r11 + movq 6720(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31935,7 +32017,7 @@ GL_PREFIX(VertexAttribs1svNV): popq %rdx popq %rsi popq %rdi - movq 6704(%rax), %r11 + movq 6720(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs1svNV), .-GL_PREFIX(VertexAttribs1svNV) @@ -31946,7 +32028,7 @@ GL_PREFIX(VertexAttribs1svNV): GL_PREFIX(VertexAttribs2dvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6712(%rax), %r11 + movq 6728(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31956,13 +32038,13 @@ GL_PREFIX(VertexAttribs2dvNV): popq %rdx popq %rsi popq %rdi - movq 6712(%rax), %r11 + movq 6728(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6712(%rax), %r11 + movq 6728(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -31972,7 +32054,7 @@ GL_PREFIX(VertexAttribs2dvNV): popq %rdx popq %rsi popq %rdi - movq 6712(%rax), %r11 + movq 6728(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs2dvNV), .-GL_PREFIX(VertexAttribs2dvNV) @@ -31983,7 +32065,7 @@ GL_PREFIX(VertexAttribs2dvNV): GL_PREFIX(VertexAttribs2fvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6720(%rax), %r11 + movq 6736(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -31993,13 +32075,13 @@ GL_PREFIX(VertexAttribs2fvNV): popq %rdx popq %rsi popq %rdi - movq 6720(%rax), %r11 + movq 6736(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6720(%rax), %r11 + movq 6736(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32009,7 +32091,7 @@ GL_PREFIX(VertexAttribs2fvNV): popq %rdx popq %rsi popq %rdi - movq 6720(%rax), %r11 + movq 6736(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs2fvNV), .-GL_PREFIX(VertexAttribs2fvNV) @@ -32020,7 +32102,7 @@ GL_PREFIX(VertexAttribs2fvNV): GL_PREFIX(VertexAttribs2svNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6728(%rax), %r11 + movq 6744(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32030,13 +32112,13 @@ GL_PREFIX(VertexAttribs2svNV): popq %rdx popq %rsi popq %rdi - movq 6728(%rax), %r11 + movq 6744(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6728(%rax), %r11 + movq 6744(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32046,7 +32128,7 @@ GL_PREFIX(VertexAttribs2svNV): popq %rdx popq %rsi popq %rdi - movq 6728(%rax), %r11 + movq 6744(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs2svNV), .-GL_PREFIX(VertexAttribs2svNV) @@ -32057,7 +32139,7 @@ GL_PREFIX(VertexAttribs2svNV): GL_PREFIX(VertexAttribs3dvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6736(%rax), %r11 + movq 6752(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32067,13 +32149,13 @@ GL_PREFIX(VertexAttribs3dvNV): popq %rdx popq %rsi popq %rdi - movq 6736(%rax), %r11 + movq 6752(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6736(%rax), %r11 + movq 6752(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32083,7 +32165,7 @@ GL_PREFIX(VertexAttribs3dvNV): popq %rdx popq %rsi popq %rdi - movq 6736(%rax), %r11 + movq 6752(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs3dvNV), .-GL_PREFIX(VertexAttribs3dvNV) @@ -32094,7 +32176,7 @@ GL_PREFIX(VertexAttribs3dvNV): GL_PREFIX(VertexAttribs3fvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6744(%rax), %r11 + movq 6760(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32104,13 +32186,13 @@ GL_PREFIX(VertexAttribs3fvNV): popq %rdx popq %rsi popq %rdi - movq 6744(%rax), %r11 + movq 6760(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6744(%rax), %r11 + movq 6760(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32120,7 +32202,7 @@ GL_PREFIX(VertexAttribs3fvNV): popq %rdx popq %rsi popq %rdi - movq 6744(%rax), %r11 + movq 6760(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs3fvNV), .-GL_PREFIX(VertexAttribs3fvNV) @@ -32131,7 +32213,7 @@ GL_PREFIX(VertexAttribs3fvNV): GL_PREFIX(VertexAttribs3svNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6752(%rax), %r11 + movq 6768(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32141,13 +32223,13 @@ GL_PREFIX(VertexAttribs3svNV): popq %rdx popq %rsi popq %rdi - movq 6752(%rax), %r11 + movq 6768(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6752(%rax), %r11 + movq 6768(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32157,7 +32239,7 @@ GL_PREFIX(VertexAttribs3svNV): popq %rdx popq %rsi popq %rdi - movq 6752(%rax), %r11 + movq 6768(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs3svNV), .-GL_PREFIX(VertexAttribs3svNV) @@ -32168,7 +32250,7 @@ GL_PREFIX(VertexAttribs3svNV): GL_PREFIX(VertexAttribs4dvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6760(%rax), %r11 + movq 6776(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32178,13 +32260,13 @@ GL_PREFIX(VertexAttribs4dvNV): popq %rdx popq %rsi popq %rdi - movq 6760(%rax), %r11 + movq 6776(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6760(%rax), %r11 + movq 6776(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32194,7 +32276,7 @@ GL_PREFIX(VertexAttribs4dvNV): popq %rdx popq %rsi popq %rdi - movq 6760(%rax), %r11 + movq 6776(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs4dvNV), .-GL_PREFIX(VertexAttribs4dvNV) @@ -32205,7 +32287,7 @@ GL_PREFIX(VertexAttribs4dvNV): GL_PREFIX(VertexAttribs4fvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6768(%rax), %r11 + movq 6784(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32215,13 +32297,13 @@ GL_PREFIX(VertexAttribs4fvNV): popq %rdx popq %rsi popq %rdi - movq 6768(%rax), %r11 + movq 6784(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6768(%rax), %r11 + movq 6784(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32231,7 +32313,7 @@ GL_PREFIX(VertexAttribs4fvNV): popq %rdx popq %rsi popq %rdi - movq 6768(%rax), %r11 + movq 6784(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs4fvNV), .-GL_PREFIX(VertexAttribs4fvNV) @@ -32242,7 +32324,7 @@ GL_PREFIX(VertexAttribs4fvNV): GL_PREFIX(VertexAttribs4svNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6776(%rax), %r11 + movq 6792(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32252,13 +32334,13 @@ GL_PREFIX(VertexAttribs4svNV): popq %rdx popq %rsi popq %rdi - movq 6776(%rax), %r11 + movq 6792(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6776(%rax), %r11 + movq 6792(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32268,7 +32350,7 @@ GL_PREFIX(VertexAttribs4svNV): popq %rdx popq %rsi popq %rdi - movq 6776(%rax), %r11 + movq 6792(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs4svNV), .-GL_PREFIX(VertexAttribs4svNV) @@ -32279,7 +32361,7 @@ GL_PREFIX(VertexAttribs4svNV): GL_PREFIX(VertexAttribs4ubvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6784(%rax), %r11 + movq 6800(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32289,13 +32371,13 @@ GL_PREFIX(VertexAttribs4ubvNV): popq %rdx popq %rsi popq %rdi - movq 6784(%rax), %r11 + movq 6800(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6784(%rax), %r11 + movq 6800(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32305,7 +32387,7 @@ GL_PREFIX(VertexAttribs4ubvNV): popq %rdx popq %rsi popq %rdi - movq 6784(%rax), %r11 + movq 6800(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribs4ubvNV), .-GL_PREFIX(VertexAttribs4ubvNV) @@ -32316,7 +32398,7 @@ GL_PREFIX(VertexAttribs4ubvNV): GL_PREFIX(GetTexBumpParameterfvATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6792(%rax), %r11 + movq 6808(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32326,13 +32408,13 @@ GL_PREFIX(GetTexBumpParameterfvATI): popq %rbp popq %rsi popq %rdi - movq 6792(%rax), %r11 + movq 6808(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6792(%rax), %r11 + movq 6808(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32342,7 +32424,7 @@ GL_PREFIX(GetTexBumpParameterfvATI): popq %rbp popq %rsi popq %rdi - movq 6792(%rax), %r11 + movq 6808(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetTexBumpParameterfvATI), .-GL_PREFIX(GetTexBumpParameterfvATI) @@ -32353,7 +32435,7 @@ GL_PREFIX(GetTexBumpParameterfvATI): GL_PREFIX(GetTexBumpParameterivATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6800(%rax), %r11 + movq 6816(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32363,13 +32445,13 @@ GL_PREFIX(GetTexBumpParameterivATI): popq %rbp popq %rsi popq %rdi - movq 6800(%rax), %r11 + movq 6816(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6800(%rax), %r11 + movq 6816(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32379,7 +32461,7 @@ GL_PREFIX(GetTexBumpParameterivATI): popq %rbp popq %rsi popq %rdi - movq 6800(%rax), %r11 + movq 6816(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetTexBumpParameterivATI), .-GL_PREFIX(GetTexBumpParameterivATI) @@ -32390,7 +32472,7 @@ GL_PREFIX(GetTexBumpParameterivATI): GL_PREFIX(TexBumpParameterfvATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6808(%rax), %r11 + movq 6824(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32400,13 +32482,13 @@ GL_PREFIX(TexBumpParameterfvATI): popq %rbp popq %rsi popq %rdi - movq 6808(%rax), %r11 + movq 6824(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6808(%rax), %r11 + movq 6824(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32416,7 +32498,7 @@ GL_PREFIX(TexBumpParameterfvATI): popq %rbp popq %rsi popq %rdi - movq 6808(%rax), %r11 + movq 6824(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexBumpParameterfvATI), .-GL_PREFIX(TexBumpParameterfvATI) @@ -32427,7 +32509,7 @@ GL_PREFIX(TexBumpParameterfvATI): GL_PREFIX(TexBumpParameterivATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6816(%rax), %r11 + movq 6832(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32437,13 +32519,13 @@ GL_PREFIX(TexBumpParameterivATI): popq %rbp popq %rsi popq %rdi - movq 6816(%rax), %r11 + movq 6832(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6816(%rax), %r11 + movq 6832(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32453,7 +32535,7 @@ GL_PREFIX(TexBumpParameterivATI): popq %rbp popq %rsi popq %rdi - movq 6816(%rax), %r11 + movq 6832(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexBumpParameterivATI), .-GL_PREFIX(TexBumpParameterivATI) @@ -32464,7 +32546,7 @@ GL_PREFIX(TexBumpParameterivATI): GL_PREFIX(AlphaFragmentOp1ATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6824(%rax), %r11 + movq 6840(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32482,13 +32564,13 @@ GL_PREFIX(AlphaFragmentOp1ATI): popq %rdx popq %rsi popq %rdi - movq 6824(%rax), %r11 + movq 6840(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6824(%rax), %r11 + movq 6840(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32506,7 +32588,7 @@ GL_PREFIX(AlphaFragmentOp1ATI): popq %rdx popq %rsi popq %rdi - movq 6824(%rax), %r11 + movq 6840(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(AlphaFragmentOp1ATI), .-GL_PREFIX(AlphaFragmentOp1ATI) @@ -32517,7 +32599,7 @@ GL_PREFIX(AlphaFragmentOp1ATI): GL_PREFIX(AlphaFragmentOp2ATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6832(%rax), %r11 + movq 6848(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32535,13 +32617,13 @@ GL_PREFIX(AlphaFragmentOp2ATI): popq %rdx popq %rsi popq %rdi - movq 6832(%rax), %r11 + movq 6848(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6832(%rax), %r11 + movq 6848(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32559,7 +32641,7 @@ GL_PREFIX(AlphaFragmentOp2ATI): popq %rdx popq %rsi popq %rdi - movq 6832(%rax), %r11 + movq 6848(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(AlphaFragmentOp2ATI), .-GL_PREFIX(AlphaFragmentOp2ATI) @@ -32570,7 +32652,7 @@ GL_PREFIX(AlphaFragmentOp2ATI): GL_PREFIX(AlphaFragmentOp3ATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6840(%rax), %r11 + movq 6856(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32588,13 +32670,13 @@ GL_PREFIX(AlphaFragmentOp3ATI): popq %rdx popq %rsi popq %rdi - movq 6840(%rax), %r11 + movq 6856(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6840(%rax), %r11 + movq 6856(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32612,7 +32694,7 @@ GL_PREFIX(AlphaFragmentOp3ATI): popq %rdx popq %rsi popq %rdi - movq 6840(%rax), %r11 + movq 6856(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(AlphaFragmentOp3ATI), .-GL_PREFIX(AlphaFragmentOp3ATI) @@ -32623,25 +32705,25 @@ GL_PREFIX(AlphaFragmentOp3ATI): GL_PREFIX(BeginFragmentShaderATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6848(%rax), %r11 + movq 6864(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 6848(%rax), %r11 + movq 6864(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6848(%rax), %r11 + movq 6864(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 6848(%rax), %r11 + movq 6864(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BeginFragmentShaderATI), .-GL_PREFIX(BeginFragmentShaderATI) @@ -32652,25 +32734,25 @@ GL_PREFIX(BeginFragmentShaderATI): GL_PREFIX(BindFragmentShaderATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6856(%rax), %r11 + movq 6872(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6856(%rax), %r11 + movq 6872(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6856(%rax), %r11 + movq 6872(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6856(%rax), %r11 + movq 6872(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindFragmentShaderATI), .-GL_PREFIX(BindFragmentShaderATI) @@ -32681,7 +32763,7 @@ GL_PREFIX(BindFragmentShaderATI): GL_PREFIX(ColorFragmentOp1ATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6864(%rax), %r11 + movq 6880(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32699,13 +32781,13 @@ GL_PREFIX(ColorFragmentOp1ATI): popq %rdx popq %rsi popq %rdi - movq 6864(%rax), %r11 + movq 6880(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6864(%rax), %r11 + movq 6880(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32723,7 +32805,7 @@ GL_PREFIX(ColorFragmentOp1ATI): popq %rdx popq %rsi popq %rdi - movq 6864(%rax), %r11 + movq 6880(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorFragmentOp1ATI), .-GL_PREFIX(ColorFragmentOp1ATI) @@ -32734,7 +32816,7 @@ GL_PREFIX(ColorFragmentOp1ATI): GL_PREFIX(ColorFragmentOp2ATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6872(%rax), %r11 + movq 6888(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32752,13 +32834,13 @@ GL_PREFIX(ColorFragmentOp2ATI): popq %rdx popq %rsi popq %rdi - movq 6872(%rax), %r11 + movq 6888(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6872(%rax), %r11 + movq 6888(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32776,7 +32858,7 @@ GL_PREFIX(ColorFragmentOp2ATI): popq %rdx popq %rsi popq %rdi - movq 6872(%rax), %r11 + movq 6888(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorFragmentOp2ATI), .-GL_PREFIX(ColorFragmentOp2ATI) @@ -32787,7 +32869,7 @@ GL_PREFIX(ColorFragmentOp2ATI): GL_PREFIX(ColorFragmentOp3ATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6880(%rax), %r11 + movq 6896(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32805,13 +32887,13 @@ GL_PREFIX(ColorFragmentOp3ATI): popq %rdx popq %rsi popq %rdi - movq 6880(%rax), %r11 + movq 6896(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6880(%rax), %r11 + movq 6896(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32829,7 +32911,7 @@ GL_PREFIX(ColorFragmentOp3ATI): popq %rdx popq %rsi popq %rdi - movq 6880(%rax), %r11 + movq 6896(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorFragmentOp3ATI), .-GL_PREFIX(ColorFragmentOp3ATI) @@ -32840,25 +32922,25 @@ GL_PREFIX(ColorFragmentOp3ATI): GL_PREFIX(DeleteFragmentShaderATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6888(%rax), %r11 + movq 6904(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6888(%rax), %r11 + movq 6904(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6888(%rax), %r11 + movq 6904(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6888(%rax), %r11 + movq 6904(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DeleteFragmentShaderATI), .-GL_PREFIX(DeleteFragmentShaderATI) @@ -32869,25 +32951,25 @@ GL_PREFIX(DeleteFragmentShaderATI): GL_PREFIX(EndFragmentShaderATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6896(%rax), %r11 + movq 6912(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 6896(%rax), %r11 + movq 6912(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6896(%rax), %r11 + movq 6912(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 6896(%rax), %r11 + movq 6912(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EndFragmentShaderATI), .-GL_PREFIX(EndFragmentShaderATI) @@ -32898,25 +32980,25 @@ GL_PREFIX(EndFragmentShaderATI): GL_PREFIX(GenFragmentShadersATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6904(%rax), %r11 + movq 6920(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6904(%rax), %r11 + movq 6920(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6904(%rax), %r11 + movq 6920(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6904(%rax), %r11 + movq 6920(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenFragmentShadersATI), .-GL_PREFIX(GenFragmentShadersATI) @@ -32927,7 +33009,7 @@ GL_PREFIX(GenFragmentShadersATI): GL_PREFIX(PassTexCoordATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6912(%rax), %r11 + movq 6928(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32937,13 +33019,13 @@ GL_PREFIX(PassTexCoordATI): popq %rdx popq %rsi popq %rdi - movq 6912(%rax), %r11 + movq 6928(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6912(%rax), %r11 + movq 6928(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32953,7 +33035,7 @@ GL_PREFIX(PassTexCoordATI): popq %rdx popq %rsi popq %rdi - movq 6912(%rax), %r11 + movq 6928(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PassTexCoordATI), .-GL_PREFIX(PassTexCoordATI) @@ -32964,7 +33046,7 @@ GL_PREFIX(PassTexCoordATI): GL_PREFIX(SampleMapATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6920(%rax), %r11 + movq 6936(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -32974,13 +33056,13 @@ GL_PREFIX(SampleMapATI): popq %rdx popq %rsi popq %rdi - movq 6920(%rax), %r11 + movq 6936(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6920(%rax), %r11 + movq 6936(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -32990,7 +33072,7 @@ GL_PREFIX(SampleMapATI): popq %rdx popq %rsi popq %rdi - movq 6920(%rax), %r11 + movq 6936(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SampleMapATI), .-GL_PREFIX(SampleMapATI) @@ -33001,7 +33083,7 @@ GL_PREFIX(SampleMapATI): GL_PREFIX(SetFragmentShaderConstantATI): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6928(%rax), %r11 + movq 6944(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33011,13 +33093,13 @@ GL_PREFIX(SetFragmentShaderConstantATI): popq %rbp popq %rsi popq %rdi - movq 6928(%rax), %r11 + movq 6944(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6928(%rax), %r11 + movq 6944(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33027,7 +33109,7 @@ GL_PREFIX(SetFragmentShaderConstantATI): popq %rbp popq %rsi popq %rdi - movq 6928(%rax), %r11 + movq 6944(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(SetFragmentShaderConstantATI), .-GL_PREFIX(SetFragmentShaderConstantATI) @@ -33038,7 +33120,7 @@ GL_PREFIX(SetFragmentShaderConstantATI): GL_PREFIX(PointParameteriNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6936(%rax), %r11 + movq 6952(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33048,13 +33130,13 @@ GL_PREFIX(PointParameteriNV): popq %rbp popq %rsi popq %rdi - movq 6936(%rax), %r11 + movq 6952(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6936(%rax), %r11 + movq 6952(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33064,7 +33146,7 @@ GL_PREFIX(PointParameteriNV): popq %rbp popq %rsi popq %rdi - movq 6936(%rax), %r11 + movq 6952(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PointParameteriNV), .-GL_PREFIX(PointParameteriNV) @@ -33075,7 +33157,7 @@ GL_PREFIX(PointParameteriNV): GL_PREFIX(PointParameterivNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6944(%rax), %r11 + movq 6960(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33085,13 +33167,13 @@ GL_PREFIX(PointParameterivNV): popq %rbp popq %rsi popq %rdi - movq 6944(%rax), %r11 + movq 6960(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6944(%rax), %r11 + movq 6960(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33101,79 +33183,79 @@ GL_PREFIX(PointParameterivNV): popq %rbp popq %rsi popq %rdi - movq 6944(%rax), %r11 + movq 6960(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PointParameterivNV), .-GL_PREFIX(PointParameterivNV) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_869) - .type GL_PREFIX(_dispatch_stub_869), @function - HIDDEN(GL_PREFIX(_dispatch_stub_869)) -GL_PREFIX(_dispatch_stub_869): + .globl GL_PREFIX(_dispatch_stub_871) + .type GL_PREFIX(_dispatch_stub_871), @function + HIDDEN(GL_PREFIX(_dispatch_stub_871)) +GL_PREFIX(_dispatch_stub_871): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6952(%rax), %r11 + movq 6968(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6952(%rax), %r11 + movq 6968(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6952(%rax), %r11 + movq 6968(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6952(%rax), %r11 + movq 6968(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_869), .-GL_PREFIX(_dispatch_stub_869) + .size GL_PREFIX(_dispatch_stub_871), .-GL_PREFIX(_dispatch_stub_871) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_870) - .type GL_PREFIX(_dispatch_stub_870), @function - HIDDEN(GL_PREFIX(_dispatch_stub_870)) -GL_PREFIX(_dispatch_stub_870): + .globl GL_PREFIX(_dispatch_stub_872) + .type GL_PREFIX(_dispatch_stub_872), @function + HIDDEN(GL_PREFIX(_dispatch_stub_872)) +GL_PREFIX(_dispatch_stub_872): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6960(%rax), %r11 + movq 6976(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6960(%rax), %r11 + movq 6976(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6960(%rax), %r11 + movq 6976(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6960(%rax), %r11 + movq 6976(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_870), .-GL_PREFIX(_dispatch_stub_870) + .size GL_PREFIX(_dispatch_stub_872), .-GL_PREFIX(_dispatch_stub_872) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_871) - .type GL_PREFIX(_dispatch_stub_871), @function - HIDDEN(GL_PREFIX(_dispatch_stub_871)) -GL_PREFIX(_dispatch_stub_871): + .globl GL_PREFIX(_dispatch_stub_873) + .type GL_PREFIX(_dispatch_stub_873), @function + HIDDEN(GL_PREFIX(_dispatch_stub_873)) +GL_PREFIX(_dispatch_stub_873): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6968(%rax), %r11 + movq 6984(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33183,13 +33265,13 @@ GL_PREFIX(_dispatch_stub_871): popq %rbp popq %rsi popq %rdi - movq 6968(%rax), %r11 + movq 6984(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6968(%rax), %r11 + movq 6984(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33199,19 +33281,19 @@ GL_PREFIX(_dispatch_stub_871): popq %rbp popq %rsi popq %rdi - movq 6968(%rax), %r11 + movq 6984(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_871), .-GL_PREFIX(_dispatch_stub_871) + .size GL_PREFIX(_dispatch_stub_873), .-GL_PREFIX(_dispatch_stub_873) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_872) - .type GL_PREFIX(_dispatch_stub_872), @function - HIDDEN(GL_PREFIX(_dispatch_stub_872)) -GL_PREFIX(_dispatch_stub_872): + .globl GL_PREFIX(_dispatch_stub_874) + .type GL_PREFIX(_dispatch_stub_874), @function + HIDDEN(GL_PREFIX(_dispatch_stub_874)) +GL_PREFIX(_dispatch_stub_874): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6976(%rax), %r11 + movq 6992(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33221,13 +33303,13 @@ GL_PREFIX(_dispatch_stub_872): popq %rbp popq %rsi popq %rdi - movq 6976(%rax), %r11 + movq 6992(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6976(%rax), %r11 + movq 6992(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33237,40 +33319,40 @@ GL_PREFIX(_dispatch_stub_872): popq %rbp popq %rsi popq %rdi - movq 6976(%rax), %r11 + movq 6992(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_872), .-GL_PREFIX(_dispatch_stub_872) + .size GL_PREFIX(_dispatch_stub_874), .-GL_PREFIX(_dispatch_stub_874) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_873) - .type GL_PREFIX(_dispatch_stub_873), @function - HIDDEN(GL_PREFIX(_dispatch_stub_873)) -GL_PREFIX(_dispatch_stub_873): + .globl GL_PREFIX(_dispatch_stub_875) + .type GL_PREFIX(_dispatch_stub_875), @function + HIDDEN(GL_PREFIX(_dispatch_stub_875)) +GL_PREFIX(_dispatch_stub_875): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6984(%rax), %r11 + movq 7000(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 6984(%rax), %r11 + movq 7000(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6984(%rax), %r11 + movq 7000(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 6984(%rax), %r11 + movq 7000(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_873), .-GL_PREFIX(_dispatch_stub_873) + .size GL_PREFIX(_dispatch_stub_875), .-GL_PREFIX(_dispatch_stub_875) .p2align 4,,15 .globl GL_PREFIX(GetProgramNamedParameterdvNV) @@ -33278,7 +33360,7 @@ GL_PREFIX(_dispatch_stub_873): GL_PREFIX(GetProgramNamedParameterdvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 6992(%rax), %r11 + movq 7008(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33292,13 +33374,13 @@ GL_PREFIX(GetProgramNamedParameterdvNV): popq %rdx popq %rsi popq %rdi - movq 6992(%rax), %r11 + movq 7008(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 6992(%rax), %r11 + movq 7008(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33312,7 +33394,7 @@ GL_PREFIX(GetProgramNamedParameterdvNV): popq %rdx popq %rsi popq %rdi - movq 6992(%rax), %r11 + movq 7008(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetProgramNamedParameterdvNV), .-GL_PREFIX(GetProgramNamedParameterdvNV) @@ -33323,7 +33405,7 @@ GL_PREFIX(GetProgramNamedParameterdvNV): GL_PREFIX(GetProgramNamedParameterfvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7000(%rax), %r11 + movq 7016(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33337,13 +33419,13 @@ GL_PREFIX(GetProgramNamedParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 7000(%rax), %r11 + movq 7016(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7000(%rax), %r11 + movq 7016(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33357,7 +33439,7 @@ GL_PREFIX(GetProgramNamedParameterfvNV): popq %rdx popq %rsi popq %rdi - movq 7000(%rax), %r11 + movq 7016(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetProgramNamedParameterfvNV), .-GL_PREFIX(GetProgramNamedParameterfvNV) @@ -33368,7 +33450,7 @@ GL_PREFIX(GetProgramNamedParameterfvNV): GL_PREFIX(ProgramNamedParameter4dNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7008(%rax), %r11 + movq 7024(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $56, %rsp @@ -33388,13 +33470,13 @@ GL_PREFIX(ProgramNamedParameter4dNV): movq 8(%rsp), %rsi movq (%rsp), %rdi addq $56, %rsp - movq 7008(%rax), %r11 + movq 7024(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7008(%rax), %r11 + movq 7024(%rax), %r11 jmp *%r11 1: subq $56, %rsp @@ -33414,7 +33496,7 @@ GL_PREFIX(ProgramNamedParameter4dNV): movq 8(%rsp), %rsi movq (%rsp), %rdi addq $56, %rsp - movq 7008(%rax), %r11 + movq 7024(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProgramNamedParameter4dNV), .-GL_PREFIX(ProgramNamedParameter4dNV) @@ -33425,7 +33507,7 @@ GL_PREFIX(ProgramNamedParameter4dNV): GL_PREFIX(ProgramNamedParameter4dvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7016(%rax), %r11 + movq 7032(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33439,13 +33521,13 @@ GL_PREFIX(ProgramNamedParameter4dvNV): popq %rdx popq %rsi popq %rdi - movq 7016(%rax), %r11 + movq 7032(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7016(%rax), %r11 + movq 7032(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33459,7 +33541,7 @@ GL_PREFIX(ProgramNamedParameter4dvNV): popq %rdx popq %rsi popq %rdi - movq 7016(%rax), %r11 + movq 7032(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProgramNamedParameter4dvNV), .-GL_PREFIX(ProgramNamedParameter4dvNV) @@ -33470,7 +33552,7 @@ GL_PREFIX(ProgramNamedParameter4dvNV): GL_PREFIX(ProgramNamedParameter4fNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7024(%rax), %r11 + movq 7040(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) subq $56, %rsp @@ -33490,13 +33572,13 @@ GL_PREFIX(ProgramNamedParameter4fNV): movq 8(%rsp), %rsi movq (%rsp), %rdi addq $56, %rsp - movq 7024(%rax), %r11 + movq 7040(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7024(%rax), %r11 + movq 7040(%rax), %r11 jmp *%r11 1: subq $56, %rsp @@ -33516,7 +33598,7 @@ GL_PREFIX(ProgramNamedParameter4fNV): movq 8(%rsp), %rsi movq (%rsp), %rdi addq $56, %rsp - movq 7024(%rax), %r11 + movq 7040(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProgramNamedParameter4fNV), .-GL_PREFIX(ProgramNamedParameter4fNV) @@ -33527,7 +33609,7 @@ GL_PREFIX(ProgramNamedParameter4fNV): GL_PREFIX(ProgramNamedParameter4fvNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7032(%rax), %r11 + movq 7048(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33541,13 +33623,13 @@ GL_PREFIX(ProgramNamedParameter4fvNV): popq %rdx popq %rsi popq %rdi - movq 7032(%rax), %r11 + movq 7048(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7032(%rax), %r11 + movq 7048(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33561,7 +33643,7 @@ GL_PREFIX(ProgramNamedParameter4fvNV): popq %rdx popq %rsi popq %rdi - movq 7032(%rax), %r11 + movq 7048(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProgramNamedParameter4fvNV), .-GL_PREFIX(ProgramNamedParameter4fvNV) @@ -33572,25 +33654,25 @@ GL_PREFIX(ProgramNamedParameter4fvNV): GL_PREFIX(PrimitiveRestartIndexNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7040(%rax), %r11 + movq 7056(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 7040(%rax), %r11 + movq 7056(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7040(%rax), %r11 + movq 7056(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 7040(%rax), %r11 + movq 7056(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PrimitiveRestartIndexNV), .-GL_PREFIX(PrimitiveRestartIndexNV) @@ -33601,37 +33683,37 @@ GL_PREFIX(PrimitiveRestartIndexNV): GL_PREFIX(PrimitiveRestartNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7048(%rax), %r11 + movq 7064(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 7048(%rax), %r11 + movq 7064(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7048(%rax), %r11 + movq 7064(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 7048(%rax), %r11 + movq 7064(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(PrimitiveRestartNV), .-GL_PREFIX(PrimitiveRestartNV) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_882) - .type GL_PREFIX(_dispatch_stub_882), @function - HIDDEN(GL_PREFIX(_dispatch_stub_882)) -GL_PREFIX(_dispatch_stub_882): + .globl GL_PREFIX(_dispatch_stub_884) + .type GL_PREFIX(_dispatch_stub_884), @function + HIDDEN(GL_PREFIX(_dispatch_stub_884)) +GL_PREFIX(_dispatch_stub_884): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7056(%rax), %r11 + movq 7072(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33641,13 +33723,13 @@ GL_PREFIX(_dispatch_stub_882): popq %rbp popq %rsi popq %rdi - movq 7056(%rax), %r11 + movq 7072(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7056(%rax), %r11 + movq 7072(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33657,19 +33739,19 @@ GL_PREFIX(_dispatch_stub_882): popq %rbp popq %rsi popq %rdi - movq 7056(%rax), %r11 + movq 7072(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_882), .-GL_PREFIX(_dispatch_stub_882) + .size GL_PREFIX(_dispatch_stub_884), .-GL_PREFIX(_dispatch_stub_884) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_883) - .type GL_PREFIX(_dispatch_stub_883), @function - HIDDEN(GL_PREFIX(_dispatch_stub_883)) -GL_PREFIX(_dispatch_stub_883): + .globl GL_PREFIX(_dispatch_stub_885) + .type GL_PREFIX(_dispatch_stub_885), @function + HIDDEN(GL_PREFIX(_dispatch_stub_885)) +GL_PREFIX(_dispatch_stub_885): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7064(%rax), %r11 + movq 7080(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33679,13 +33761,13 @@ GL_PREFIX(_dispatch_stub_883): popq %rbp popq %rsi popq %rdi - movq 7064(%rax), %r11 + movq 7080(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7064(%rax), %r11 + movq 7080(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33695,10 +33777,10 @@ GL_PREFIX(_dispatch_stub_883): popq %rbp popq %rsi popq %rdi - movq 7064(%rax), %r11 + movq 7080(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_883), .-GL_PREFIX(_dispatch_stub_883) + .size GL_PREFIX(_dispatch_stub_885), .-GL_PREFIX(_dispatch_stub_885) .p2align 4,,15 .globl GL_PREFIX(BindFramebufferEXT) @@ -33706,7 +33788,7 @@ GL_PREFIX(_dispatch_stub_883): GL_PREFIX(BindFramebufferEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7072(%rax), %r11 + movq 7088(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33716,13 +33798,13 @@ GL_PREFIX(BindFramebufferEXT): popq %rbp popq %rsi popq %rdi - movq 7072(%rax), %r11 + movq 7088(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7072(%rax), %r11 + movq 7088(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33732,7 +33814,7 @@ GL_PREFIX(BindFramebufferEXT): popq %rbp popq %rsi popq %rdi - movq 7072(%rax), %r11 + movq 7088(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindFramebufferEXT), .-GL_PREFIX(BindFramebufferEXT) @@ -33743,7 +33825,7 @@ GL_PREFIX(BindFramebufferEXT): GL_PREFIX(BindRenderbufferEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7080(%rax), %r11 + movq 7096(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33753,13 +33835,13 @@ GL_PREFIX(BindRenderbufferEXT): popq %rbp popq %rsi popq %rdi - movq 7080(%rax), %r11 + movq 7096(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7080(%rax), %r11 + movq 7096(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33769,7 +33851,7 @@ GL_PREFIX(BindRenderbufferEXT): popq %rbp popq %rsi popq %rdi - movq 7080(%rax), %r11 + movq 7096(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindRenderbufferEXT), .-GL_PREFIX(BindRenderbufferEXT) @@ -33780,25 +33862,25 @@ GL_PREFIX(BindRenderbufferEXT): GL_PREFIX(CheckFramebufferStatusEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7088(%rax), %r11 + movq 7104(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 7088(%rax), %r11 + movq 7104(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7088(%rax), %r11 + movq 7104(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 7088(%rax), %r11 + movq 7104(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CheckFramebufferStatusEXT), .-GL_PREFIX(CheckFramebufferStatusEXT) @@ -33809,7 +33891,7 @@ GL_PREFIX(CheckFramebufferStatusEXT): GL_PREFIX(DeleteFramebuffersEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7096(%rax), %r11 + movq 7112(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33819,13 +33901,13 @@ GL_PREFIX(DeleteFramebuffersEXT): popq %rbp popq %rsi popq %rdi - movq 7096(%rax), %r11 + movq 7112(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7096(%rax), %r11 + movq 7112(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33835,7 +33917,7 @@ GL_PREFIX(DeleteFramebuffersEXT): popq %rbp popq %rsi popq %rdi - movq 7096(%rax), %r11 + movq 7112(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DeleteFramebuffersEXT), .-GL_PREFIX(DeleteFramebuffersEXT) @@ -33846,7 +33928,7 @@ GL_PREFIX(DeleteFramebuffersEXT): GL_PREFIX(DeleteRenderbuffersEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7104(%rax), %r11 + movq 7120(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33856,13 +33938,13 @@ GL_PREFIX(DeleteRenderbuffersEXT): popq %rbp popq %rsi popq %rdi - movq 7104(%rax), %r11 + movq 7120(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7104(%rax), %r11 + movq 7120(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33872,7 +33954,7 @@ GL_PREFIX(DeleteRenderbuffersEXT): popq %rbp popq %rsi popq %rdi - movq 7104(%rax), %r11 + movq 7120(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DeleteRenderbuffersEXT), .-GL_PREFIX(DeleteRenderbuffersEXT) @@ -33883,7 +33965,7 @@ GL_PREFIX(DeleteRenderbuffersEXT): GL_PREFIX(FramebufferRenderbufferEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7112(%rax), %r11 + movq 7128(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33897,13 +33979,13 @@ GL_PREFIX(FramebufferRenderbufferEXT): popq %rdx popq %rsi popq %rdi - movq 7112(%rax), %r11 + movq 7128(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7112(%rax), %r11 + movq 7128(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33917,7 +33999,7 @@ GL_PREFIX(FramebufferRenderbufferEXT): popq %rdx popq %rsi popq %rdi - movq 7112(%rax), %r11 + movq 7128(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FramebufferRenderbufferEXT), .-GL_PREFIX(FramebufferRenderbufferEXT) @@ -33928,7 +34010,7 @@ GL_PREFIX(FramebufferRenderbufferEXT): GL_PREFIX(FramebufferTexture1DEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7120(%rax), %r11 + movq 7136(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33942,13 +34024,13 @@ GL_PREFIX(FramebufferTexture1DEXT): popq %rdx popq %rsi popq %rdi - movq 7120(%rax), %r11 + movq 7136(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7120(%rax), %r11 + movq 7136(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -33962,7 +34044,7 @@ GL_PREFIX(FramebufferTexture1DEXT): popq %rdx popq %rsi popq %rdi - movq 7120(%rax), %r11 + movq 7136(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FramebufferTexture1DEXT), .-GL_PREFIX(FramebufferTexture1DEXT) @@ -33973,7 +34055,7 @@ GL_PREFIX(FramebufferTexture1DEXT): GL_PREFIX(FramebufferTexture2DEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7128(%rax), %r11 + movq 7144(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -33987,13 +34069,13 @@ GL_PREFIX(FramebufferTexture2DEXT): popq %rdx popq %rsi popq %rdi - movq 7128(%rax), %r11 + movq 7144(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7128(%rax), %r11 + movq 7144(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34007,7 +34089,7 @@ GL_PREFIX(FramebufferTexture2DEXT): popq %rdx popq %rsi popq %rdi - movq 7128(%rax), %r11 + movq 7144(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FramebufferTexture2DEXT), .-GL_PREFIX(FramebufferTexture2DEXT) @@ -34018,7 +34100,7 @@ GL_PREFIX(FramebufferTexture2DEXT): GL_PREFIX(FramebufferTexture3DEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7136(%rax), %r11 + movq 7152(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34036,13 +34118,13 @@ GL_PREFIX(FramebufferTexture3DEXT): popq %rdx popq %rsi popq %rdi - movq 7136(%rax), %r11 + movq 7152(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7136(%rax), %r11 + movq 7152(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34060,7 +34142,7 @@ GL_PREFIX(FramebufferTexture3DEXT): popq %rdx popq %rsi popq %rdi - movq 7136(%rax), %r11 + movq 7152(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FramebufferTexture3DEXT), .-GL_PREFIX(FramebufferTexture3DEXT) @@ -34071,7 +34153,7 @@ GL_PREFIX(FramebufferTexture3DEXT): GL_PREFIX(GenFramebuffersEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7144(%rax), %r11 + movq 7160(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34081,13 +34163,13 @@ GL_PREFIX(GenFramebuffersEXT): popq %rbp popq %rsi popq %rdi - movq 7144(%rax), %r11 + movq 7160(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7144(%rax), %r11 + movq 7160(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34097,7 +34179,7 @@ GL_PREFIX(GenFramebuffersEXT): popq %rbp popq %rsi popq %rdi - movq 7144(%rax), %r11 + movq 7160(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenFramebuffersEXT), .-GL_PREFIX(GenFramebuffersEXT) @@ -34108,7 +34190,7 @@ GL_PREFIX(GenFramebuffersEXT): GL_PREFIX(GenRenderbuffersEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7152(%rax), %r11 + movq 7168(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34118,13 +34200,13 @@ GL_PREFIX(GenRenderbuffersEXT): popq %rbp popq %rsi popq %rdi - movq 7152(%rax), %r11 + movq 7168(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7152(%rax), %r11 + movq 7168(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34134,7 +34216,7 @@ GL_PREFIX(GenRenderbuffersEXT): popq %rbp popq %rsi popq %rdi - movq 7152(%rax), %r11 + movq 7168(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenRenderbuffersEXT), .-GL_PREFIX(GenRenderbuffersEXT) @@ -34145,25 +34227,25 @@ GL_PREFIX(GenRenderbuffersEXT): GL_PREFIX(GenerateMipmapEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7160(%rax), %r11 + movq 7176(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 7160(%rax), %r11 + movq 7176(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7160(%rax), %r11 + movq 7176(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 7160(%rax), %r11 + movq 7176(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GenerateMipmapEXT), .-GL_PREFIX(GenerateMipmapEXT) @@ -34174,7 +34256,7 @@ GL_PREFIX(GenerateMipmapEXT): GL_PREFIX(GetFramebufferAttachmentParameterivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7168(%rax), %r11 + movq 7184(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34188,13 +34270,13 @@ GL_PREFIX(GetFramebufferAttachmentParameterivEXT): popq %rdx popq %rsi popq %rdi - movq 7168(%rax), %r11 + movq 7184(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7168(%rax), %r11 + movq 7184(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34208,7 +34290,7 @@ GL_PREFIX(GetFramebufferAttachmentParameterivEXT): popq %rdx popq %rsi popq %rdi - movq 7168(%rax), %r11 + movq 7184(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetFramebufferAttachmentParameterivEXT), .-GL_PREFIX(GetFramebufferAttachmentParameterivEXT) @@ -34219,7 +34301,7 @@ GL_PREFIX(GetFramebufferAttachmentParameterivEXT): GL_PREFIX(GetRenderbufferParameterivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7176(%rax), %r11 + movq 7192(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34229,13 +34311,13 @@ GL_PREFIX(GetRenderbufferParameterivEXT): popq %rdx popq %rsi popq %rdi - movq 7176(%rax), %r11 + movq 7192(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7176(%rax), %r11 + movq 7192(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34245,7 +34327,7 @@ GL_PREFIX(GetRenderbufferParameterivEXT): popq %rdx popq %rsi popq %rdi - movq 7176(%rax), %r11 + movq 7192(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetRenderbufferParameterivEXT), .-GL_PREFIX(GetRenderbufferParameterivEXT) @@ -34256,25 +34338,25 @@ GL_PREFIX(GetRenderbufferParameterivEXT): GL_PREFIX(IsFramebufferEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7184(%rax), %r11 + movq 7200(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 7184(%rax), %r11 + movq 7200(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7184(%rax), %r11 + movq 7200(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 7184(%rax), %r11 + movq 7200(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IsFramebufferEXT), .-GL_PREFIX(IsFramebufferEXT) @@ -34285,25 +34367,25 @@ GL_PREFIX(IsFramebufferEXT): GL_PREFIX(IsRenderbufferEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7192(%rax), %r11 + movq 7208(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 7192(%rax), %r11 + movq 7208(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7192(%rax), %r11 + movq 7208(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 7192(%rax), %r11 + movq 7208(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IsRenderbufferEXT), .-GL_PREFIX(IsRenderbufferEXT) @@ -34314,7 +34396,7 @@ GL_PREFIX(IsRenderbufferEXT): GL_PREFIX(RenderbufferStorageEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7200(%rax), %r11 + movq 7216(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34328,13 +34410,13 @@ GL_PREFIX(RenderbufferStorageEXT): popq %rdx popq %rsi popq %rdi - movq 7200(%rax), %r11 + movq 7216(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7200(%rax), %r11 + movq 7216(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34348,19 +34430,19 @@ GL_PREFIX(RenderbufferStorageEXT): popq %rdx popq %rsi popq %rdi - movq 7200(%rax), %r11 + movq 7216(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(RenderbufferStorageEXT), .-GL_PREFIX(RenderbufferStorageEXT) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_901) - .type GL_PREFIX(_dispatch_stub_901), @function - HIDDEN(GL_PREFIX(_dispatch_stub_901)) -GL_PREFIX(_dispatch_stub_901): + .globl GL_PREFIX(_dispatch_stub_903) + .type GL_PREFIX(_dispatch_stub_903), @function + HIDDEN(GL_PREFIX(_dispatch_stub_903)) +GL_PREFIX(_dispatch_stub_903): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7208(%rax), %r11 + movq 7224(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34378,13 +34460,13 @@ GL_PREFIX(_dispatch_stub_901): popq %rdx popq %rsi popq %rdi - movq 7208(%rax), %r11 + movq 7224(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7208(%rax), %r11 + movq 7224(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34402,19 +34484,19 @@ GL_PREFIX(_dispatch_stub_901): popq %rdx popq %rsi popq %rdi - movq 7208(%rax), %r11 + movq 7224(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_901), .-GL_PREFIX(_dispatch_stub_901) + .size GL_PREFIX(_dispatch_stub_903), .-GL_PREFIX(_dispatch_stub_903) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_902) - .type GL_PREFIX(_dispatch_stub_902), @function - HIDDEN(GL_PREFIX(_dispatch_stub_902)) -GL_PREFIX(_dispatch_stub_902): + .globl GL_PREFIX(_dispatch_stub_904) + .type GL_PREFIX(_dispatch_stub_904), @function + HIDDEN(GL_PREFIX(_dispatch_stub_904)) +GL_PREFIX(_dispatch_stub_904): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7216(%rax), %r11 + movq 7232(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34424,13 +34506,13 @@ GL_PREFIX(_dispatch_stub_902): popq %rdx popq %rsi popq %rdi - movq 7216(%rax), %r11 + movq 7232(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7216(%rax), %r11 + movq 7232(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34440,19 +34522,19 @@ GL_PREFIX(_dispatch_stub_902): popq %rdx popq %rsi popq %rdi - movq 7216(%rax), %r11 + movq 7232(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_902), .-GL_PREFIX(_dispatch_stub_902) + .size GL_PREFIX(_dispatch_stub_904), .-GL_PREFIX(_dispatch_stub_904) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_903) - .type GL_PREFIX(_dispatch_stub_903), @function - HIDDEN(GL_PREFIX(_dispatch_stub_903)) -GL_PREFIX(_dispatch_stub_903): + .globl GL_PREFIX(_dispatch_stub_905) + .type GL_PREFIX(_dispatch_stub_905), @function + HIDDEN(GL_PREFIX(_dispatch_stub_905)) +GL_PREFIX(_dispatch_stub_905): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7224(%rax), %r11 + movq 7240(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34462,13 +34544,13 @@ GL_PREFIX(_dispatch_stub_903): popq %rdx popq %rsi popq %rdi - movq 7224(%rax), %r11 + movq 7240(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7224(%rax), %r11 + movq 7240(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34478,10 +34560,10 @@ GL_PREFIX(_dispatch_stub_903): popq %rdx popq %rsi popq %rdi - movq 7224(%rax), %r11 + movq 7240(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_903), .-GL_PREFIX(_dispatch_stub_903) + .size GL_PREFIX(_dispatch_stub_905), .-GL_PREFIX(_dispatch_stub_905) .p2align 4,,15 .globl GL_PREFIX(BindFragDataLocationEXT) @@ -34489,7 +34571,7 @@ GL_PREFIX(_dispatch_stub_903): GL_PREFIX(BindFragDataLocationEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7232(%rax), %r11 + movq 7248(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34499,13 +34581,13 @@ GL_PREFIX(BindFragDataLocationEXT): popq %rdx popq %rsi popq %rdi - movq 7232(%rax), %r11 + movq 7248(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7232(%rax), %r11 + movq 7248(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34515,7 +34597,7 @@ GL_PREFIX(BindFragDataLocationEXT): popq %rdx popq %rsi popq %rdi - movq 7232(%rax), %r11 + movq 7248(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindFragDataLocationEXT), .-GL_PREFIX(BindFragDataLocationEXT) @@ -34526,7 +34608,7 @@ GL_PREFIX(BindFragDataLocationEXT): GL_PREFIX(GetFragDataLocationEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7240(%rax), %r11 + movq 7256(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34536,13 +34618,13 @@ GL_PREFIX(GetFragDataLocationEXT): popq %rbp popq %rsi popq %rdi - movq 7240(%rax), %r11 + movq 7256(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7240(%rax), %r11 + movq 7256(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34552,7 +34634,7 @@ GL_PREFIX(GetFragDataLocationEXT): popq %rbp popq %rsi popq %rdi - movq 7240(%rax), %r11 + movq 7256(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetFragDataLocationEXT), .-GL_PREFIX(GetFragDataLocationEXT) @@ -34563,7 +34645,7 @@ GL_PREFIX(GetFragDataLocationEXT): GL_PREFIX(GetUniformuivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7248(%rax), %r11 + movq 7264(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34573,13 +34655,13 @@ GL_PREFIX(GetUniformuivEXT): popq %rdx popq %rsi popq %rdi - movq 7248(%rax), %r11 + movq 7264(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7248(%rax), %r11 + movq 7264(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34589,7 +34671,7 @@ GL_PREFIX(GetUniformuivEXT): popq %rdx popq %rsi popq %rdi - movq 7248(%rax), %r11 + movq 7264(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetUniformuivEXT), .-GL_PREFIX(GetUniformuivEXT) @@ -34600,7 +34682,7 @@ GL_PREFIX(GetUniformuivEXT): GL_PREFIX(GetVertexAttribIivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7256(%rax), %r11 + movq 7272(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34610,13 +34692,13 @@ GL_PREFIX(GetVertexAttribIivEXT): popq %rdx popq %rsi popq %rdi - movq 7256(%rax), %r11 + movq 7272(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7256(%rax), %r11 + movq 7272(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34626,7 +34708,7 @@ GL_PREFIX(GetVertexAttribIivEXT): popq %rdx popq %rsi popq %rdi - movq 7256(%rax), %r11 + movq 7272(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetVertexAttribIivEXT), .-GL_PREFIX(GetVertexAttribIivEXT) @@ -34637,7 +34719,7 @@ GL_PREFIX(GetVertexAttribIivEXT): GL_PREFIX(GetVertexAttribIuivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7264(%rax), %r11 + movq 7280(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34647,13 +34729,13 @@ GL_PREFIX(GetVertexAttribIuivEXT): popq %rdx popq %rsi popq %rdi - movq 7264(%rax), %r11 + movq 7280(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7264(%rax), %r11 + movq 7280(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34663,7 +34745,7 @@ GL_PREFIX(GetVertexAttribIuivEXT): popq %rdx popq %rsi popq %rdi - movq 7264(%rax), %r11 + movq 7280(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetVertexAttribIuivEXT), .-GL_PREFIX(GetVertexAttribIuivEXT) @@ -34674,7 +34756,7 @@ GL_PREFIX(GetVertexAttribIuivEXT): GL_PREFIX(Uniform1uiEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7272(%rax), %r11 + movq 7288(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34684,13 +34766,13 @@ GL_PREFIX(Uniform1uiEXT): popq %rbp popq %rsi popq %rdi - movq 7272(%rax), %r11 + movq 7288(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7272(%rax), %r11 + movq 7288(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34700,7 +34782,7 @@ GL_PREFIX(Uniform1uiEXT): popq %rbp popq %rsi popq %rdi - movq 7272(%rax), %r11 + movq 7288(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(Uniform1uiEXT), .-GL_PREFIX(Uniform1uiEXT) @@ -34711,7 +34793,7 @@ GL_PREFIX(Uniform1uiEXT): GL_PREFIX(Uniform1uivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7280(%rax), %r11 + movq 7296(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34721,13 +34803,13 @@ GL_PREFIX(Uniform1uivEXT): popq %rdx popq %rsi popq %rdi - movq 7280(%rax), %r11 + movq 7296(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7280(%rax), %r11 + movq 7296(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34737,7 +34819,7 @@ GL_PREFIX(Uniform1uivEXT): popq %rdx popq %rsi popq %rdi - movq 7280(%rax), %r11 + movq 7296(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(Uniform1uivEXT), .-GL_PREFIX(Uniform1uivEXT) @@ -34748,7 +34830,7 @@ GL_PREFIX(Uniform1uivEXT): GL_PREFIX(Uniform2uiEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7288(%rax), %r11 + movq 7304(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34758,13 +34840,13 @@ GL_PREFIX(Uniform2uiEXT): popq %rdx popq %rsi popq %rdi - movq 7288(%rax), %r11 + movq 7304(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7288(%rax), %r11 + movq 7304(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34774,7 +34856,7 @@ GL_PREFIX(Uniform2uiEXT): popq %rdx popq %rsi popq %rdi - movq 7288(%rax), %r11 + movq 7304(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(Uniform2uiEXT), .-GL_PREFIX(Uniform2uiEXT) @@ -34785,7 +34867,7 @@ GL_PREFIX(Uniform2uiEXT): GL_PREFIX(Uniform2uivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7296(%rax), %r11 + movq 7312(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34795,13 +34877,13 @@ GL_PREFIX(Uniform2uivEXT): popq %rdx popq %rsi popq %rdi - movq 7296(%rax), %r11 + movq 7312(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7296(%rax), %r11 + movq 7312(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34811,7 +34893,7 @@ GL_PREFIX(Uniform2uivEXT): popq %rdx popq %rsi popq %rdi - movq 7296(%rax), %r11 + movq 7312(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(Uniform2uivEXT), .-GL_PREFIX(Uniform2uivEXT) @@ -34822,7 +34904,7 @@ GL_PREFIX(Uniform2uivEXT): GL_PREFIX(Uniform3uiEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7304(%rax), %r11 + movq 7320(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34836,13 +34918,13 @@ GL_PREFIX(Uniform3uiEXT): popq %rdx popq %rsi popq %rdi - movq 7304(%rax), %r11 + movq 7320(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7304(%rax), %r11 + movq 7320(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34856,7 +34938,7 @@ GL_PREFIX(Uniform3uiEXT): popq %rdx popq %rsi popq %rdi - movq 7304(%rax), %r11 + movq 7320(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(Uniform3uiEXT), .-GL_PREFIX(Uniform3uiEXT) @@ -34867,7 +34949,7 @@ GL_PREFIX(Uniform3uiEXT): GL_PREFIX(Uniform3uivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7312(%rax), %r11 + movq 7328(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34877,13 +34959,13 @@ GL_PREFIX(Uniform3uivEXT): popq %rdx popq %rsi popq %rdi - movq 7312(%rax), %r11 + movq 7328(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7312(%rax), %r11 + movq 7328(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34893,7 +34975,7 @@ GL_PREFIX(Uniform3uivEXT): popq %rdx popq %rsi popq %rdi - movq 7312(%rax), %r11 + movq 7328(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(Uniform3uivEXT), .-GL_PREFIX(Uniform3uivEXT) @@ -34904,7 +34986,7 @@ GL_PREFIX(Uniform3uivEXT): GL_PREFIX(Uniform4uiEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7320(%rax), %r11 + movq 7336(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34918,13 +35000,13 @@ GL_PREFIX(Uniform4uiEXT): popq %rdx popq %rsi popq %rdi - movq 7320(%rax), %r11 + movq 7336(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7320(%rax), %r11 + movq 7336(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34938,7 +35020,7 @@ GL_PREFIX(Uniform4uiEXT): popq %rdx popq %rsi popq %rdi - movq 7320(%rax), %r11 + movq 7336(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(Uniform4uiEXT), .-GL_PREFIX(Uniform4uiEXT) @@ -34949,7 +35031,7 @@ GL_PREFIX(Uniform4uiEXT): GL_PREFIX(Uniform4uivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7328(%rax), %r11 + movq 7344(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34959,13 +35041,13 @@ GL_PREFIX(Uniform4uivEXT): popq %rdx popq %rsi popq %rdi - movq 7328(%rax), %r11 + movq 7344(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7328(%rax), %r11 + movq 7344(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -34975,7 +35057,7 @@ GL_PREFIX(Uniform4uivEXT): popq %rdx popq %rsi popq %rdi - movq 7328(%rax), %r11 + movq 7344(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(Uniform4uivEXT), .-GL_PREFIX(Uniform4uivEXT) @@ -34986,7 +35068,7 @@ GL_PREFIX(Uniform4uivEXT): GL_PREFIX(VertexAttribI1iEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7336(%rax), %r11 + movq 7352(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -34996,13 +35078,13 @@ GL_PREFIX(VertexAttribI1iEXT): popq %rbp popq %rsi popq %rdi - movq 7336(%rax), %r11 + movq 7352(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7336(%rax), %r11 + movq 7352(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35012,7 +35094,7 @@ GL_PREFIX(VertexAttribI1iEXT): popq %rbp popq %rsi popq %rdi - movq 7336(%rax), %r11 + movq 7352(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI1iEXT), .-GL_PREFIX(VertexAttribI1iEXT) @@ -35023,7 +35105,7 @@ GL_PREFIX(VertexAttribI1iEXT): GL_PREFIX(VertexAttribI1ivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7344(%rax), %r11 + movq 7360(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35033,13 +35115,13 @@ GL_PREFIX(VertexAttribI1ivEXT): popq %rbp popq %rsi popq %rdi - movq 7344(%rax), %r11 + movq 7360(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7344(%rax), %r11 + movq 7360(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35049,7 +35131,7 @@ GL_PREFIX(VertexAttribI1ivEXT): popq %rbp popq %rsi popq %rdi - movq 7344(%rax), %r11 + movq 7360(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI1ivEXT), .-GL_PREFIX(VertexAttribI1ivEXT) @@ -35060,7 +35142,7 @@ GL_PREFIX(VertexAttribI1ivEXT): GL_PREFIX(VertexAttribI1uiEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7352(%rax), %r11 + movq 7368(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35070,13 +35152,13 @@ GL_PREFIX(VertexAttribI1uiEXT): popq %rbp popq %rsi popq %rdi - movq 7352(%rax), %r11 + movq 7368(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7352(%rax), %r11 + movq 7368(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35086,7 +35168,7 @@ GL_PREFIX(VertexAttribI1uiEXT): popq %rbp popq %rsi popq %rdi - movq 7352(%rax), %r11 + movq 7368(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI1uiEXT), .-GL_PREFIX(VertexAttribI1uiEXT) @@ -35097,7 +35179,7 @@ GL_PREFIX(VertexAttribI1uiEXT): GL_PREFIX(VertexAttribI1uivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7360(%rax), %r11 + movq 7376(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35107,13 +35189,13 @@ GL_PREFIX(VertexAttribI1uivEXT): popq %rbp popq %rsi popq %rdi - movq 7360(%rax), %r11 + movq 7376(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7360(%rax), %r11 + movq 7376(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35123,7 +35205,7 @@ GL_PREFIX(VertexAttribI1uivEXT): popq %rbp popq %rsi popq %rdi - movq 7360(%rax), %r11 + movq 7376(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI1uivEXT), .-GL_PREFIX(VertexAttribI1uivEXT) @@ -35134,7 +35216,7 @@ GL_PREFIX(VertexAttribI1uivEXT): GL_PREFIX(VertexAttribI2iEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7368(%rax), %r11 + movq 7384(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35144,13 +35226,13 @@ GL_PREFIX(VertexAttribI2iEXT): popq %rdx popq %rsi popq %rdi - movq 7368(%rax), %r11 + movq 7384(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7368(%rax), %r11 + movq 7384(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35160,7 +35242,7 @@ GL_PREFIX(VertexAttribI2iEXT): popq %rdx popq %rsi popq %rdi - movq 7368(%rax), %r11 + movq 7384(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI2iEXT), .-GL_PREFIX(VertexAttribI2iEXT) @@ -35171,7 +35253,7 @@ GL_PREFIX(VertexAttribI2iEXT): GL_PREFIX(VertexAttribI2ivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7376(%rax), %r11 + movq 7392(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35181,13 +35263,13 @@ GL_PREFIX(VertexAttribI2ivEXT): popq %rbp popq %rsi popq %rdi - movq 7376(%rax), %r11 + movq 7392(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7376(%rax), %r11 + movq 7392(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35197,7 +35279,7 @@ GL_PREFIX(VertexAttribI2ivEXT): popq %rbp popq %rsi popq %rdi - movq 7376(%rax), %r11 + movq 7392(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI2ivEXT), .-GL_PREFIX(VertexAttribI2ivEXT) @@ -35208,7 +35290,7 @@ GL_PREFIX(VertexAttribI2ivEXT): GL_PREFIX(VertexAttribI2uiEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7384(%rax), %r11 + movq 7400(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35218,13 +35300,13 @@ GL_PREFIX(VertexAttribI2uiEXT): popq %rdx popq %rsi popq %rdi - movq 7384(%rax), %r11 + movq 7400(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7384(%rax), %r11 + movq 7400(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35234,7 +35316,7 @@ GL_PREFIX(VertexAttribI2uiEXT): popq %rdx popq %rsi popq %rdi - movq 7384(%rax), %r11 + movq 7400(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI2uiEXT), .-GL_PREFIX(VertexAttribI2uiEXT) @@ -35245,7 +35327,7 @@ GL_PREFIX(VertexAttribI2uiEXT): GL_PREFIX(VertexAttribI2uivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7392(%rax), %r11 + movq 7408(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35255,13 +35337,13 @@ GL_PREFIX(VertexAttribI2uivEXT): popq %rbp popq %rsi popq %rdi - movq 7392(%rax), %r11 + movq 7408(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7392(%rax), %r11 + movq 7408(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35271,7 +35353,7 @@ GL_PREFIX(VertexAttribI2uivEXT): popq %rbp popq %rsi popq %rdi - movq 7392(%rax), %r11 + movq 7408(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI2uivEXT), .-GL_PREFIX(VertexAttribI2uivEXT) @@ -35282,7 +35364,7 @@ GL_PREFIX(VertexAttribI2uivEXT): GL_PREFIX(VertexAttribI3iEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7400(%rax), %r11 + movq 7416(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35296,13 +35378,13 @@ GL_PREFIX(VertexAttribI3iEXT): popq %rdx popq %rsi popq %rdi - movq 7400(%rax), %r11 + movq 7416(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7400(%rax), %r11 + movq 7416(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35316,7 +35398,7 @@ GL_PREFIX(VertexAttribI3iEXT): popq %rdx popq %rsi popq %rdi - movq 7400(%rax), %r11 + movq 7416(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI3iEXT), .-GL_PREFIX(VertexAttribI3iEXT) @@ -35327,7 +35409,7 @@ GL_PREFIX(VertexAttribI3iEXT): GL_PREFIX(VertexAttribI3ivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7408(%rax), %r11 + movq 7424(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35337,13 +35419,13 @@ GL_PREFIX(VertexAttribI3ivEXT): popq %rbp popq %rsi popq %rdi - movq 7408(%rax), %r11 + movq 7424(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7408(%rax), %r11 + movq 7424(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35353,7 +35435,7 @@ GL_PREFIX(VertexAttribI3ivEXT): popq %rbp popq %rsi popq %rdi - movq 7408(%rax), %r11 + movq 7424(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI3ivEXT), .-GL_PREFIX(VertexAttribI3ivEXT) @@ -35364,7 +35446,7 @@ GL_PREFIX(VertexAttribI3ivEXT): GL_PREFIX(VertexAttribI3uiEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7416(%rax), %r11 + movq 7432(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35378,13 +35460,13 @@ GL_PREFIX(VertexAttribI3uiEXT): popq %rdx popq %rsi popq %rdi - movq 7416(%rax), %r11 + movq 7432(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7416(%rax), %r11 + movq 7432(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35398,7 +35480,7 @@ GL_PREFIX(VertexAttribI3uiEXT): popq %rdx popq %rsi popq %rdi - movq 7416(%rax), %r11 + movq 7432(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI3uiEXT), .-GL_PREFIX(VertexAttribI3uiEXT) @@ -35409,7 +35491,7 @@ GL_PREFIX(VertexAttribI3uiEXT): GL_PREFIX(VertexAttribI3uivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7424(%rax), %r11 + movq 7440(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35419,13 +35501,13 @@ GL_PREFIX(VertexAttribI3uivEXT): popq %rbp popq %rsi popq %rdi - movq 7424(%rax), %r11 + movq 7440(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7424(%rax), %r11 + movq 7440(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35435,7 +35517,7 @@ GL_PREFIX(VertexAttribI3uivEXT): popq %rbp popq %rsi popq %rdi - movq 7424(%rax), %r11 + movq 7440(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI3uivEXT), .-GL_PREFIX(VertexAttribI3uivEXT) @@ -35446,7 +35528,7 @@ GL_PREFIX(VertexAttribI3uivEXT): GL_PREFIX(VertexAttribI4bvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7432(%rax), %r11 + movq 7448(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35456,13 +35538,13 @@ GL_PREFIX(VertexAttribI4bvEXT): popq %rbp popq %rsi popq %rdi - movq 7432(%rax), %r11 + movq 7448(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7432(%rax), %r11 + movq 7448(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35472,7 +35554,7 @@ GL_PREFIX(VertexAttribI4bvEXT): popq %rbp popq %rsi popq %rdi - movq 7432(%rax), %r11 + movq 7448(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI4bvEXT), .-GL_PREFIX(VertexAttribI4bvEXT) @@ -35483,7 +35565,7 @@ GL_PREFIX(VertexAttribI4bvEXT): GL_PREFIX(VertexAttribI4iEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7440(%rax), %r11 + movq 7456(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35497,13 +35579,13 @@ GL_PREFIX(VertexAttribI4iEXT): popq %rdx popq %rsi popq %rdi - movq 7440(%rax), %r11 + movq 7456(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7440(%rax), %r11 + movq 7456(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35517,7 +35599,7 @@ GL_PREFIX(VertexAttribI4iEXT): popq %rdx popq %rsi popq %rdi - movq 7440(%rax), %r11 + movq 7456(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI4iEXT), .-GL_PREFIX(VertexAttribI4iEXT) @@ -35528,7 +35610,7 @@ GL_PREFIX(VertexAttribI4iEXT): GL_PREFIX(VertexAttribI4ivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7448(%rax), %r11 + movq 7464(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35538,13 +35620,13 @@ GL_PREFIX(VertexAttribI4ivEXT): popq %rbp popq %rsi popq %rdi - movq 7448(%rax), %r11 + movq 7464(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7448(%rax), %r11 + movq 7464(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35554,7 +35636,7 @@ GL_PREFIX(VertexAttribI4ivEXT): popq %rbp popq %rsi popq %rdi - movq 7448(%rax), %r11 + movq 7464(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI4ivEXT), .-GL_PREFIX(VertexAttribI4ivEXT) @@ -35565,7 +35647,7 @@ GL_PREFIX(VertexAttribI4ivEXT): GL_PREFIX(VertexAttribI4svEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7456(%rax), %r11 + movq 7472(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35575,13 +35657,13 @@ GL_PREFIX(VertexAttribI4svEXT): popq %rbp popq %rsi popq %rdi - movq 7456(%rax), %r11 + movq 7472(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7456(%rax), %r11 + movq 7472(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35591,7 +35673,7 @@ GL_PREFIX(VertexAttribI4svEXT): popq %rbp popq %rsi popq %rdi - movq 7456(%rax), %r11 + movq 7472(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI4svEXT), .-GL_PREFIX(VertexAttribI4svEXT) @@ -35602,7 +35684,7 @@ GL_PREFIX(VertexAttribI4svEXT): GL_PREFIX(VertexAttribI4ubvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7464(%rax), %r11 + movq 7480(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35612,13 +35694,13 @@ GL_PREFIX(VertexAttribI4ubvEXT): popq %rbp popq %rsi popq %rdi - movq 7464(%rax), %r11 + movq 7480(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7464(%rax), %r11 + movq 7480(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35628,7 +35710,7 @@ GL_PREFIX(VertexAttribI4ubvEXT): popq %rbp popq %rsi popq %rdi - movq 7464(%rax), %r11 + movq 7480(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI4ubvEXT), .-GL_PREFIX(VertexAttribI4ubvEXT) @@ -35639,7 +35721,7 @@ GL_PREFIX(VertexAttribI4ubvEXT): GL_PREFIX(VertexAttribI4uiEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7472(%rax), %r11 + movq 7488(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35653,13 +35735,13 @@ GL_PREFIX(VertexAttribI4uiEXT): popq %rdx popq %rsi popq %rdi - movq 7472(%rax), %r11 + movq 7488(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7472(%rax), %r11 + movq 7488(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35673,7 +35755,7 @@ GL_PREFIX(VertexAttribI4uiEXT): popq %rdx popq %rsi popq %rdi - movq 7472(%rax), %r11 + movq 7488(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI4uiEXT), .-GL_PREFIX(VertexAttribI4uiEXT) @@ -35684,7 +35766,7 @@ GL_PREFIX(VertexAttribI4uiEXT): GL_PREFIX(VertexAttribI4uivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7480(%rax), %r11 + movq 7496(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35694,13 +35776,13 @@ GL_PREFIX(VertexAttribI4uivEXT): popq %rbp popq %rsi popq %rdi - movq 7480(%rax), %r11 + movq 7496(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7480(%rax), %r11 + movq 7496(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35710,7 +35792,7 @@ GL_PREFIX(VertexAttribI4uivEXT): popq %rbp popq %rsi popq %rdi - movq 7480(%rax), %r11 + movq 7496(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI4uivEXT), .-GL_PREFIX(VertexAttribI4uivEXT) @@ -35721,7 +35803,7 @@ GL_PREFIX(VertexAttribI4uivEXT): GL_PREFIX(VertexAttribI4usvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7488(%rax), %r11 + movq 7504(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35731,13 +35813,13 @@ GL_PREFIX(VertexAttribI4usvEXT): popq %rbp popq %rsi popq %rdi - movq 7488(%rax), %r11 + movq 7504(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7488(%rax), %r11 + movq 7504(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35747,7 +35829,7 @@ GL_PREFIX(VertexAttribI4usvEXT): popq %rbp popq %rsi popq %rdi - movq 7488(%rax), %r11 + movq 7504(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribI4usvEXT), .-GL_PREFIX(VertexAttribI4usvEXT) @@ -35758,7 +35840,7 @@ GL_PREFIX(VertexAttribI4usvEXT): GL_PREFIX(VertexAttribIPointerEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7496(%rax), %r11 + movq 7512(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35772,13 +35854,13 @@ GL_PREFIX(VertexAttribIPointerEXT): popq %rdx popq %rsi popq %rdi - movq 7496(%rax), %r11 + movq 7512(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7496(%rax), %r11 + movq 7512(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35792,7 +35874,7 @@ GL_PREFIX(VertexAttribIPointerEXT): popq %rdx popq %rsi popq %rdi - movq 7496(%rax), %r11 + movq 7512(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(VertexAttribIPointerEXT), .-GL_PREFIX(VertexAttribIPointerEXT) @@ -35803,7 +35885,7 @@ GL_PREFIX(VertexAttribIPointerEXT): GL_PREFIX(FramebufferTextureLayerEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7504(%rax), %r11 + movq 7520(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35817,13 +35899,13 @@ GL_PREFIX(FramebufferTextureLayerEXT): popq %rdx popq %rsi popq %rdi - movq 7504(%rax), %r11 + movq 7520(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7504(%rax), %r11 + movq 7520(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35837,7 +35919,7 @@ GL_PREFIX(FramebufferTextureLayerEXT): popq %rdx popq %rsi popq %rdi - movq 7504(%rax), %r11 + movq 7520(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(FramebufferTextureLayerEXT), .-GL_PREFIX(FramebufferTextureLayerEXT) @@ -35848,7 +35930,7 @@ GL_PREFIX(FramebufferTextureLayerEXT): GL_PREFIX(ColorMaskIndexedEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7512(%rax), %r11 + movq 7528(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35862,13 +35944,13 @@ GL_PREFIX(ColorMaskIndexedEXT): popq %rdx popq %rsi popq %rdi - movq 7512(%rax), %r11 + movq 7528(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7512(%rax), %r11 + movq 7528(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35882,7 +35964,7 @@ GL_PREFIX(ColorMaskIndexedEXT): popq %rdx popq %rsi popq %rdi - movq 7512(%rax), %r11 + movq 7528(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ColorMaskIndexedEXT), .-GL_PREFIX(ColorMaskIndexedEXT) @@ -35893,7 +35975,7 @@ GL_PREFIX(ColorMaskIndexedEXT): GL_PREFIX(DisableIndexedEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7520(%rax), %r11 + movq 7536(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35903,13 +35985,13 @@ GL_PREFIX(DisableIndexedEXT): popq %rbp popq %rsi popq %rdi - movq 7520(%rax), %r11 + movq 7536(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7520(%rax), %r11 + movq 7536(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35919,7 +36001,7 @@ GL_PREFIX(DisableIndexedEXT): popq %rbp popq %rsi popq %rdi - movq 7520(%rax), %r11 + movq 7536(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(DisableIndexedEXT), .-GL_PREFIX(DisableIndexedEXT) @@ -35930,7 +36012,7 @@ GL_PREFIX(DisableIndexedEXT): GL_PREFIX(EnableIndexedEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7528(%rax), %r11 + movq 7544(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35940,13 +36022,13 @@ GL_PREFIX(EnableIndexedEXT): popq %rbp popq %rsi popq %rdi - movq 7528(%rax), %r11 + movq 7544(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7528(%rax), %r11 + movq 7544(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35956,7 +36038,7 @@ GL_PREFIX(EnableIndexedEXT): popq %rbp popq %rsi popq %rdi - movq 7528(%rax), %r11 + movq 7544(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EnableIndexedEXT), .-GL_PREFIX(EnableIndexedEXT) @@ -35967,7 +36049,7 @@ GL_PREFIX(EnableIndexedEXT): GL_PREFIX(GetBooleanIndexedvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7536(%rax), %r11 + movq 7552(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -35977,13 +36059,13 @@ GL_PREFIX(GetBooleanIndexedvEXT): popq %rdx popq %rsi popq %rdi - movq 7536(%rax), %r11 + movq 7552(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7536(%rax), %r11 + movq 7552(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -35993,7 +36075,7 @@ GL_PREFIX(GetBooleanIndexedvEXT): popq %rdx popq %rsi popq %rdi - movq 7536(%rax), %r11 + movq 7552(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetBooleanIndexedvEXT), .-GL_PREFIX(GetBooleanIndexedvEXT) @@ -36004,7 +36086,7 @@ GL_PREFIX(GetBooleanIndexedvEXT): GL_PREFIX(GetIntegerIndexedvEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7544(%rax), %r11 + movq 7560(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36014,13 +36096,13 @@ GL_PREFIX(GetIntegerIndexedvEXT): popq %rdx popq %rsi popq %rdi - movq 7544(%rax), %r11 + movq 7560(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7544(%rax), %r11 + movq 7560(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36030,7 +36112,7 @@ GL_PREFIX(GetIntegerIndexedvEXT): popq %rdx popq %rsi popq %rdi - movq 7544(%rax), %r11 + movq 7560(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetIntegerIndexedvEXT), .-GL_PREFIX(GetIntegerIndexedvEXT) @@ -36041,7 +36123,7 @@ GL_PREFIX(GetIntegerIndexedvEXT): GL_PREFIX(IsEnabledIndexedEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7552(%rax), %r11 + movq 7568(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36051,13 +36133,13 @@ GL_PREFIX(IsEnabledIndexedEXT): popq %rbp popq %rsi popq %rdi - movq 7552(%rax), %r11 + movq 7568(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7552(%rax), %r11 + movq 7568(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36067,7 +36149,7 @@ GL_PREFIX(IsEnabledIndexedEXT): popq %rbp popq %rsi popq %rdi - movq 7552(%rax), %r11 + movq 7568(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(IsEnabledIndexedEXT), .-GL_PREFIX(IsEnabledIndexedEXT) @@ -36078,7 +36160,7 @@ GL_PREFIX(IsEnabledIndexedEXT): GL_PREFIX(ClearColorIiEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7560(%rax), %r11 + movq 7576(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36092,13 +36174,13 @@ GL_PREFIX(ClearColorIiEXT): popq %rdx popq %rsi popq %rdi - movq 7560(%rax), %r11 + movq 7576(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7560(%rax), %r11 + movq 7576(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36112,7 +36194,7 @@ GL_PREFIX(ClearColorIiEXT): popq %rdx popq %rsi popq %rdi - movq 7560(%rax), %r11 + movq 7576(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ClearColorIiEXT), .-GL_PREFIX(ClearColorIiEXT) @@ -36123,7 +36205,7 @@ GL_PREFIX(ClearColorIiEXT): GL_PREFIX(ClearColorIuiEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7568(%rax), %r11 + movq 7584(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36137,13 +36219,13 @@ GL_PREFIX(ClearColorIuiEXT): popq %rdx popq %rsi popq %rdi - movq 7568(%rax), %r11 + movq 7584(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7568(%rax), %r11 + movq 7584(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36157,7 +36239,7 @@ GL_PREFIX(ClearColorIuiEXT): popq %rdx popq %rsi popq %rdi - movq 7568(%rax), %r11 + movq 7584(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ClearColorIuiEXT), .-GL_PREFIX(ClearColorIuiEXT) @@ -36168,7 +36250,7 @@ GL_PREFIX(ClearColorIuiEXT): GL_PREFIX(GetTexParameterIivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7576(%rax), %r11 + movq 7592(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36178,13 +36260,13 @@ GL_PREFIX(GetTexParameterIivEXT): popq %rdx popq %rsi popq %rdi - movq 7576(%rax), %r11 + movq 7592(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7576(%rax), %r11 + movq 7592(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36194,7 +36276,7 @@ GL_PREFIX(GetTexParameterIivEXT): popq %rdx popq %rsi popq %rdi - movq 7576(%rax), %r11 + movq 7592(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetTexParameterIivEXT), .-GL_PREFIX(GetTexParameterIivEXT) @@ -36205,7 +36287,7 @@ GL_PREFIX(GetTexParameterIivEXT): GL_PREFIX(GetTexParameterIuivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7584(%rax), %r11 + movq 7600(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36215,13 +36297,13 @@ GL_PREFIX(GetTexParameterIuivEXT): popq %rdx popq %rsi popq %rdi - movq 7584(%rax), %r11 + movq 7600(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7584(%rax), %r11 + movq 7600(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36231,7 +36313,7 @@ GL_PREFIX(GetTexParameterIuivEXT): popq %rdx popq %rsi popq %rdi - movq 7584(%rax), %r11 + movq 7600(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetTexParameterIuivEXT), .-GL_PREFIX(GetTexParameterIuivEXT) @@ -36242,7 +36324,7 @@ GL_PREFIX(GetTexParameterIuivEXT): GL_PREFIX(TexParameterIivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7592(%rax), %r11 + movq 7608(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36252,13 +36334,13 @@ GL_PREFIX(TexParameterIivEXT): popq %rdx popq %rsi popq %rdi - movq 7592(%rax), %r11 + movq 7608(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7592(%rax), %r11 + movq 7608(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36268,7 +36350,7 @@ GL_PREFIX(TexParameterIivEXT): popq %rdx popq %rsi popq %rdi - movq 7592(%rax), %r11 + movq 7608(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexParameterIivEXT), .-GL_PREFIX(TexParameterIivEXT) @@ -36279,7 +36361,7 @@ GL_PREFIX(TexParameterIivEXT): GL_PREFIX(TexParameterIuivEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7600(%rax), %r11 + movq 7616(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36289,13 +36371,13 @@ GL_PREFIX(TexParameterIuivEXT): popq %rdx popq %rsi popq %rdi - movq 7600(%rax), %r11 + movq 7616(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7600(%rax), %r11 + movq 7616(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36305,7 +36387,7 @@ GL_PREFIX(TexParameterIuivEXT): popq %rdx popq %rsi popq %rdi - movq 7600(%rax), %r11 + movq 7616(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TexParameterIuivEXT), .-GL_PREFIX(TexParameterIuivEXT) @@ -36316,7 +36398,7 @@ GL_PREFIX(TexParameterIuivEXT): GL_PREFIX(BeginConditionalRenderNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7608(%rax), %r11 + movq 7624(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36326,13 +36408,13 @@ GL_PREFIX(BeginConditionalRenderNV): popq %rbp popq %rsi popq %rdi - movq 7608(%rax), %r11 + movq 7624(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7608(%rax), %r11 + movq 7624(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36342,7 +36424,7 @@ GL_PREFIX(BeginConditionalRenderNV): popq %rbp popq %rsi popq %rdi - movq 7608(%rax), %r11 + movq 7624(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BeginConditionalRenderNV), .-GL_PREFIX(BeginConditionalRenderNV) @@ -36353,25 +36435,25 @@ GL_PREFIX(BeginConditionalRenderNV): GL_PREFIX(EndConditionalRenderNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7616(%rax), %r11 + movq 7632(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 7616(%rax), %r11 + movq 7632(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7616(%rax), %r11 + movq 7632(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 7616(%rax), %r11 + movq 7632(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EndConditionalRenderNV), .-GL_PREFIX(EndConditionalRenderNV) @@ -36382,25 +36464,25 @@ GL_PREFIX(EndConditionalRenderNV): GL_PREFIX(BeginTransformFeedbackEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7624(%rax), %r11 + movq 7640(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 7624(%rax), %r11 + movq 7640(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7624(%rax), %r11 + movq 7640(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 7624(%rax), %r11 + movq 7640(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BeginTransformFeedbackEXT), .-GL_PREFIX(BeginTransformFeedbackEXT) @@ -36411,7 +36493,7 @@ GL_PREFIX(BeginTransformFeedbackEXT): GL_PREFIX(BindBufferBaseEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7632(%rax), %r11 + movq 7648(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36421,13 +36503,13 @@ GL_PREFIX(BindBufferBaseEXT): popq %rdx popq %rsi popq %rdi - movq 7632(%rax), %r11 + movq 7648(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7632(%rax), %r11 + movq 7648(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36437,7 +36519,7 @@ GL_PREFIX(BindBufferBaseEXT): popq %rdx popq %rsi popq %rdi - movq 7632(%rax), %r11 + movq 7648(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindBufferBaseEXT), .-GL_PREFIX(BindBufferBaseEXT) @@ -36448,7 +36530,7 @@ GL_PREFIX(BindBufferBaseEXT): GL_PREFIX(BindBufferOffsetEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7640(%rax), %r11 + movq 7656(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36462,13 +36544,13 @@ GL_PREFIX(BindBufferOffsetEXT): popq %rdx popq %rsi popq %rdi - movq 7640(%rax), %r11 + movq 7656(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7640(%rax), %r11 + movq 7656(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36482,7 +36564,7 @@ GL_PREFIX(BindBufferOffsetEXT): popq %rdx popq %rsi popq %rdi - movq 7640(%rax), %r11 + movq 7656(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindBufferOffsetEXT), .-GL_PREFIX(BindBufferOffsetEXT) @@ -36493,7 +36575,7 @@ GL_PREFIX(BindBufferOffsetEXT): GL_PREFIX(BindBufferRangeEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7648(%rax), %r11 + movq 7664(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36507,13 +36589,13 @@ GL_PREFIX(BindBufferRangeEXT): popq %rdx popq %rsi popq %rdi - movq 7648(%rax), %r11 + movq 7664(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7648(%rax), %r11 + movq 7664(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36527,7 +36609,7 @@ GL_PREFIX(BindBufferRangeEXT): popq %rdx popq %rsi popq %rdi - movq 7648(%rax), %r11 + movq 7664(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(BindBufferRangeEXT), .-GL_PREFIX(BindBufferRangeEXT) @@ -36538,25 +36620,25 @@ GL_PREFIX(BindBufferRangeEXT): GL_PREFIX(EndTransformFeedbackEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7656(%rax), %r11 + movq 7672(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 7656(%rax), %r11 + movq 7672(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7656(%rax), %r11 + movq 7672(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 7656(%rax), %r11 + movq 7672(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EndTransformFeedbackEXT), .-GL_PREFIX(EndTransformFeedbackEXT) @@ -36567,7 +36649,7 @@ GL_PREFIX(EndTransformFeedbackEXT): GL_PREFIX(GetTransformFeedbackVaryingEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7664(%rax), %r11 + movq 7680(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36585,13 +36667,13 @@ GL_PREFIX(GetTransformFeedbackVaryingEXT): popq %rdx popq %rsi popq %rdi - movq 7664(%rax), %r11 + movq 7680(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7664(%rax), %r11 + movq 7680(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36609,7 +36691,7 @@ GL_PREFIX(GetTransformFeedbackVaryingEXT): popq %rdx popq %rsi popq %rdi - movq 7664(%rax), %r11 + movq 7680(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetTransformFeedbackVaryingEXT), .-GL_PREFIX(GetTransformFeedbackVaryingEXT) @@ -36620,7 +36702,7 @@ GL_PREFIX(GetTransformFeedbackVaryingEXT): GL_PREFIX(TransformFeedbackVaryingsEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7672(%rax), %r11 + movq 7688(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36634,13 +36716,13 @@ GL_PREFIX(TransformFeedbackVaryingsEXT): popq %rdx popq %rsi popq %rdi - movq 7672(%rax), %r11 + movq 7688(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7672(%rax), %r11 + movq 7688(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36654,7 +36736,7 @@ GL_PREFIX(TransformFeedbackVaryingsEXT): popq %rdx popq %rsi popq %rdi - movq 7672(%rax), %r11 + movq 7688(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TransformFeedbackVaryingsEXT), .-GL_PREFIX(TransformFeedbackVaryingsEXT) @@ -36665,37 +36747,37 @@ GL_PREFIX(TransformFeedbackVaryingsEXT): GL_PREFIX(ProvokingVertexEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7680(%rax), %r11 + movq 7696(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 7680(%rax), %r11 + movq 7696(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7680(%rax), %r11 + movq 7696(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 7680(%rax), %r11 + movq 7696(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ProvokingVertexEXT), .-GL_PREFIX(ProvokingVertexEXT) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_961) - .type GL_PREFIX(_dispatch_stub_961), @function - HIDDEN(GL_PREFIX(_dispatch_stub_961)) -GL_PREFIX(_dispatch_stub_961): + .globl GL_PREFIX(_dispatch_stub_963) + .type GL_PREFIX(_dispatch_stub_963), @function + HIDDEN(GL_PREFIX(_dispatch_stub_963)) +GL_PREFIX(_dispatch_stub_963): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7688(%rax), %r11 + movq 7704(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36705,13 +36787,13 @@ GL_PREFIX(_dispatch_stub_961): popq %rdx popq %rsi popq %rdi - movq 7688(%rax), %r11 + movq 7704(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7688(%rax), %r11 + movq 7704(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36721,19 +36803,19 @@ GL_PREFIX(_dispatch_stub_961): popq %rdx popq %rsi popq %rdi - movq 7688(%rax), %r11 + movq 7704(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_961), .-GL_PREFIX(_dispatch_stub_961) + .size GL_PREFIX(_dispatch_stub_963), .-GL_PREFIX(_dispatch_stub_963) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_962) - .type GL_PREFIX(_dispatch_stub_962), @function - HIDDEN(GL_PREFIX(_dispatch_stub_962)) -GL_PREFIX(_dispatch_stub_962): + .globl GL_PREFIX(_dispatch_stub_964) + .type GL_PREFIX(_dispatch_stub_964), @function + HIDDEN(GL_PREFIX(_dispatch_stub_964)) +GL_PREFIX(_dispatch_stub_964): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7696(%rax), %r11 + movq 7712(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36743,13 +36825,13 @@ GL_PREFIX(_dispatch_stub_962): popq %rdx popq %rsi popq %rdi - movq 7696(%rax), %r11 + movq 7712(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7696(%rax), %r11 + movq 7712(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36759,10 +36841,10 @@ GL_PREFIX(_dispatch_stub_962): popq %rdx popq %rsi popq %rdi - movq 7696(%rax), %r11 + movq 7712(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_962), .-GL_PREFIX(_dispatch_stub_962) + .size GL_PREFIX(_dispatch_stub_964), .-GL_PREFIX(_dispatch_stub_964) .p2align 4,,15 .globl GL_PREFIX(GetObjectParameterivAPPLE) @@ -36770,7 +36852,7 @@ GL_PREFIX(_dispatch_stub_962): GL_PREFIX(GetObjectParameterivAPPLE): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7704(%rax), %r11 + movq 7720(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36784,13 +36866,13 @@ GL_PREFIX(GetObjectParameterivAPPLE): popq %rdx popq %rsi popq %rdi - movq 7704(%rax), %r11 + movq 7720(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7704(%rax), %r11 + movq 7720(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36804,7 +36886,7 @@ GL_PREFIX(GetObjectParameterivAPPLE): popq %rdx popq %rsi popq %rdi - movq 7704(%rax), %r11 + movq 7720(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(GetObjectParameterivAPPLE), .-GL_PREFIX(GetObjectParameterivAPPLE) @@ -36815,7 +36897,7 @@ GL_PREFIX(GetObjectParameterivAPPLE): GL_PREFIX(ObjectPurgeableAPPLE): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7712(%rax), %r11 + movq 7728(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36825,13 +36907,13 @@ GL_PREFIX(ObjectPurgeableAPPLE): popq %rdx popq %rsi popq %rdi - movq 7712(%rax), %r11 + movq 7728(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7712(%rax), %r11 + movq 7728(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36841,7 +36923,7 @@ GL_PREFIX(ObjectPurgeableAPPLE): popq %rdx popq %rsi popq %rdi - movq 7712(%rax), %r11 + movq 7728(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ObjectPurgeableAPPLE), .-GL_PREFIX(ObjectPurgeableAPPLE) @@ -36852,7 +36934,7 @@ GL_PREFIX(ObjectPurgeableAPPLE): GL_PREFIX(ObjectUnpurgeableAPPLE): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7720(%rax), %r11 + movq 7736(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36862,13 +36944,13 @@ GL_PREFIX(ObjectUnpurgeableAPPLE): popq %rdx popq %rsi popq %rdi - movq 7720(%rax), %r11 + movq 7736(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7720(%rax), %r11 + movq 7736(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36878,7 +36960,7 @@ GL_PREFIX(ObjectUnpurgeableAPPLE): popq %rdx popq %rsi popq %rdi - movq 7720(%rax), %r11 + movq 7736(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ObjectUnpurgeableAPPLE), .-GL_PREFIX(ObjectUnpurgeableAPPLE) @@ -36889,25 +36971,25 @@ GL_PREFIX(ObjectUnpurgeableAPPLE): GL_PREFIX(ActiveProgramEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7728(%rax), %r11 + movq 7744(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi call _x86_64_get_dispatch@PLT popq %rdi - movq 7728(%rax), %r11 + movq 7744(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7728(%rax), %r11 + movq 7744(%rax), %r11 jmp *%r11 1: pushq %rdi call _glapi_get_dispatch popq %rdi - movq 7728(%rax), %r11 + movq 7744(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(ActiveProgramEXT), .-GL_PREFIX(ActiveProgramEXT) @@ -36918,7 +37000,7 @@ GL_PREFIX(ActiveProgramEXT): GL_PREFIX(CreateShaderProgramEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7736(%rax), %r11 + movq 7752(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36928,13 +37010,13 @@ GL_PREFIX(CreateShaderProgramEXT): popq %rbp popq %rsi popq %rdi - movq 7736(%rax), %r11 + movq 7752(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7736(%rax), %r11 + movq 7752(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36944,7 +37026,7 @@ GL_PREFIX(CreateShaderProgramEXT): popq %rbp popq %rsi popq %rdi - movq 7736(%rax), %r11 + movq 7752(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(CreateShaderProgramEXT), .-GL_PREFIX(CreateShaderProgramEXT) @@ -36955,7 +37037,7 @@ GL_PREFIX(CreateShaderProgramEXT): GL_PREFIX(UseShaderProgramEXT): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7744(%rax), %r11 + movq 7760(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -36965,13 +37047,13 @@ GL_PREFIX(UseShaderProgramEXT): popq %rbp popq %rsi popq %rdi - movq 7744(%rax), %r11 + movq 7760(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7744(%rax), %r11 + movq 7760(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -36981,7 +37063,7 @@ GL_PREFIX(UseShaderProgramEXT): popq %rbp popq %rsi popq %rdi - movq 7744(%rax), %r11 + movq 7760(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(UseShaderProgramEXT), .-GL_PREFIX(UseShaderProgramEXT) @@ -36992,37 +37074,37 @@ GL_PREFIX(UseShaderProgramEXT): GL_PREFIX(TextureBarrierNV): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7752(%rax), %r11 + movq 7768(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rbp call _x86_64_get_dispatch@PLT popq %rbp - movq 7752(%rax), %r11 + movq 7768(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7752(%rax), %r11 + movq 7768(%rax), %r11 jmp *%r11 1: pushq %rbp call _glapi_get_dispatch popq %rbp - movq 7752(%rax), %r11 + movq 7768(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(TextureBarrierNV), .-GL_PREFIX(TextureBarrierNV) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_970) - .type GL_PREFIX(_dispatch_stub_970), @function - HIDDEN(GL_PREFIX(_dispatch_stub_970)) -GL_PREFIX(_dispatch_stub_970): + .globl GL_PREFIX(_dispatch_stub_972) + .type GL_PREFIX(_dispatch_stub_972), @function + HIDDEN(GL_PREFIX(_dispatch_stub_972)) +GL_PREFIX(_dispatch_stub_972): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7760(%rax), %r11 + movq 7776(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -37036,13 +37118,13 @@ GL_PREFIX(_dispatch_stub_970): popq %rdx popq %rsi popq %rdi - movq 7760(%rax), %r11 + movq 7776(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7760(%rax), %r11 + movq 7776(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -37056,19 +37138,19 @@ GL_PREFIX(_dispatch_stub_970): popq %rdx popq %rsi popq %rdi - movq 7760(%rax), %r11 + movq 7776(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_970), .-GL_PREFIX(_dispatch_stub_970) + .size GL_PREFIX(_dispatch_stub_972), .-GL_PREFIX(_dispatch_stub_972) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_971) - .type GL_PREFIX(_dispatch_stub_971), @function - HIDDEN(GL_PREFIX(_dispatch_stub_971)) -GL_PREFIX(_dispatch_stub_971): + .globl GL_PREFIX(_dispatch_stub_973) + .type GL_PREFIX(_dispatch_stub_973), @function + HIDDEN(GL_PREFIX(_dispatch_stub_973)) +GL_PREFIX(_dispatch_stub_973): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7768(%rax), %r11 + movq 7784(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -37082,13 +37164,13 @@ GL_PREFIX(_dispatch_stub_971): popq %rdx popq %rsi popq %rdi - movq 7768(%rax), %r11 + movq 7784(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7768(%rax), %r11 + movq 7784(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -37102,19 +37184,19 @@ GL_PREFIX(_dispatch_stub_971): popq %rdx popq %rsi popq %rdi - movq 7768(%rax), %r11 + movq 7784(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_971), .-GL_PREFIX(_dispatch_stub_971) + .size GL_PREFIX(_dispatch_stub_973), .-GL_PREFIX(_dispatch_stub_973) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_972) - .type GL_PREFIX(_dispatch_stub_972), @function - HIDDEN(GL_PREFIX(_dispatch_stub_972)) -GL_PREFIX(_dispatch_stub_972): + .globl GL_PREFIX(_dispatch_stub_974) + .type GL_PREFIX(_dispatch_stub_974), @function + HIDDEN(GL_PREFIX(_dispatch_stub_974)) +GL_PREFIX(_dispatch_stub_974): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7776(%rax), %r11 + movq 7792(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -37128,13 +37210,13 @@ GL_PREFIX(_dispatch_stub_972): popq %rdx popq %rsi popq %rdi - movq 7776(%rax), %r11 + movq 7792(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7776(%rax), %r11 + movq 7792(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -37148,19 +37230,19 @@ GL_PREFIX(_dispatch_stub_972): popq %rdx popq %rsi popq %rdi - movq 7776(%rax), %r11 + movq 7792(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_972), .-GL_PREFIX(_dispatch_stub_972) + .size GL_PREFIX(_dispatch_stub_974), .-GL_PREFIX(_dispatch_stub_974) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_973) - .type GL_PREFIX(_dispatch_stub_973), @function - HIDDEN(GL_PREFIX(_dispatch_stub_973)) -GL_PREFIX(_dispatch_stub_973): + .globl GL_PREFIX(_dispatch_stub_975) + .type GL_PREFIX(_dispatch_stub_975), @function + HIDDEN(GL_PREFIX(_dispatch_stub_975)) +GL_PREFIX(_dispatch_stub_975): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7784(%rax), %r11 + movq 7800(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -37170,13 +37252,13 @@ GL_PREFIX(_dispatch_stub_973): popq %rdx popq %rsi popq %rdi - movq 7784(%rax), %r11 + movq 7800(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7784(%rax), %r11 + movq 7800(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -37186,19 +37268,19 @@ GL_PREFIX(_dispatch_stub_973): popq %rdx popq %rsi popq %rdi - movq 7784(%rax), %r11 + movq 7800(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_973), .-GL_PREFIX(_dispatch_stub_973) + .size GL_PREFIX(_dispatch_stub_975), .-GL_PREFIX(_dispatch_stub_975) .p2align 4,,15 - .globl GL_PREFIX(_dispatch_stub_974) - .type GL_PREFIX(_dispatch_stub_974), @function - HIDDEN(GL_PREFIX(_dispatch_stub_974)) -GL_PREFIX(_dispatch_stub_974): + .globl GL_PREFIX(_dispatch_stub_976) + .type GL_PREFIX(_dispatch_stub_976), @function + HIDDEN(GL_PREFIX(_dispatch_stub_976)) +GL_PREFIX(_dispatch_stub_976): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7792(%rax), %r11 + movq 7808(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -37208,13 +37290,13 @@ GL_PREFIX(_dispatch_stub_974): popq %rdx popq %rsi popq %rdi - movq 7792(%rax), %r11 + movq 7808(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7792(%rax), %r11 + movq 7808(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -37224,10 +37306,10 @@ GL_PREFIX(_dispatch_stub_974): popq %rdx popq %rsi popq %rdi - movq 7792(%rax), %r11 + movq 7808(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ - .size GL_PREFIX(_dispatch_stub_974), .-GL_PREFIX(_dispatch_stub_974) + .size GL_PREFIX(_dispatch_stub_976), .-GL_PREFIX(_dispatch_stub_976) .p2align 4,,15 .globl GL_PREFIX(EGLImageTargetRenderbufferStorageOES) @@ -37235,7 +37317,7 @@ GL_PREFIX(_dispatch_stub_974): GL_PREFIX(EGLImageTargetRenderbufferStorageOES): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7800(%rax), %r11 + movq 7816(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -37245,13 +37327,13 @@ GL_PREFIX(EGLImageTargetRenderbufferStorageOES): popq %rbp popq %rsi popq %rdi - movq 7800(%rax), %r11 + movq 7816(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7800(%rax), %r11 + movq 7816(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -37261,7 +37343,7 @@ GL_PREFIX(EGLImageTargetRenderbufferStorageOES): popq %rbp popq %rsi popq %rdi - movq 7800(%rax), %r11 + movq 7816(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EGLImageTargetRenderbufferStorageOES), .-GL_PREFIX(EGLImageTargetRenderbufferStorageOES) @@ -37272,7 +37354,7 @@ GL_PREFIX(EGLImageTargetRenderbufferStorageOES): GL_PREFIX(EGLImageTargetTexture2DOES): #if defined(GLX_USE_TLS) call _x86_64_get_dispatch@PLT - movq 7808(%rax), %r11 + movq 7824(%rax), %r11 jmp *%r11 #elif defined(PTHREADS) pushq %rdi @@ -37282,13 +37364,13 @@ GL_PREFIX(EGLImageTargetTexture2DOES): popq %rbp popq %rsi popq %rdi - movq 7808(%rax), %r11 + movq 7824(%rax), %r11 jmp *%r11 #else movq _glapi_Dispatch(%rip), %rax testq %rax, %rax je 1f - movq 7808(%rax), %r11 + movq 7824(%rax), %r11 jmp *%r11 1: pushq %rdi @@ -37298,7 +37380,7 @@ GL_PREFIX(EGLImageTargetTexture2DOES): popq %rbp popq %rsi popq %rdi - movq 7808(%rax), %r11 + movq 7824(%rax), %r11 jmp *%r11 #endif /* defined(GLX_USE_TLS) */ .size GL_PREFIX(EGLImageTargetTexture2DOES), .-GL_PREFIX(EGLImageTargetTexture2DOES) @@ -37566,10 +37648,10 @@ GL_PREFIX(EGLImageTargetTexture2DOES): .globl GL_PREFIX(IsProgramARB) ; .set GL_PREFIX(IsProgramARB), GL_PREFIX(IsProgramNV) .globl GL_PREFIX(PointParameteri) ; .set GL_PREFIX(PointParameteri), GL_PREFIX(PointParameteriNV) .globl GL_PREFIX(PointParameteriv) ; .set GL_PREFIX(PointParameteriv), GL_PREFIX(PointParameterivNV) - .globl GL_PREFIX(DeleteVertexArrays) ; .set GL_PREFIX(DeleteVertexArrays), GL_PREFIX(_dispatch_stub_871) - .globl GL_PREFIX(IsVertexArray) ; .set GL_PREFIX(IsVertexArray), GL_PREFIX(_dispatch_stub_873) + .globl GL_PREFIX(DeleteVertexArrays) ; .set GL_PREFIX(DeleteVertexArrays), GL_PREFIX(_dispatch_stub_873) + .globl GL_PREFIX(IsVertexArray) ; .set GL_PREFIX(IsVertexArray), GL_PREFIX(_dispatch_stub_875) .globl GL_PREFIX(PrimitiveRestartIndex) ; .set GL_PREFIX(PrimitiveRestartIndex), GL_PREFIX(PrimitiveRestartIndexNV) - .globl GL_PREFIX(BlendEquationSeparate) ; .set GL_PREFIX(BlendEquationSeparate), GL_PREFIX(_dispatch_stub_883) + .globl GL_PREFIX(BlendEquationSeparate) ; .set GL_PREFIX(BlendEquationSeparate), GL_PREFIX(_dispatch_stub_885) .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) @@ -37587,7 +37669,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_901) + .globl GL_PREFIX(BlitFramebuffer) ; .set GL_PREFIX(BlitFramebuffer), GL_PREFIX(_dispatch_stub_903) .globl GL_PREFIX(BindFragDataLocation) ; .set GL_PREFIX(BindFragDataLocation), GL_PREFIX(BindFragDataLocationEXT) .globl GL_PREFIX(GetFragDataLocation) ; .set GL_PREFIX(GetFragDataLocation), GL_PREFIX(GetFragDataLocationEXT) .globl GL_PREFIX(GetUniformuiv) ; .set GL_PREFIX(GetUniformuiv), GL_PREFIX(GetUniformuivEXT) diff --git a/src/mapi/glapi/glapi_x86.S b/src/mapi/glapi/glapi_x86.S index a50923d32bd..8d0bbf7f921 100644 --- a/src/mapi/glapi/glapi_x86.S +++ b/src/mapi/glapi/glapi_x86.S @@ -751,105 +751,103 @@ GLNAME(gl_dispatch_functions_start): GL_STUB(BlendEquationiARB, 598, BlendEquationiARB@8) GL_STUB(BlendFuncSeparateiARB, 599, BlendFuncSeparateiARB@20) GL_STUB(BlendFunciARB, 600, BlendFunciARB@12) - GL_STUB(BindSampler, 601, BindSampler@8) - GL_STUB(DeleteSamplers, 602, DeleteSamplers@8) - GL_STUB(GenSamplers, 603, GenSamplers@8) - GL_STUB(GetSamplerParameterIiv, 604, GetSamplerParameterIiv@12) - GL_STUB(GetSamplerParameterIuiv, 605, GetSamplerParameterIuiv@12) - GL_STUB(GetSamplerParameterfv, 606, GetSamplerParameterfv@12) - GL_STUB(GetSamplerParameteriv, 607, GetSamplerParameteriv@12) - GL_STUB(IsSampler, 608, IsSampler@4) - GL_STUB(SamplerParameterIiv, 609, SamplerParameterIiv@12) - GL_STUB(SamplerParameterIuiv, 610, SamplerParameterIuiv@12) - GL_STUB(SamplerParameterf, 611, SamplerParameterf@12) - GL_STUB(SamplerParameterfv, 612, SamplerParameterfv@12) - GL_STUB(SamplerParameteri, 613, SamplerParameteri@12) - GL_STUB(SamplerParameteriv, 614, SamplerParameteriv@12) - GL_STUB(ColorP3ui, 615, ColorP3ui@8) - GL_STUB(ColorP3uiv, 616, ColorP3uiv@8) - GL_STUB(ColorP4ui, 617, ColorP4ui@8) - GL_STUB(ColorP4uiv, 618, ColorP4uiv@8) - GL_STUB(MultiTexCoordP1ui, 619, MultiTexCoordP1ui@12) - GL_STUB(MultiTexCoordP1uiv, 620, MultiTexCoordP1uiv@12) - GL_STUB(MultiTexCoordP2ui, 621, MultiTexCoordP2ui@12) - GL_STUB(MultiTexCoordP2uiv, 622, MultiTexCoordP2uiv@12) - GL_STUB(MultiTexCoordP3ui, 623, MultiTexCoordP3ui@12) - GL_STUB(MultiTexCoordP3uiv, 624, MultiTexCoordP3uiv@12) - GL_STUB(MultiTexCoordP4ui, 625, MultiTexCoordP4ui@12) - GL_STUB(MultiTexCoordP4uiv, 626, MultiTexCoordP4uiv@12) - GL_STUB(NormalP3ui, 627, NormalP3ui@8) - GL_STUB(NormalP3uiv, 628, NormalP3uiv@8) - GL_STUB(SecondaryColorP3ui, 629, SecondaryColorP3ui@8) - GL_STUB(SecondaryColorP3uiv, 630, SecondaryColorP3uiv@8) - GL_STUB(TexCoordP1ui, 631, TexCoordP1ui@8) - GL_STUB(TexCoordP1uiv, 632, TexCoordP1uiv@8) - GL_STUB(TexCoordP2ui, 633, TexCoordP2ui@8) - GL_STUB(TexCoordP2uiv, 634, TexCoordP2uiv@8) - GL_STUB(TexCoordP3ui, 635, TexCoordP3ui@8) - GL_STUB(TexCoordP3uiv, 636, TexCoordP3uiv@8) - GL_STUB(TexCoordP4ui, 637, TexCoordP4ui@8) - GL_STUB(TexCoordP4uiv, 638, TexCoordP4uiv@8) - GL_STUB(VertexAttribP1ui, 639, VertexAttribP1ui@16) - GL_STUB(VertexAttribP1uiv, 640, VertexAttribP1uiv@16) - GL_STUB(VertexAttribP2ui, 641, VertexAttribP2ui@16) - GL_STUB(VertexAttribP2uiv, 642, VertexAttribP2uiv@16) - GL_STUB(VertexAttribP3ui, 643, VertexAttribP3ui@16) - GL_STUB(VertexAttribP3uiv, 644, VertexAttribP3uiv@16) - GL_STUB(VertexAttribP4ui, 645, VertexAttribP4ui@16) - GL_STUB(VertexAttribP4uiv, 646, VertexAttribP4uiv@16) - GL_STUB(VertexP2ui, 647, VertexP2ui@8) - GL_STUB(VertexP2uiv, 648, VertexP2uiv@8) - GL_STUB(VertexP3ui, 649, VertexP3ui@8) - GL_STUB(VertexP3uiv, 650, VertexP3uiv@8) - GL_STUB(VertexP4ui, 651, VertexP4ui@8) - GL_STUB(VertexP4uiv, 652, VertexP4uiv@8) - GL_STUB(BindTransformFeedback, 653, BindTransformFeedback@8) - GL_STUB(DeleteTransformFeedbacks, 654, DeleteTransformFeedbacks@8) - GL_STUB(DrawTransformFeedback, 655, DrawTransformFeedback@8) - GL_STUB(GenTransformFeedbacks, 656, GenTransformFeedbacks@8) - GL_STUB(IsTransformFeedback, 657, IsTransformFeedback@4) - GL_STUB(PauseTransformFeedback, 658, PauseTransformFeedback@0) - GL_STUB(ResumeTransformFeedback, 659, ResumeTransformFeedback@0) - GL_STUB(ClearDepthf, 660, ClearDepthf@4) - GL_STUB(DepthRangef, 661, DepthRangef@8) - GL_STUB(GetShaderPrecisionFormat, 662, GetShaderPrecisionFormat@16) - GL_STUB(ReleaseShaderCompiler, 663, ReleaseShaderCompiler@0) - GL_STUB(ShaderBinary, 664, ShaderBinary@20) - GL_STUB(DebugMessageCallbackARB, 665, DebugMessageCallbackARB@8) - GL_STUB(DebugMessageControlARB, 666, DebugMessageControlARB@24) - GL_STUB(DebugMessageInsertARB, 667, DebugMessageInsertARB@24) - GL_STUB(GetDebugMessageLogARB, 668, GetDebugMessageLogARB@32) - GL_STUB(GetGraphicsResetStatusARB, 669, GetGraphicsResetStatusARB@0) - GL_STUB(GetnColorTableARB, 670, GetnColorTableARB@20) - GL_STUB(GetnCompressedTexImageARB, 671, GetnCompressedTexImageARB@16) - GL_STUB(GetnConvolutionFilterARB, 672, GetnConvolutionFilterARB@20) - GL_STUB(GetnHistogramARB, 673, GetnHistogramARB@24) - GL_STUB(GetnMapdvARB, 674, GetnMapdvARB@16) - GL_STUB(GetnMapfvARB, 675, GetnMapfvARB@16) - GL_STUB(GetnMapivARB, 676, GetnMapivARB@16) - GL_STUB(GetnMinmaxARB, 677, GetnMinmaxARB@24) - GL_STUB(GetnPixelMapfvARB, 678, GetnPixelMapfvARB@12) - GL_STUB(GetnPixelMapuivARB, 679, GetnPixelMapuivARB@12) - GL_STUB(GetnPixelMapusvARB, 680, GetnPixelMapusvARB@12) - GL_STUB(GetnPolygonStippleARB, 681, GetnPolygonStippleARB@8) - GL_STUB(GetnSeparableFilterARB, 682, GetnSeparableFilterARB@32) - GL_STUB(GetnTexImageARB, 683, GetnTexImageARB@24) - GL_STUB(GetnUniformdvARB, 684, GetnUniformdvARB@16) - GL_STUB(GetnUniformfvARB, 685, GetnUniformfvARB@16) - GL_STUB(GetnUniformivARB, 686, GetnUniformivARB@16) - GL_STUB(GetnUniformuivARB, 687, GetnUniformuivARB@16) - GL_STUB(ReadnPixelsARB, 688, ReadnPixelsARB@32) - GL_STUB(TexStorage1D, 689, TexStorage1D@16) - GL_STUB(TexStorage2D, 690, TexStorage2D@20) - GL_STUB(TexStorage3D, 691, TexStorage3D@24) - GL_STUB(TextureStorage1DEXT, 692, TextureStorage1DEXT@20) - GL_STUB(TextureStorage2DEXT, 693, TextureStorage2DEXT@24) - GL_STUB(TextureStorage3DEXT, 694, TextureStorage3DEXT@28) - GL_STUB(PolygonOffsetEXT, 695, PolygonOffsetEXT@8) - GL_STUB(_dispatch_stub_696, 696, _dispatch_stub_696@8) - HIDDEN(GL_PREFIX(_dispatch_stub_696, _dispatch_stub_696@8)) - GL_STUB(_dispatch_stub_697, 697, _dispatch_stub_697@8) - HIDDEN(GL_PREFIX(_dispatch_stub_697, _dispatch_stub_697@8)) + GL_STUB(BindFragDataLocationIndexed, 601, BindFragDataLocationIndexed@16) + GL_STUB(GetFragDataIndex, 602, GetFragDataIndex@8) + GL_STUB(BindSampler, 603, BindSampler@8) + GL_STUB(DeleteSamplers, 604, DeleteSamplers@8) + GL_STUB(GenSamplers, 605, GenSamplers@8) + GL_STUB(GetSamplerParameterIiv, 606, GetSamplerParameterIiv@12) + GL_STUB(GetSamplerParameterIuiv, 607, GetSamplerParameterIuiv@12) + GL_STUB(GetSamplerParameterfv, 608, GetSamplerParameterfv@12) + GL_STUB(GetSamplerParameteriv, 609, GetSamplerParameteriv@12) + GL_STUB(IsSampler, 610, IsSampler@4) + GL_STUB(SamplerParameterIiv, 611, SamplerParameterIiv@12) + GL_STUB(SamplerParameterIuiv, 612, SamplerParameterIuiv@12) + GL_STUB(SamplerParameterf, 613, SamplerParameterf@12) + GL_STUB(SamplerParameterfv, 614, SamplerParameterfv@12) + GL_STUB(SamplerParameteri, 615, SamplerParameteri@12) + GL_STUB(SamplerParameteriv, 616, SamplerParameteriv@12) + GL_STUB(ColorP3ui, 617, ColorP3ui@8) + GL_STUB(ColorP3uiv, 618, ColorP3uiv@8) + GL_STUB(ColorP4ui, 619, ColorP4ui@8) + GL_STUB(ColorP4uiv, 620, ColorP4uiv@8) + GL_STUB(MultiTexCoordP1ui, 621, MultiTexCoordP1ui@12) + GL_STUB(MultiTexCoordP1uiv, 622, MultiTexCoordP1uiv@12) + GL_STUB(MultiTexCoordP2ui, 623, MultiTexCoordP2ui@12) + GL_STUB(MultiTexCoordP2uiv, 624, MultiTexCoordP2uiv@12) + GL_STUB(MultiTexCoordP3ui, 625, MultiTexCoordP3ui@12) + GL_STUB(MultiTexCoordP3uiv, 626, MultiTexCoordP3uiv@12) + GL_STUB(MultiTexCoordP4ui, 627, MultiTexCoordP4ui@12) + GL_STUB(MultiTexCoordP4uiv, 628, MultiTexCoordP4uiv@12) + GL_STUB(NormalP3ui, 629, NormalP3ui@8) + GL_STUB(NormalP3uiv, 630, NormalP3uiv@8) + GL_STUB(SecondaryColorP3ui, 631, SecondaryColorP3ui@8) + GL_STUB(SecondaryColorP3uiv, 632, SecondaryColorP3uiv@8) + GL_STUB(TexCoordP1ui, 633, TexCoordP1ui@8) + GL_STUB(TexCoordP1uiv, 634, TexCoordP1uiv@8) + GL_STUB(TexCoordP2ui, 635, TexCoordP2ui@8) + GL_STUB(TexCoordP2uiv, 636, TexCoordP2uiv@8) + GL_STUB(TexCoordP3ui, 637, TexCoordP3ui@8) + GL_STUB(TexCoordP3uiv, 638, TexCoordP3uiv@8) + GL_STUB(TexCoordP4ui, 639, TexCoordP4ui@8) + GL_STUB(TexCoordP4uiv, 640, TexCoordP4uiv@8) + GL_STUB(VertexAttribP1ui, 641, VertexAttribP1ui@16) + GL_STUB(VertexAttribP1uiv, 642, VertexAttribP1uiv@16) + GL_STUB(VertexAttribP2ui, 643, VertexAttribP2ui@16) + GL_STUB(VertexAttribP2uiv, 644, VertexAttribP2uiv@16) + GL_STUB(VertexAttribP3ui, 645, VertexAttribP3ui@16) + GL_STUB(VertexAttribP3uiv, 646, VertexAttribP3uiv@16) + GL_STUB(VertexAttribP4ui, 647, VertexAttribP4ui@16) + GL_STUB(VertexAttribP4uiv, 648, VertexAttribP4uiv@16) + GL_STUB(VertexP2ui, 649, VertexP2ui@8) + GL_STUB(VertexP2uiv, 650, VertexP2uiv@8) + GL_STUB(VertexP3ui, 651, VertexP3ui@8) + GL_STUB(VertexP3uiv, 652, VertexP3uiv@8) + GL_STUB(VertexP4ui, 653, VertexP4ui@8) + GL_STUB(VertexP4uiv, 654, VertexP4uiv@8) + GL_STUB(BindTransformFeedback, 655, BindTransformFeedback@8) + GL_STUB(DeleteTransformFeedbacks, 656, DeleteTransformFeedbacks@8) + GL_STUB(DrawTransformFeedback, 657, DrawTransformFeedback@8) + GL_STUB(GenTransformFeedbacks, 658, GenTransformFeedbacks@8) + GL_STUB(IsTransformFeedback, 659, IsTransformFeedback@4) + GL_STUB(PauseTransformFeedback, 660, PauseTransformFeedback@0) + GL_STUB(ResumeTransformFeedback, 661, ResumeTransformFeedback@0) + GL_STUB(ClearDepthf, 662, ClearDepthf@4) + GL_STUB(DepthRangef, 663, DepthRangef@8) + GL_STUB(GetShaderPrecisionFormat, 664, GetShaderPrecisionFormat@16) + GL_STUB(ReleaseShaderCompiler, 665, ReleaseShaderCompiler@0) + GL_STUB(ShaderBinary, 666, ShaderBinary@20) + GL_STUB(DebugMessageCallbackARB, 667, DebugMessageCallbackARB@8) + GL_STUB(DebugMessageControlARB, 668, DebugMessageControlARB@24) + GL_STUB(DebugMessageInsertARB, 669, DebugMessageInsertARB@24) + GL_STUB(GetDebugMessageLogARB, 670, GetDebugMessageLogARB@32) + GL_STUB(GetGraphicsResetStatusARB, 671, GetGraphicsResetStatusARB@0) + GL_STUB(GetnColorTableARB, 672, GetnColorTableARB@20) + GL_STUB(GetnCompressedTexImageARB, 673, GetnCompressedTexImageARB@16) + GL_STUB(GetnConvolutionFilterARB, 674, GetnConvolutionFilterARB@20) + GL_STUB(GetnHistogramARB, 675, GetnHistogramARB@24) + GL_STUB(GetnMapdvARB, 676, GetnMapdvARB@16) + GL_STUB(GetnMapfvARB, 677, GetnMapfvARB@16) + GL_STUB(GetnMapivARB, 678, GetnMapivARB@16) + GL_STUB(GetnMinmaxARB, 679, GetnMinmaxARB@24) + GL_STUB(GetnPixelMapfvARB, 680, GetnPixelMapfvARB@12) + GL_STUB(GetnPixelMapuivARB, 681, GetnPixelMapuivARB@12) + GL_STUB(GetnPixelMapusvARB, 682, GetnPixelMapusvARB@12) + GL_STUB(GetnPolygonStippleARB, 683, GetnPolygonStippleARB@8) + GL_STUB(GetnSeparableFilterARB, 684, GetnSeparableFilterARB@32) + GL_STUB(GetnTexImageARB, 685, GetnTexImageARB@24) + GL_STUB(GetnUniformdvARB, 686, GetnUniformdvARB@16) + GL_STUB(GetnUniformfvARB, 687, GetnUniformfvARB@16) + GL_STUB(GetnUniformivARB, 688, GetnUniformivARB@16) + GL_STUB(GetnUniformuivARB, 689, GetnUniformuivARB@16) + GL_STUB(ReadnPixelsARB, 690, ReadnPixelsARB@32) + GL_STUB(TexStorage1D, 691, TexStorage1D@16) + GL_STUB(TexStorage2D, 692, TexStorage2D@20) + GL_STUB(TexStorage3D, 693, TexStorage3D@24) + GL_STUB(TextureStorage1DEXT, 694, TextureStorage1DEXT@20) + GL_STUB(TextureStorage2DEXT, 695, TextureStorage2DEXT@24) + GL_STUB(TextureStorage3DEXT, 696, TextureStorage3DEXT@28) + GL_STUB(PolygonOffsetEXT, 697, PolygonOffsetEXT@8) GL_STUB(_dispatch_stub_698, 698, _dispatch_stub_698@8) HIDDEN(GL_PREFIX(_dispatch_stub_698, _dispatch_stub_698@8)) GL_STUB(_dispatch_stub_699, 699, _dispatch_stub_699@8) @@ -860,308 +858,312 @@ GLNAME(gl_dispatch_functions_start): HIDDEN(GL_PREFIX(_dispatch_stub_701, _dispatch_stub_701@8)) GL_STUB(_dispatch_stub_702, 702, _dispatch_stub_702@8) HIDDEN(GL_PREFIX(_dispatch_stub_702, _dispatch_stub_702@8)) - GL_STUB(_dispatch_stub_703, 703, _dispatch_stub_703@4) - HIDDEN(GL_PREFIX(_dispatch_stub_703, _dispatch_stub_703@4)) - GL_STUB(ColorPointerEXT, 704, ColorPointerEXT@20) - GL_STUB(EdgeFlagPointerEXT, 705, EdgeFlagPointerEXT@12) - GL_STUB(IndexPointerEXT, 706, IndexPointerEXT@16) - GL_STUB(NormalPointerEXT, 707, NormalPointerEXT@16) - GL_STUB(TexCoordPointerEXT, 708, TexCoordPointerEXT@20) - GL_STUB(VertexPointerEXT, 709, VertexPointerEXT@20) - GL_STUB(PointParameterfEXT, 710, PointParameterfEXT@8) - GL_STUB(PointParameterfvEXT, 711, PointParameterfvEXT@8) - GL_STUB(LockArraysEXT, 712, LockArraysEXT@8) - GL_STUB(UnlockArraysEXT, 713, UnlockArraysEXT@0) - GL_STUB(SecondaryColor3bEXT, 714, SecondaryColor3bEXT@12) - GL_STUB(SecondaryColor3bvEXT, 715, SecondaryColor3bvEXT@4) - GL_STUB(SecondaryColor3dEXT, 716, SecondaryColor3dEXT@24) - GL_STUB(SecondaryColor3dvEXT, 717, SecondaryColor3dvEXT@4) - GL_STUB(SecondaryColor3fEXT, 718, SecondaryColor3fEXT@12) - GL_STUB(SecondaryColor3fvEXT, 719, SecondaryColor3fvEXT@4) - GL_STUB(SecondaryColor3iEXT, 720, SecondaryColor3iEXT@12) - GL_STUB(SecondaryColor3ivEXT, 721, SecondaryColor3ivEXT@4) - GL_STUB(SecondaryColor3sEXT, 722, SecondaryColor3sEXT@12) - GL_STUB(SecondaryColor3svEXT, 723, SecondaryColor3svEXT@4) - GL_STUB(SecondaryColor3ubEXT, 724, SecondaryColor3ubEXT@12) - GL_STUB(SecondaryColor3ubvEXT, 725, SecondaryColor3ubvEXT@4) - GL_STUB(SecondaryColor3uiEXT, 726, SecondaryColor3uiEXT@12) - GL_STUB(SecondaryColor3uivEXT, 727, SecondaryColor3uivEXT@4) - GL_STUB(SecondaryColor3usEXT, 728, SecondaryColor3usEXT@12) - GL_STUB(SecondaryColor3usvEXT, 729, SecondaryColor3usvEXT@4) - GL_STUB(SecondaryColorPointerEXT, 730, SecondaryColorPointerEXT@16) - GL_STUB(MultiDrawArraysEXT, 731, MultiDrawArraysEXT@16) - GL_STUB(MultiDrawElementsEXT, 732, MultiDrawElementsEXT@20) - GL_STUB(FogCoordPointerEXT, 733, FogCoordPointerEXT@12) - GL_STUB(FogCoorddEXT, 734, FogCoorddEXT@8) - GL_STUB(FogCoorddvEXT, 735, FogCoorddvEXT@4) - GL_STUB(FogCoordfEXT, 736, FogCoordfEXT@4) - GL_STUB(FogCoordfvEXT, 737, FogCoordfvEXT@4) - GL_STUB(_dispatch_stub_738, 738, _dispatch_stub_738@4) - HIDDEN(GL_PREFIX(_dispatch_stub_738, _dispatch_stub_738@4)) - GL_STUB(BlendFuncSeparateEXT, 739, BlendFuncSeparateEXT@16) - GL_STUB(FlushVertexArrayRangeNV, 740, FlushVertexArrayRangeNV@0) - GL_STUB(VertexArrayRangeNV, 741, VertexArrayRangeNV@8) - GL_STUB(CombinerInputNV, 742, CombinerInputNV@24) - GL_STUB(CombinerOutputNV, 743, CombinerOutputNV@40) - GL_STUB(CombinerParameterfNV, 744, CombinerParameterfNV@8) - GL_STUB(CombinerParameterfvNV, 745, CombinerParameterfvNV@8) - GL_STUB(CombinerParameteriNV, 746, CombinerParameteriNV@8) - GL_STUB(CombinerParameterivNV, 747, CombinerParameterivNV@8) - GL_STUB(FinalCombinerInputNV, 748, FinalCombinerInputNV@16) - GL_STUB(GetCombinerInputParameterfvNV, 749, GetCombinerInputParameterfvNV@20) - GL_STUB(GetCombinerInputParameterivNV, 750, GetCombinerInputParameterivNV@20) - GL_STUB(GetCombinerOutputParameterfvNV, 751, GetCombinerOutputParameterfvNV@16) - GL_STUB(GetCombinerOutputParameterivNV, 752, GetCombinerOutputParameterivNV@16) - GL_STUB(GetFinalCombinerInputParameterfvNV, 753, GetFinalCombinerInputParameterfvNV@12) - GL_STUB(GetFinalCombinerInputParameterivNV, 754, GetFinalCombinerInputParameterivNV@12) - GL_STUB(ResizeBuffersMESA, 755, ResizeBuffersMESA@0) - GL_STUB(WindowPos2dMESA, 756, WindowPos2dMESA@16) - GL_STUB(WindowPos2dvMESA, 757, WindowPos2dvMESA@4) - GL_STUB(WindowPos2fMESA, 758, WindowPos2fMESA@8) - GL_STUB(WindowPos2fvMESA, 759, WindowPos2fvMESA@4) - GL_STUB(WindowPos2iMESA, 760, WindowPos2iMESA@8) - GL_STUB(WindowPos2ivMESA, 761, WindowPos2ivMESA@4) - GL_STUB(WindowPos2sMESA, 762, WindowPos2sMESA@8) - GL_STUB(WindowPos2svMESA, 763, WindowPos2svMESA@4) - GL_STUB(WindowPos3dMESA, 764, WindowPos3dMESA@24) - GL_STUB(WindowPos3dvMESA, 765, WindowPos3dvMESA@4) - GL_STUB(WindowPos3fMESA, 766, WindowPos3fMESA@12) - GL_STUB(WindowPos3fvMESA, 767, WindowPos3fvMESA@4) - GL_STUB(WindowPos3iMESA, 768, WindowPos3iMESA@12) - GL_STUB(WindowPos3ivMESA, 769, WindowPos3ivMESA@4) - GL_STUB(WindowPos3sMESA, 770, WindowPos3sMESA@12) - GL_STUB(WindowPos3svMESA, 771, WindowPos3svMESA@4) - GL_STUB(WindowPos4dMESA, 772, WindowPos4dMESA@32) - GL_STUB(WindowPos4dvMESA, 773, WindowPos4dvMESA@4) - GL_STUB(WindowPos4fMESA, 774, WindowPos4fMESA@16) - GL_STUB(WindowPos4fvMESA, 775, WindowPos4fvMESA@4) - GL_STUB(WindowPos4iMESA, 776, WindowPos4iMESA@16) - GL_STUB(WindowPos4ivMESA, 777, WindowPos4ivMESA@4) - GL_STUB(WindowPos4sMESA, 778, WindowPos4sMESA@16) - GL_STUB(WindowPos4svMESA, 779, WindowPos4svMESA@4) - GL_STUB(_dispatch_stub_780, 780, _dispatch_stub_780@20) - HIDDEN(GL_PREFIX(_dispatch_stub_780, _dispatch_stub_780@20)) - GL_STUB(_dispatch_stub_781, 781, _dispatch_stub_781@24) - HIDDEN(GL_PREFIX(_dispatch_stub_781, _dispatch_stub_781@24)) - GL_STUB(_dispatch_stub_782, 782, _dispatch_stub_782@8) - HIDDEN(GL_PREFIX(_dispatch_stub_782, _dispatch_stub_782@8)) - GL_STUB(_dispatch_stub_783, 783, _dispatch_stub_783@4) - HIDDEN(GL_PREFIX(_dispatch_stub_783, _dispatch_stub_783@4)) + GL_STUB(_dispatch_stub_703, 703, _dispatch_stub_703@8) + HIDDEN(GL_PREFIX(_dispatch_stub_703, _dispatch_stub_703@8)) + GL_STUB(_dispatch_stub_704, 704, _dispatch_stub_704@8) + HIDDEN(GL_PREFIX(_dispatch_stub_704, _dispatch_stub_704@8)) + GL_STUB(_dispatch_stub_705, 705, _dispatch_stub_705@4) + HIDDEN(GL_PREFIX(_dispatch_stub_705, _dispatch_stub_705@4)) + GL_STUB(ColorPointerEXT, 706, ColorPointerEXT@20) + GL_STUB(EdgeFlagPointerEXT, 707, EdgeFlagPointerEXT@12) + GL_STUB(IndexPointerEXT, 708, IndexPointerEXT@16) + GL_STUB(NormalPointerEXT, 709, NormalPointerEXT@16) + GL_STUB(TexCoordPointerEXT, 710, TexCoordPointerEXT@20) + GL_STUB(VertexPointerEXT, 711, VertexPointerEXT@20) + GL_STUB(PointParameterfEXT, 712, PointParameterfEXT@8) + GL_STUB(PointParameterfvEXT, 713, PointParameterfvEXT@8) + GL_STUB(LockArraysEXT, 714, LockArraysEXT@8) + GL_STUB(UnlockArraysEXT, 715, UnlockArraysEXT@0) + GL_STUB(SecondaryColor3bEXT, 716, SecondaryColor3bEXT@12) + GL_STUB(SecondaryColor3bvEXT, 717, SecondaryColor3bvEXT@4) + GL_STUB(SecondaryColor3dEXT, 718, SecondaryColor3dEXT@24) + GL_STUB(SecondaryColor3dvEXT, 719, SecondaryColor3dvEXT@4) + GL_STUB(SecondaryColor3fEXT, 720, SecondaryColor3fEXT@12) + GL_STUB(SecondaryColor3fvEXT, 721, SecondaryColor3fvEXT@4) + GL_STUB(SecondaryColor3iEXT, 722, SecondaryColor3iEXT@12) + GL_STUB(SecondaryColor3ivEXT, 723, SecondaryColor3ivEXT@4) + GL_STUB(SecondaryColor3sEXT, 724, SecondaryColor3sEXT@12) + GL_STUB(SecondaryColor3svEXT, 725, SecondaryColor3svEXT@4) + GL_STUB(SecondaryColor3ubEXT, 726, SecondaryColor3ubEXT@12) + GL_STUB(SecondaryColor3ubvEXT, 727, SecondaryColor3ubvEXT@4) + GL_STUB(SecondaryColor3uiEXT, 728, SecondaryColor3uiEXT@12) + GL_STUB(SecondaryColor3uivEXT, 729, SecondaryColor3uivEXT@4) + GL_STUB(SecondaryColor3usEXT, 730, SecondaryColor3usEXT@12) + GL_STUB(SecondaryColor3usvEXT, 731, SecondaryColor3usvEXT@4) + GL_STUB(SecondaryColorPointerEXT, 732, SecondaryColorPointerEXT@16) + GL_STUB(MultiDrawArraysEXT, 733, MultiDrawArraysEXT@16) + GL_STUB(MultiDrawElementsEXT, 734, MultiDrawElementsEXT@20) + GL_STUB(FogCoordPointerEXT, 735, FogCoordPointerEXT@12) + GL_STUB(FogCoorddEXT, 736, FogCoorddEXT@8) + GL_STUB(FogCoorddvEXT, 737, FogCoorddvEXT@4) + GL_STUB(FogCoordfEXT, 738, FogCoordfEXT@4) + GL_STUB(FogCoordfvEXT, 739, FogCoordfvEXT@4) + GL_STUB(_dispatch_stub_740, 740, _dispatch_stub_740@4) + HIDDEN(GL_PREFIX(_dispatch_stub_740, _dispatch_stub_740@4)) + GL_STUB(BlendFuncSeparateEXT, 741, BlendFuncSeparateEXT@16) + GL_STUB(FlushVertexArrayRangeNV, 742, FlushVertexArrayRangeNV@0) + GL_STUB(VertexArrayRangeNV, 743, VertexArrayRangeNV@8) + GL_STUB(CombinerInputNV, 744, CombinerInputNV@24) + GL_STUB(CombinerOutputNV, 745, CombinerOutputNV@40) + GL_STUB(CombinerParameterfNV, 746, CombinerParameterfNV@8) + GL_STUB(CombinerParameterfvNV, 747, CombinerParameterfvNV@8) + GL_STUB(CombinerParameteriNV, 748, CombinerParameteriNV@8) + GL_STUB(CombinerParameterivNV, 749, CombinerParameterivNV@8) + GL_STUB(FinalCombinerInputNV, 750, FinalCombinerInputNV@16) + GL_STUB(GetCombinerInputParameterfvNV, 751, GetCombinerInputParameterfvNV@20) + GL_STUB(GetCombinerInputParameterivNV, 752, GetCombinerInputParameterivNV@20) + GL_STUB(GetCombinerOutputParameterfvNV, 753, GetCombinerOutputParameterfvNV@16) + GL_STUB(GetCombinerOutputParameterivNV, 754, GetCombinerOutputParameterivNV@16) + GL_STUB(GetFinalCombinerInputParameterfvNV, 755, GetFinalCombinerInputParameterfvNV@12) + GL_STUB(GetFinalCombinerInputParameterivNV, 756, GetFinalCombinerInputParameterivNV@12) + GL_STUB(ResizeBuffersMESA, 757, ResizeBuffersMESA@0) + GL_STUB(WindowPos2dMESA, 758, WindowPos2dMESA@16) + GL_STUB(WindowPos2dvMESA, 759, WindowPos2dvMESA@4) + GL_STUB(WindowPos2fMESA, 760, WindowPos2fMESA@8) + GL_STUB(WindowPos2fvMESA, 761, WindowPos2fvMESA@4) + GL_STUB(WindowPos2iMESA, 762, WindowPos2iMESA@8) + GL_STUB(WindowPos2ivMESA, 763, WindowPos2ivMESA@4) + GL_STUB(WindowPos2sMESA, 764, WindowPos2sMESA@8) + GL_STUB(WindowPos2svMESA, 765, WindowPos2svMESA@4) + GL_STUB(WindowPos3dMESA, 766, WindowPos3dMESA@24) + GL_STUB(WindowPos3dvMESA, 767, WindowPos3dvMESA@4) + GL_STUB(WindowPos3fMESA, 768, WindowPos3fMESA@12) + GL_STUB(WindowPos3fvMESA, 769, WindowPos3fvMESA@4) + GL_STUB(WindowPos3iMESA, 770, WindowPos3iMESA@12) + GL_STUB(WindowPos3ivMESA, 771, WindowPos3ivMESA@4) + GL_STUB(WindowPos3sMESA, 772, WindowPos3sMESA@12) + GL_STUB(WindowPos3svMESA, 773, WindowPos3svMESA@4) + GL_STUB(WindowPos4dMESA, 774, WindowPos4dMESA@32) + GL_STUB(WindowPos4dvMESA, 775, WindowPos4dvMESA@4) + GL_STUB(WindowPos4fMESA, 776, WindowPos4fMESA@16) + GL_STUB(WindowPos4fvMESA, 777, WindowPos4fvMESA@4) + GL_STUB(WindowPos4iMESA, 778, WindowPos4iMESA@16) + GL_STUB(WindowPos4ivMESA, 779, WindowPos4ivMESA@4) + GL_STUB(WindowPos4sMESA, 780, WindowPos4sMESA@16) + GL_STUB(WindowPos4svMESA, 781, WindowPos4svMESA@4) + GL_STUB(_dispatch_stub_782, 782, _dispatch_stub_782@20) + HIDDEN(GL_PREFIX(_dispatch_stub_782, _dispatch_stub_782@20)) + GL_STUB(_dispatch_stub_783, 783, _dispatch_stub_783@24) + HIDDEN(GL_PREFIX(_dispatch_stub_783, _dispatch_stub_783@24)) GL_STUB(_dispatch_stub_784, 784, _dispatch_stub_784@8) HIDDEN(GL_PREFIX(_dispatch_stub_784, _dispatch_stub_784@8)) - GL_STUB(_dispatch_stub_785, 785, _dispatch_stub_785@12) - HIDDEN(GL_PREFIX(_dispatch_stub_785, _dispatch_stub_785@12)) - GL_STUB(_dispatch_stub_786, 786, _dispatch_stub_786@4) - HIDDEN(GL_PREFIX(_dispatch_stub_786, _dispatch_stub_786@4)) - GL_STUB(_dispatch_stub_787, 787, _dispatch_stub_787@8) - HIDDEN(GL_PREFIX(_dispatch_stub_787, _dispatch_stub_787@8)) + GL_STUB(_dispatch_stub_785, 785, _dispatch_stub_785@4) + HIDDEN(GL_PREFIX(_dispatch_stub_785, _dispatch_stub_785@4)) + GL_STUB(_dispatch_stub_786, 786, _dispatch_stub_786@8) + HIDDEN(GL_PREFIX(_dispatch_stub_786, _dispatch_stub_786@8)) + GL_STUB(_dispatch_stub_787, 787, _dispatch_stub_787@12) + HIDDEN(GL_PREFIX(_dispatch_stub_787, _dispatch_stub_787@12)) GL_STUB(_dispatch_stub_788, 788, _dispatch_stub_788@4) HIDDEN(GL_PREFIX(_dispatch_stub_788, _dispatch_stub_788@4)) - GL_STUB(AreProgramsResidentNV, 789, AreProgramsResidentNV@12) - GL_STUB(BindProgramNV, 790, BindProgramNV@8) - GL_STUB(DeleteProgramsNV, 791, DeleteProgramsNV@8) - GL_STUB(ExecuteProgramNV, 792, ExecuteProgramNV@12) - GL_STUB(GenProgramsNV, 793, GenProgramsNV@8) - GL_STUB(GetProgramParameterdvNV, 794, GetProgramParameterdvNV@16) - GL_STUB(GetProgramParameterfvNV, 795, GetProgramParameterfvNV@16) - GL_STUB(GetProgramStringNV, 796, GetProgramStringNV@12) - GL_STUB(GetProgramivNV, 797, GetProgramivNV@12) - GL_STUB(GetTrackMatrixivNV, 798, GetTrackMatrixivNV@16) - GL_STUB(GetVertexAttribPointervNV, 799, GetVertexAttribPointervNV@12) - GL_STUB(GetVertexAttribdvNV, 800, GetVertexAttribdvNV@12) - GL_STUB(GetVertexAttribfvNV, 801, GetVertexAttribfvNV@12) - GL_STUB(GetVertexAttribivNV, 802, GetVertexAttribivNV@12) - GL_STUB(IsProgramNV, 803, IsProgramNV@4) - GL_STUB(LoadProgramNV, 804, LoadProgramNV@16) - GL_STUB(ProgramParameters4dvNV, 805, ProgramParameters4dvNV@16) - GL_STUB(ProgramParameters4fvNV, 806, ProgramParameters4fvNV@16) - GL_STUB(RequestResidentProgramsNV, 807, RequestResidentProgramsNV@8) - GL_STUB(TrackMatrixNV, 808, TrackMatrixNV@16) - GL_STUB(VertexAttrib1dNV, 809, VertexAttrib1dNV@12) - GL_STUB(VertexAttrib1dvNV, 810, VertexAttrib1dvNV@8) - GL_STUB(VertexAttrib1fNV, 811, VertexAttrib1fNV@8) - GL_STUB(VertexAttrib1fvNV, 812, VertexAttrib1fvNV@8) - GL_STUB(VertexAttrib1sNV, 813, VertexAttrib1sNV@8) - GL_STUB(VertexAttrib1svNV, 814, VertexAttrib1svNV@8) - GL_STUB(VertexAttrib2dNV, 815, VertexAttrib2dNV@20) - GL_STUB(VertexAttrib2dvNV, 816, VertexAttrib2dvNV@8) - GL_STUB(VertexAttrib2fNV, 817, VertexAttrib2fNV@12) - GL_STUB(VertexAttrib2fvNV, 818, VertexAttrib2fvNV@8) - GL_STUB(VertexAttrib2sNV, 819, VertexAttrib2sNV@12) - GL_STUB(VertexAttrib2svNV, 820, VertexAttrib2svNV@8) - GL_STUB(VertexAttrib3dNV, 821, VertexAttrib3dNV@28) - GL_STUB(VertexAttrib3dvNV, 822, VertexAttrib3dvNV@8) - GL_STUB(VertexAttrib3fNV, 823, VertexAttrib3fNV@16) - GL_STUB(VertexAttrib3fvNV, 824, VertexAttrib3fvNV@8) - GL_STUB(VertexAttrib3sNV, 825, VertexAttrib3sNV@16) - GL_STUB(VertexAttrib3svNV, 826, VertexAttrib3svNV@8) - GL_STUB(VertexAttrib4dNV, 827, VertexAttrib4dNV@36) - GL_STUB(VertexAttrib4dvNV, 828, VertexAttrib4dvNV@8) - GL_STUB(VertexAttrib4fNV, 829, VertexAttrib4fNV@20) - GL_STUB(VertexAttrib4fvNV, 830, VertexAttrib4fvNV@8) - GL_STUB(VertexAttrib4sNV, 831, VertexAttrib4sNV@20) - GL_STUB(VertexAttrib4svNV, 832, VertexAttrib4svNV@8) - GL_STUB(VertexAttrib4ubNV, 833, VertexAttrib4ubNV@20) - GL_STUB(VertexAttrib4ubvNV, 834, VertexAttrib4ubvNV@8) - GL_STUB(VertexAttribPointerNV, 835, VertexAttribPointerNV@20) - GL_STUB(VertexAttribs1dvNV, 836, VertexAttribs1dvNV@12) - GL_STUB(VertexAttribs1fvNV, 837, VertexAttribs1fvNV@12) - GL_STUB(VertexAttribs1svNV, 838, VertexAttribs1svNV@12) - GL_STUB(VertexAttribs2dvNV, 839, VertexAttribs2dvNV@12) - GL_STUB(VertexAttribs2fvNV, 840, VertexAttribs2fvNV@12) - GL_STUB(VertexAttribs2svNV, 841, VertexAttribs2svNV@12) - GL_STUB(VertexAttribs3dvNV, 842, VertexAttribs3dvNV@12) - GL_STUB(VertexAttribs3fvNV, 843, VertexAttribs3fvNV@12) - GL_STUB(VertexAttribs3svNV, 844, VertexAttribs3svNV@12) - GL_STUB(VertexAttribs4dvNV, 845, VertexAttribs4dvNV@12) - GL_STUB(VertexAttribs4fvNV, 846, VertexAttribs4fvNV@12) - GL_STUB(VertexAttribs4svNV, 847, VertexAttribs4svNV@12) - GL_STUB(VertexAttribs4ubvNV, 848, VertexAttribs4ubvNV@12) - GL_STUB(GetTexBumpParameterfvATI, 849, GetTexBumpParameterfvATI@8) - GL_STUB(GetTexBumpParameterivATI, 850, GetTexBumpParameterivATI@8) - GL_STUB(TexBumpParameterfvATI, 851, TexBumpParameterfvATI@8) - GL_STUB(TexBumpParameterivATI, 852, TexBumpParameterivATI@8) - GL_STUB(AlphaFragmentOp1ATI, 853, AlphaFragmentOp1ATI@24) - GL_STUB(AlphaFragmentOp2ATI, 854, AlphaFragmentOp2ATI@36) - GL_STUB(AlphaFragmentOp3ATI, 855, AlphaFragmentOp3ATI@48) - GL_STUB(BeginFragmentShaderATI, 856, BeginFragmentShaderATI@0) - GL_STUB(BindFragmentShaderATI, 857, BindFragmentShaderATI@4) - GL_STUB(ColorFragmentOp1ATI, 858, ColorFragmentOp1ATI@28) - GL_STUB(ColorFragmentOp2ATI, 859, ColorFragmentOp2ATI@40) - GL_STUB(ColorFragmentOp3ATI, 860, ColorFragmentOp3ATI@52) - GL_STUB(DeleteFragmentShaderATI, 861, DeleteFragmentShaderATI@4) - GL_STUB(EndFragmentShaderATI, 862, EndFragmentShaderATI@0) - GL_STUB(GenFragmentShadersATI, 863, GenFragmentShadersATI@4) - GL_STUB(PassTexCoordATI, 864, PassTexCoordATI@12) - GL_STUB(SampleMapATI, 865, SampleMapATI@12) - GL_STUB(SetFragmentShaderConstantATI, 866, SetFragmentShaderConstantATI@8) - GL_STUB(PointParameteriNV, 867, PointParameteriNV@8) - GL_STUB(PointParameterivNV, 868, PointParameterivNV@8) - GL_STUB(_dispatch_stub_869, 869, _dispatch_stub_869@4) - HIDDEN(GL_PREFIX(_dispatch_stub_869, _dispatch_stub_869@4)) - GL_STUB(_dispatch_stub_870, 870, _dispatch_stub_870@4) - HIDDEN(GL_PREFIX(_dispatch_stub_870, _dispatch_stub_870@4)) - GL_STUB(_dispatch_stub_871, 871, _dispatch_stub_871@8) - HIDDEN(GL_PREFIX(_dispatch_stub_871, _dispatch_stub_871@8)) - GL_STUB(_dispatch_stub_872, 872, _dispatch_stub_872@8) - HIDDEN(GL_PREFIX(_dispatch_stub_872, _dispatch_stub_872@8)) - GL_STUB(_dispatch_stub_873, 873, _dispatch_stub_873@4) - HIDDEN(GL_PREFIX(_dispatch_stub_873, _dispatch_stub_873@4)) - GL_STUB(GetProgramNamedParameterdvNV, 874, GetProgramNamedParameterdvNV@16) - GL_STUB(GetProgramNamedParameterfvNV, 875, GetProgramNamedParameterfvNV@16) - GL_STUB(ProgramNamedParameter4dNV, 876, ProgramNamedParameter4dNV@44) - GL_STUB(ProgramNamedParameter4dvNV, 877, ProgramNamedParameter4dvNV@16) - GL_STUB(ProgramNamedParameter4fNV, 878, ProgramNamedParameter4fNV@28) - GL_STUB(ProgramNamedParameter4fvNV, 879, ProgramNamedParameter4fvNV@16) - GL_STUB(PrimitiveRestartIndexNV, 880, PrimitiveRestartIndexNV@4) - GL_STUB(PrimitiveRestartNV, 881, PrimitiveRestartNV@0) - GL_STUB(_dispatch_stub_882, 882, _dispatch_stub_882@16) - HIDDEN(GL_PREFIX(_dispatch_stub_882, _dispatch_stub_882@16)) - GL_STUB(_dispatch_stub_883, 883, _dispatch_stub_883@8) - HIDDEN(GL_PREFIX(_dispatch_stub_883, _dispatch_stub_883@8)) - GL_STUB(BindFramebufferEXT, 884, BindFramebufferEXT@8) - GL_STUB(BindRenderbufferEXT, 885, BindRenderbufferEXT@8) - GL_STUB(CheckFramebufferStatusEXT, 886, CheckFramebufferStatusEXT@4) - GL_STUB(DeleteFramebuffersEXT, 887, DeleteFramebuffersEXT@8) - GL_STUB(DeleteRenderbuffersEXT, 888, DeleteRenderbuffersEXT@8) - GL_STUB(FramebufferRenderbufferEXT, 889, FramebufferRenderbufferEXT@16) - GL_STUB(FramebufferTexture1DEXT, 890, FramebufferTexture1DEXT@20) - GL_STUB(FramebufferTexture2DEXT, 891, FramebufferTexture2DEXT@20) - GL_STUB(FramebufferTexture3DEXT, 892, FramebufferTexture3DEXT@24) - GL_STUB(GenFramebuffersEXT, 893, GenFramebuffersEXT@8) - GL_STUB(GenRenderbuffersEXT, 894, GenRenderbuffersEXT@8) - GL_STUB(GenerateMipmapEXT, 895, GenerateMipmapEXT@4) - GL_STUB(GetFramebufferAttachmentParameterivEXT, 896, GetFramebufferAttachmentParameterivEXT@16) - GL_STUB(GetRenderbufferParameterivEXT, 897, GetRenderbufferParameterivEXT@12) - GL_STUB(IsFramebufferEXT, 898, IsFramebufferEXT@4) - GL_STUB(IsRenderbufferEXT, 899, IsRenderbufferEXT@4) - GL_STUB(RenderbufferStorageEXT, 900, RenderbufferStorageEXT@16) - GL_STUB(_dispatch_stub_901, 901, _dispatch_stub_901@40) - HIDDEN(GL_PREFIX(_dispatch_stub_901, _dispatch_stub_901@40)) - GL_STUB(_dispatch_stub_902, 902, _dispatch_stub_902@12) - HIDDEN(GL_PREFIX(_dispatch_stub_902, _dispatch_stub_902@12)) - GL_STUB(_dispatch_stub_903, 903, _dispatch_stub_903@12) - HIDDEN(GL_PREFIX(_dispatch_stub_903, _dispatch_stub_903@12)) - GL_STUB(BindFragDataLocationEXT, 904, BindFragDataLocationEXT@12) - GL_STUB(GetFragDataLocationEXT, 905, GetFragDataLocationEXT@8) - GL_STUB(GetUniformuivEXT, 906, GetUniformuivEXT@12) - GL_STUB(GetVertexAttribIivEXT, 907, GetVertexAttribIivEXT@12) - GL_STUB(GetVertexAttribIuivEXT, 908, GetVertexAttribIuivEXT@12) - GL_STUB(Uniform1uiEXT, 909, Uniform1uiEXT@8) - GL_STUB(Uniform1uivEXT, 910, Uniform1uivEXT@12) - GL_STUB(Uniform2uiEXT, 911, Uniform2uiEXT@12) - GL_STUB(Uniform2uivEXT, 912, Uniform2uivEXT@12) - GL_STUB(Uniform3uiEXT, 913, Uniform3uiEXT@16) - GL_STUB(Uniform3uivEXT, 914, Uniform3uivEXT@12) - GL_STUB(Uniform4uiEXT, 915, Uniform4uiEXT@20) - GL_STUB(Uniform4uivEXT, 916, Uniform4uivEXT@12) - GL_STUB(VertexAttribI1iEXT, 917, VertexAttribI1iEXT@8) - GL_STUB(VertexAttribI1ivEXT, 918, VertexAttribI1ivEXT@8) - GL_STUB(VertexAttribI1uiEXT, 919, VertexAttribI1uiEXT@8) - GL_STUB(VertexAttribI1uivEXT, 920, VertexAttribI1uivEXT@8) - GL_STUB(VertexAttribI2iEXT, 921, VertexAttribI2iEXT@12) - GL_STUB(VertexAttribI2ivEXT, 922, VertexAttribI2ivEXT@8) - GL_STUB(VertexAttribI2uiEXT, 923, VertexAttribI2uiEXT@12) - GL_STUB(VertexAttribI2uivEXT, 924, VertexAttribI2uivEXT@8) - GL_STUB(VertexAttribI3iEXT, 925, VertexAttribI3iEXT@16) - GL_STUB(VertexAttribI3ivEXT, 926, VertexAttribI3ivEXT@8) - GL_STUB(VertexAttribI3uiEXT, 927, VertexAttribI3uiEXT@16) - GL_STUB(VertexAttribI3uivEXT, 928, VertexAttribI3uivEXT@8) - GL_STUB(VertexAttribI4bvEXT, 929, VertexAttribI4bvEXT@8) - GL_STUB(VertexAttribI4iEXT, 930, VertexAttribI4iEXT@20) - GL_STUB(VertexAttribI4ivEXT, 931, VertexAttribI4ivEXT@8) - GL_STUB(VertexAttribI4svEXT, 932, VertexAttribI4svEXT@8) - GL_STUB(VertexAttribI4ubvEXT, 933, VertexAttribI4ubvEXT@8) - GL_STUB(VertexAttribI4uiEXT, 934, VertexAttribI4uiEXT@20) - GL_STUB(VertexAttribI4uivEXT, 935, VertexAttribI4uivEXT@8) - GL_STUB(VertexAttribI4usvEXT, 936, VertexAttribI4usvEXT@8) - GL_STUB(VertexAttribIPointerEXT, 937, VertexAttribIPointerEXT@20) - GL_STUB(FramebufferTextureLayerEXT, 938, FramebufferTextureLayerEXT@20) - GL_STUB(ColorMaskIndexedEXT, 939, ColorMaskIndexedEXT@20) - GL_STUB(DisableIndexedEXT, 940, DisableIndexedEXT@8) - GL_STUB(EnableIndexedEXT, 941, EnableIndexedEXT@8) - GL_STUB(GetBooleanIndexedvEXT, 942, GetBooleanIndexedvEXT@12) - GL_STUB(GetIntegerIndexedvEXT, 943, GetIntegerIndexedvEXT@12) - GL_STUB(IsEnabledIndexedEXT, 944, IsEnabledIndexedEXT@8) - GL_STUB(ClearColorIiEXT, 945, ClearColorIiEXT@16) - GL_STUB(ClearColorIuiEXT, 946, ClearColorIuiEXT@16) - GL_STUB(GetTexParameterIivEXT, 947, GetTexParameterIivEXT@12) - GL_STUB(GetTexParameterIuivEXT, 948, GetTexParameterIuivEXT@12) - GL_STUB(TexParameterIivEXT, 949, TexParameterIivEXT@12) - GL_STUB(TexParameterIuivEXT, 950, TexParameterIuivEXT@12) - GL_STUB(BeginConditionalRenderNV, 951, BeginConditionalRenderNV@8) - GL_STUB(EndConditionalRenderNV, 952, EndConditionalRenderNV@0) - GL_STUB(BeginTransformFeedbackEXT, 953, BeginTransformFeedbackEXT@4) - GL_STUB(BindBufferBaseEXT, 954, BindBufferBaseEXT@12) - GL_STUB(BindBufferOffsetEXT, 955, BindBufferOffsetEXT@16) - GL_STUB(BindBufferRangeEXT, 956, BindBufferRangeEXT@20) - GL_STUB(EndTransformFeedbackEXT, 957, EndTransformFeedbackEXT@0) - GL_STUB(GetTransformFeedbackVaryingEXT, 958, GetTransformFeedbackVaryingEXT@28) - GL_STUB(TransformFeedbackVaryingsEXT, 959, TransformFeedbackVaryingsEXT@16) - GL_STUB(ProvokingVertexEXT, 960, ProvokingVertexEXT@4) - GL_STUB(_dispatch_stub_961, 961, _dispatch_stub_961@12) - HIDDEN(GL_PREFIX(_dispatch_stub_961, _dispatch_stub_961@12)) - GL_STUB(_dispatch_stub_962, 962, _dispatch_stub_962@12) - HIDDEN(GL_PREFIX(_dispatch_stub_962, _dispatch_stub_962@12)) - GL_STUB(GetObjectParameterivAPPLE, 963, GetObjectParameterivAPPLE@16) - GL_STUB(ObjectPurgeableAPPLE, 964, ObjectPurgeableAPPLE@12) - GL_STUB(ObjectUnpurgeableAPPLE, 965, ObjectUnpurgeableAPPLE@12) - GL_STUB(ActiveProgramEXT, 966, ActiveProgramEXT@4) - GL_STUB(CreateShaderProgramEXT, 967, CreateShaderProgramEXT@8) - GL_STUB(UseShaderProgramEXT, 968, UseShaderProgramEXT@8) - GL_STUB(TextureBarrierNV, 969, TextureBarrierNV@0) - GL_STUB(_dispatch_stub_970, 970, _dispatch_stub_970@16) - HIDDEN(GL_PREFIX(_dispatch_stub_970, _dispatch_stub_970@16)) - GL_STUB(_dispatch_stub_971, 971, _dispatch_stub_971@16) - HIDDEN(GL_PREFIX(_dispatch_stub_971, _dispatch_stub_971@16)) + GL_STUB(_dispatch_stub_789, 789, _dispatch_stub_789@8) + HIDDEN(GL_PREFIX(_dispatch_stub_789, _dispatch_stub_789@8)) + GL_STUB(_dispatch_stub_790, 790, _dispatch_stub_790@4) + HIDDEN(GL_PREFIX(_dispatch_stub_790, _dispatch_stub_790@4)) + GL_STUB(AreProgramsResidentNV, 791, AreProgramsResidentNV@12) + GL_STUB(BindProgramNV, 792, BindProgramNV@8) + GL_STUB(DeleteProgramsNV, 793, DeleteProgramsNV@8) + GL_STUB(ExecuteProgramNV, 794, ExecuteProgramNV@12) + GL_STUB(GenProgramsNV, 795, GenProgramsNV@8) + GL_STUB(GetProgramParameterdvNV, 796, GetProgramParameterdvNV@16) + GL_STUB(GetProgramParameterfvNV, 797, GetProgramParameterfvNV@16) + GL_STUB(GetProgramStringNV, 798, GetProgramStringNV@12) + GL_STUB(GetProgramivNV, 799, GetProgramivNV@12) + GL_STUB(GetTrackMatrixivNV, 800, GetTrackMatrixivNV@16) + GL_STUB(GetVertexAttribPointervNV, 801, GetVertexAttribPointervNV@12) + GL_STUB(GetVertexAttribdvNV, 802, GetVertexAttribdvNV@12) + GL_STUB(GetVertexAttribfvNV, 803, GetVertexAttribfvNV@12) + GL_STUB(GetVertexAttribivNV, 804, GetVertexAttribivNV@12) + GL_STUB(IsProgramNV, 805, IsProgramNV@4) + GL_STUB(LoadProgramNV, 806, LoadProgramNV@16) + GL_STUB(ProgramParameters4dvNV, 807, ProgramParameters4dvNV@16) + GL_STUB(ProgramParameters4fvNV, 808, ProgramParameters4fvNV@16) + GL_STUB(RequestResidentProgramsNV, 809, RequestResidentProgramsNV@8) + GL_STUB(TrackMatrixNV, 810, TrackMatrixNV@16) + GL_STUB(VertexAttrib1dNV, 811, VertexAttrib1dNV@12) + GL_STUB(VertexAttrib1dvNV, 812, VertexAttrib1dvNV@8) + GL_STUB(VertexAttrib1fNV, 813, VertexAttrib1fNV@8) + GL_STUB(VertexAttrib1fvNV, 814, VertexAttrib1fvNV@8) + GL_STUB(VertexAttrib1sNV, 815, VertexAttrib1sNV@8) + GL_STUB(VertexAttrib1svNV, 816, VertexAttrib1svNV@8) + GL_STUB(VertexAttrib2dNV, 817, VertexAttrib2dNV@20) + GL_STUB(VertexAttrib2dvNV, 818, VertexAttrib2dvNV@8) + GL_STUB(VertexAttrib2fNV, 819, VertexAttrib2fNV@12) + GL_STUB(VertexAttrib2fvNV, 820, VertexAttrib2fvNV@8) + GL_STUB(VertexAttrib2sNV, 821, VertexAttrib2sNV@12) + GL_STUB(VertexAttrib2svNV, 822, VertexAttrib2svNV@8) + GL_STUB(VertexAttrib3dNV, 823, VertexAttrib3dNV@28) + GL_STUB(VertexAttrib3dvNV, 824, VertexAttrib3dvNV@8) + GL_STUB(VertexAttrib3fNV, 825, VertexAttrib3fNV@16) + GL_STUB(VertexAttrib3fvNV, 826, VertexAttrib3fvNV@8) + GL_STUB(VertexAttrib3sNV, 827, VertexAttrib3sNV@16) + GL_STUB(VertexAttrib3svNV, 828, VertexAttrib3svNV@8) + GL_STUB(VertexAttrib4dNV, 829, VertexAttrib4dNV@36) + GL_STUB(VertexAttrib4dvNV, 830, VertexAttrib4dvNV@8) + GL_STUB(VertexAttrib4fNV, 831, VertexAttrib4fNV@20) + GL_STUB(VertexAttrib4fvNV, 832, VertexAttrib4fvNV@8) + GL_STUB(VertexAttrib4sNV, 833, VertexAttrib4sNV@20) + GL_STUB(VertexAttrib4svNV, 834, VertexAttrib4svNV@8) + GL_STUB(VertexAttrib4ubNV, 835, VertexAttrib4ubNV@20) + GL_STUB(VertexAttrib4ubvNV, 836, VertexAttrib4ubvNV@8) + GL_STUB(VertexAttribPointerNV, 837, VertexAttribPointerNV@20) + GL_STUB(VertexAttribs1dvNV, 838, VertexAttribs1dvNV@12) + GL_STUB(VertexAttribs1fvNV, 839, VertexAttribs1fvNV@12) + GL_STUB(VertexAttribs1svNV, 840, VertexAttribs1svNV@12) + GL_STUB(VertexAttribs2dvNV, 841, VertexAttribs2dvNV@12) + GL_STUB(VertexAttribs2fvNV, 842, VertexAttribs2fvNV@12) + GL_STUB(VertexAttribs2svNV, 843, VertexAttribs2svNV@12) + GL_STUB(VertexAttribs3dvNV, 844, VertexAttribs3dvNV@12) + GL_STUB(VertexAttribs3fvNV, 845, VertexAttribs3fvNV@12) + GL_STUB(VertexAttribs3svNV, 846, VertexAttribs3svNV@12) + GL_STUB(VertexAttribs4dvNV, 847, VertexAttribs4dvNV@12) + GL_STUB(VertexAttribs4fvNV, 848, VertexAttribs4fvNV@12) + GL_STUB(VertexAttribs4svNV, 849, VertexAttribs4svNV@12) + GL_STUB(VertexAttribs4ubvNV, 850, VertexAttribs4ubvNV@12) + GL_STUB(GetTexBumpParameterfvATI, 851, GetTexBumpParameterfvATI@8) + GL_STUB(GetTexBumpParameterivATI, 852, GetTexBumpParameterivATI@8) + GL_STUB(TexBumpParameterfvATI, 853, TexBumpParameterfvATI@8) + GL_STUB(TexBumpParameterivATI, 854, TexBumpParameterivATI@8) + GL_STUB(AlphaFragmentOp1ATI, 855, AlphaFragmentOp1ATI@24) + GL_STUB(AlphaFragmentOp2ATI, 856, AlphaFragmentOp2ATI@36) + GL_STUB(AlphaFragmentOp3ATI, 857, AlphaFragmentOp3ATI@48) + GL_STUB(BeginFragmentShaderATI, 858, BeginFragmentShaderATI@0) + GL_STUB(BindFragmentShaderATI, 859, BindFragmentShaderATI@4) + GL_STUB(ColorFragmentOp1ATI, 860, ColorFragmentOp1ATI@28) + GL_STUB(ColorFragmentOp2ATI, 861, ColorFragmentOp2ATI@40) + GL_STUB(ColorFragmentOp3ATI, 862, ColorFragmentOp3ATI@52) + GL_STUB(DeleteFragmentShaderATI, 863, DeleteFragmentShaderATI@4) + GL_STUB(EndFragmentShaderATI, 864, EndFragmentShaderATI@0) + GL_STUB(GenFragmentShadersATI, 865, GenFragmentShadersATI@4) + GL_STUB(PassTexCoordATI, 866, PassTexCoordATI@12) + GL_STUB(SampleMapATI, 867, SampleMapATI@12) + GL_STUB(SetFragmentShaderConstantATI, 868, SetFragmentShaderConstantATI@8) + GL_STUB(PointParameteriNV, 869, PointParameteriNV@8) + GL_STUB(PointParameterivNV, 870, PointParameterivNV@8) + GL_STUB(_dispatch_stub_871, 871, _dispatch_stub_871@4) + HIDDEN(GL_PREFIX(_dispatch_stub_871, _dispatch_stub_871@4)) + GL_STUB(_dispatch_stub_872, 872, _dispatch_stub_872@4) + HIDDEN(GL_PREFIX(_dispatch_stub_872, _dispatch_stub_872@4)) + GL_STUB(_dispatch_stub_873, 873, _dispatch_stub_873@8) + HIDDEN(GL_PREFIX(_dispatch_stub_873, _dispatch_stub_873@8)) + GL_STUB(_dispatch_stub_874, 874, _dispatch_stub_874@8) + HIDDEN(GL_PREFIX(_dispatch_stub_874, _dispatch_stub_874@8)) + GL_STUB(_dispatch_stub_875, 875, _dispatch_stub_875@4) + HIDDEN(GL_PREFIX(_dispatch_stub_875, _dispatch_stub_875@4)) + GL_STUB(GetProgramNamedParameterdvNV, 876, GetProgramNamedParameterdvNV@16) + GL_STUB(GetProgramNamedParameterfvNV, 877, GetProgramNamedParameterfvNV@16) + GL_STUB(ProgramNamedParameter4dNV, 878, ProgramNamedParameter4dNV@44) + GL_STUB(ProgramNamedParameter4dvNV, 879, ProgramNamedParameter4dvNV@16) + GL_STUB(ProgramNamedParameter4fNV, 880, ProgramNamedParameter4fNV@28) + GL_STUB(ProgramNamedParameter4fvNV, 881, ProgramNamedParameter4fvNV@16) + GL_STUB(PrimitiveRestartIndexNV, 882, PrimitiveRestartIndexNV@4) + GL_STUB(PrimitiveRestartNV, 883, PrimitiveRestartNV@0) + GL_STUB(_dispatch_stub_884, 884, _dispatch_stub_884@16) + HIDDEN(GL_PREFIX(_dispatch_stub_884, _dispatch_stub_884@16)) + GL_STUB(_dispatch_stub_885, 885, _dispatch_stub_885@8) + HIDDEN(GL_PREFIX(_dispatch_stub_885, _dispatch_stub_885@8)) + GL_STUB(BindFramebufferEXT, 886, BindFramebufferEXT@8) + GL_STUB(BindRenderbufferEXT, 887, BindRenderbufferEXT@8) + GL_STUB(CheckFramebufferStatusEXT, 888, CheckFramebufferStatusEXT@4) + GL_STUB(DeleteFramebuffersEXT, 889, DeleteFramebuffersEXT@8) + GL_STUB(DeleteRenderbuffersEXT, 890, DeleteRenderbuffersEXT@8) + GL_STUB(FramebufferRenderbufferEXT, 891, FramebufferRenderbufferEXT@16) + GL_STUB(FramebufferTexture1DEXT, 892, FramebufferTexture1DEXT@20) + GL_STUB(FramebufferTexture2DEXT, 893, FramebufferTexture2DEXT@20) + GL_STUB(FramebufferTexture3DEXT, 894, FramebufferTexture3DEXT@24) + GL_STUB(GenFramebuffersEXT, 895, GenFramebuffersEXT@8) + GL_STUB(GenRenderbuffersEXT, 896, GenRenderbuffersEXT@8) + GL_STUB(GenerateMipmapEXT, 897, GenerateMipmapEXT@4) + GL_STUB(GetFramebufferAttachmentParameterivEXT, 898, GetFramebufferAttachmentParameterivEXT@16) + GL_STUB(GetRenderbufferParameterivEXT, 899, GetRenderbufferParameterivEXT@12) + GL_STUB(IsFramebufferEXT, 900, IsFramebufferEXT@4) + GL_STUB(IsRenderbufferEXT, 901, IsRenderbufferEXT@4) + GL_STUB(RenderbufferStorageEXT, 902, RenderbufferStorageEXT@16) + GL_STUB(_dispatch_stub_903, 903, _dispatch_stub_903@40) + HIDDEN(GL_PREFIX(_dispatch_stub_903, _dispatch_stub_903@40)) + GL_STUB(_dispatch_stub_904, 904, _dispatch_stub_904@12) + HIDDEN(GL_PREFIX(_dispatch_stub_904, _dispatch_stub_904@12)) + GL_STUB(_dispatch_stub_905, 905, _dispatch_stub_905@12) + HIDDEN(GL_PREFIX(_dispatch_stub_905, _dispatch_stub_905@12)) + GL_STUB(BindFragDataLocationEXT, 906, BindFragDataLocationEXT@12) + GL_STUB(GetFragDataLocationEXT, 907, GetFragDataLocationEXT@8) + GL_STUB(GetUniformuivEXT, 908, GetUniformuivEXT@12) + GL_STUB(GetVertexAttribIivEXT, 909, GetVertexAttribIivEXT@12) + GL_STUB(GetVertexAttribIuivEXT, 910, GetVertexAttribIuivEXT@12) + GL_STUB(Uniform1uiEXT, 911, Uniform1uiEXT@8) + GL_STUB(Uniform1uivEXT, 912, Uniform1uivEXT@12) + GL_STUB(Uniform2uiEXT, 913, Uniform2uiEXT@12) + GL_STUB(Uniform2uivEXT, 914, Uniform2uivEXT@12) + GL_STUB(Uniform3uiEXT, 915, Uniform3uiEXT@16) + GL_STUB(Uniform3uivEXT, 916, Uniform3uivEXT@12) + GL_STUB(Uniform4uiEXT, 917, Uniform4uiEXT@20) + GL_STUB(Uniform4uivEXT, 918, Uniform4uivEXT@12) + GL_STUB(VertexAttribI1iEXT, 919, VertexAttribI1iEXT@8) + GL_STUB(VertexAttribI1ivEXT, 920, VertexAttribI1ivEXT@8) + GL_STUB(VertexAttribI1uiEXT, 921, VertexAttribI1uiEXT@8) + GL_STUB(VertexAttribI1uivEXT, 922, VertexAttribI1uivEXT@8) + GL_STUB(VertexAttribI2iEXT, 923, VertexAttribI2iEXT@12) + GL_STUB(VertexAttribI2ivEXT, 924, VertexAttribI2ivEXT@8) + GL_STUB(VertexAttribI2uiEXT, 925, VertexAttribI2uiEXT@12) + GL_STUB(VertexAttribI2uivEXT, 926, VertexAttribI2uivEXT@8) + GL_STUB(VertexAttribI3iEXT, 927, VertexAttribI3iEXT@16) + GL_STUB(VertexAttribI3ivEXT, 928, VertexAttribI3ivEXT@8) + GL_STUB(VertexAttribI3uiEXT, 929, VertexAttribI3uiEXT@16) + GL_STUB(VertexAttribI3uivEXT, 930, VertexAttribI3uivEXT@8) + GL_STUB(VertexAttribI4bvEXT, 931, VertexAttribI4bvEXT@8) + GL_STUB(VertexAttribI4iEXT, 932, VertexAttribI4iEXT@20) + GL_STUB(VertexAttribI4ivEXT, 933, VertexAttribI4ivEXT@8) + GL_STUB(VertexAttribI4svEXT, 934, VertexAttribI4svEXT@8) + GL_STUB(VertexAttribI4ubvEXT, 935, VertexAttribI4ubvEXT@8) + GL_STUB(VertexAttribI4uiEXT, 936, VertexAttribI4uiEXT@20) + GL_STUB(VertexAttribI4uivEXT, 937, VertexAttribI4uivEXT@8) + GL_STUB(VertexAttribI4usvEXT, 938, VertexAttribI4usvEXT@8) + GL_STUB(VertexAttribIPointerEXT, 939, VertexAttribIPointerEXT@20) + GL_STUB(FramebufferTextureLayerEXT, 940, FramebufferTextureLayerEXT@20) + GL_STUB(ColorMaskIndexedEXT, 941, ColorMaskIndexedEXT@20) + GL_STUB(DisableIndexedEXT, 942, DisableIndexedEXT@8) + GL_STUB(EnableIndexedEXT, 943, EnableIndexedEXT@8) + GL_STUB(GetBooleanIndexedvEXT, 944, GetBooleanIndexedvEXT@12) + GL_STUB(GetIntegerIndexedvEXT, 945, GetIntegerIndexedvEXT@12) + GL_STUB(IsEnabledIndexedEXT, 946, IsEnabledIndexedEXT@8) + GL_STUB(ClearColorIiEXT, 947, ClearColorIiEXT@16) + GL_STUB(ClearColorIuiEXT, 948, ClearColorIuiEXT@16) + GL_STUB(GetTexParameterIivEXT, 949, GetTexParameterIivEXT@12) + GL_STUB(GetTexParameterIuivEXT, 950, GetTexParameterIuivEXT@12) + GL_STUB(TexParameterIivEXT, 951, TexParameterIivEXT@12) + GL_STUB(TexParameterIuivEXT, 952, TexParameterIuivEXT@12) + GL_STUB(BeginConditionalRenderNV, 953, BeginConditionalRenderNV@8) + GL_STUB(EndConditionalRenderNV, 954, EndConditionalRenderNV@0) + GL_STUB(BeginTransformFeedbackEXT, 955, BeginTransformFeedbackEXT@4) + GL_STUB(BindBufferBaseEXT, 956, BindBufferBaseEXT@12) + GL_STUB(BindBufferOffsetEXT, 957, BindBufferOffsetEXT@16) + GL_STUB(BindBufferRangeEXT, 958, BindBufferRangeEXT@20) + GL_STUB(EndTransformFeedbackEXT, 959, EndTransformFeedbackEXT@0) + GL_STUB(GetTransformFeedbackVaryingEXT, 960, GetTransformFeedbackVaryingEXT@28) + GL_STUB(TransformFeedbackVaryingsEXT, 961, TransformFeedbackVaryingsEXT@16) + GL_STUB(ProvokingVertexEXT, 962, ProvokingVertexEXT@4) + GL_STUB(_dispatch_stub_963, 963, _dispatch_stub_963@12) + HIDDEN(GL_PREFIX(_dispatch_stub_963, _dispatch_stub_963@12)) + GL_STUB(_dispatch_stub_964, 964, _dispatch_stub_964@12) + HIDDEN(GL_PREFIX(_dispatch_stub_964, _dispatch_stub_964@12)) + GL_STUB(GetObjectParameterivAPPLE, 965, GetObjectParameterivAPPLE@16) + GL_STUB(ObjectPurgeableAPPLE, 966, ObjectPurgeableAPPLE@12) + GL_STUB(ObjectUnpurgeableAPPLE, 967, ObjectUnpurgeableAPPLE@12) + GL_STUB(ActiveProgramEXT, 968, ActiveProgramEXT@4) + GL_STUB(CreateShaderProgramEXT, 969, CreateShaderProgramEXT@8) + GL_STUB(UseShaderProgramEXT, 970, UseShaderProgramEXT@8) + GL_STUB(TextureBarrierNV, 971, TextureBarrierNV@0) GL_STUB(_dispatch_stub_972, 972, _dispatch_stub_972@16) HIDDEN(GL_PREFIX(_dispatch_stub_972, _dispatch_stub_972@16)) - GL_STUB(_dispatch_stub_973, 973, _dispatch_stub_973@12) - HIDDEN(GL_PREFIX(_dispatch_stub_973, _dispatch_stub_973@12)) - GL_STUB(_dispatch_stub_974, 974, _dispatch_stub_974@12) - HIDDEN(GL_PREFIX(_dispatch_stub_974, _dispatch_stub_974@12)) - GL_STUB(EGLImageTargetRenderbufferStorageOES, 975, EGLImageTargetRenderbufferStorageOES@8) - GL_STUB(EGLImageTargetTexture2DOES, 976, EGLImageTargetTexture2DOES@8) + GL_STUB(_dispatch_stub_973, 973, _dispatch_stub_973@16) + HIDDEN(GL_PREFIX(_dispatch_stub_973, _dispatch_stub_973@16)) + GL_STUB(_dispatch_stub_974, 974, _dispatch_stub_974@16) + HIDDEN(GL_PREFIX(_dispatch_stub_974, _dispatch_stub_974@16)) + GL_STUB(_dispatch_stub_975, 975, _dispatch_stub_975@12) + HIDDEN(GL_PREFIX(_dispatch_stub_975, _dispatch_stub_975@12)) + GL_STUB(_dispatch_stub_976, 976, _dispatch_stub_976@12) + HIDDEN(GL_PREFIX(_dispatch_stub_976, _dispatch_stub_976@12)) + GL_STUB(EGLImageTargetRenderbufferStorageOES, 977, EGLImageTargetRenderbufferStorageOES@8) + GL_STUB(EGLImageTargetTexture2DOES, 978, EGLImageTargetTexture2DOES@8) GL_STUB_ALIAS(ArrayElementEXT, 306, ArrayElementEXT@4, ArrayElement, ArrayElement@4) GL_STUB_ALIAS(BindTextureEXT, 307, BindTextureEXT@8, BindTexture, BindTexture@8) GL_STUB_ALIAS(DrawArraysEXT, 310, DrawArraysEXT@12, DrawArrays, DrawArrays@12) @@ -1356,152 +1358,152 @@ GLNAME(gl_dispatch_functions_start): GL_STUB_ALIAS(BlendEquationIndexedAMD, 598, BlendEquationIndexedAMD@8, BlendEquationiARB, BlendEquationiARB@8) GL_STUB_ALIAS(BlendFuncSeparateIndexedAMD, 599, BlendFuncSeparateIndexedAMD@20, BlendFuncSeparateiARB, BlendFuncSeparateiARB@20) GL_STUB_ALIAS(BlendFuncIndexedAMD, 600, BlendFuncIndexedAMD@12, BlendFunciARB, BlendFunciARB@12) - GL_STUB_ALIAS(PointParameterf, 710, PointParameterf@8, PointParameterfEXT, PointParameterfEXT@8) - GL_STUB_ALIAS(PointParameterfARB, 710, PointParameterfARB@8, PointParameterfEXT, PointParameterfEXT@8) - GL_STUB_ALIAS(PointParameterfv, 711, PointParameterfv@8, PointParameterfvEXT, PointParameterfvEXT@8) - GL_STUB_ALIAS(PointParameterfvARB, 711, PointParameterfvARB@8, PointParameterfvEXT, PointParameterfvEXT@8) - GL_STUB_ALIAS(SecondaryColor3b, 714, SecondaryColor3b@12, SecondaryColor3bEXT, SecondaryColor3bEXT@12) - GL_STUB_ALIAS(SecondaryColor3bv, 715, SecondaryColor3bv@4, SecondaryColor3bvEXT, SecondaryColor3bvEXT@4) - GL_STUB_ALIAS(SecondaryColor3d, 716, SecondaryColor3d@24, SecondaryColor3dEXT, SecondaryColor3dEXT@24) - GL_STUB_ALIAS(SecondaryColor3dv, 717, SecondaryColor3dv@4, SecondaryColor3dvEXT, SecondaryColor3dvEXT@4) - GL_STUB_ALIAS(SecondaryColor3f, 718, SecondaryColor3f@12, SecondaryColor3fEXT, SecondaryColor3fEXT@12) - GL_STUB_ALIAS(SecondaryColor3fv, 719, SecondaryColor3fv@4, SecondaryColor3fvEXT, SecondaryColor3fvEXT@4) - GL_STUB_ALIAS(SecondaryColor3i, 720, SecondaryColor3i@12, SecondaryColor3iEXT, SecondaryColor3iEXT@12) - GL_STUB_ALIAS(SecondaryColor3iv, 721, SecondaryColor3iv@4, SecondaryColor3ivEXT, SecondaryColor3ivEXT@4) - GL_STUB_ALIAS(SecondaryColor3s, 722, SecondaryColor3s@12, SecondaryColor3sEXT, SecondaryColor3sEXT@12) - GL_STUB_ALIAS(SecondaryColor3sv, 723, SecondaryColor3sv@4, SecondaryColor3svEXT, SecondaryColor3svEXT@4) - GL_STUB_ALIAS(SecondaryColor3ub, 724, SecondaryColor3ub@12, SecondaryColor3ubEXT, SecondaryColor3ubEXT@12) - GL_STUB_ALIAS(SecondaryColor3ubv, 725, SecondaryColor3ubv@4, SecondaryColor3ubvEXT, SecondaryColor3ubvEXT@4) - GL_STUB_ALIAS(SecondaryColor3ui, 726, SecondaryColor3ui@12, SecondaryColor3uiEXT, SecondaryColor3uiEXT@12) - GL_STUB_ALIAS(SecondaryColor3uiv, 727, SecondaryColor3uiv@4, SecondaryColor3uivEXT, SecondaryColor3uivEXT@4) - GL_STUB_ALIAS(SecondaryColor3us, 728, SecondaryColor3us@12, SecondaryColor3usEXT, SecondaryColor3usEXT@12) - GL_STUB_ALIAS(SecondaryColor3usv, 729, SecondaryColor3usv@4, SecondaryColor3usvEXT, SecondaryColor3usvEXT@4) - GL_STUB_ALIAS(SecondaryColorPointer, 730, SecondaryColorPointer@16, SecondaryColorPointerEXT, SecondaryColorPointerEXT@16) - GL_STUB_ALIAS(MultiDrawArrays, 731, MultiDrawArrays@16, MultiDrawArraysEXT, MultiDrawArraysEXT@16) - GL_STUB_ALIAS(MultiDrawElements, 732, MultiDrawElements@20, MultiDrawElementsEXT, MultiDrawElementsEXT@20) - GL_STUB_ALIAS(FogCoordPointer, 733, FogCoordPointer@12, FogCoordPointerEXT, FogCoordPointerEXT@12) - GL_STUB_ALIAS(FogCoordd, 734, FogCoordd@8, FogCoorddEXT, FogCoorddEXT@8) - GL_STUB_ALIAS(FogCoorddv, 735, FogCoorddv@4, FogCoorddvEXT, FogCoorddvEXT@4) - GL_STUB_ALIAS(FogCoordf, 736, FogCoordf@4, FogCoordfEXT, FogCoordfEXT@4) - GL_STUB_ALIAS(FogCoordfv, 737, FogCoordfv@4, FogCoordfvEXT, FogCoordfvEXT@4) - GL_STUB_ALIAS(BlendFuncSeparate, 739, BlendFuncSeparate@16, BlendFuncSeparateEXT, BlendFuncSeparateEXT@16) - GL_STUB_ALIAS(WindowPos2d, 756, WindowPos2d@16, WindowPos2dMESA, WindowPos2dMESA@16) - GL_STUB_ALIAS(WindowPos2dARB, 756, WindowPos2dARB@16, WindowPos2dMESA, WindowPos2dMESA@16) - GL_STUB_ALIAS(WindowPos2dv, 757, WindowPos2dv@4, WindowPos2dvMESA, WindowPos2dvMESA@4) - GL_STUB_ALIAS(WindowPos2dvARB, 757, WindowPos2dvARB@4, WindowPos2dvMESA, WindowPos2dvMESA@4) - GL_STUB_ALIAS(WindowPos2f, 758, WindowPos2f@8, WindowPos2fMESA, WindowPos2fMESA@8) - GL_STUB_ALIAS(WindowPos2fARB, 758, WindowPos2fARB@8, WindowPos2fMESA, WindowPos2fMESA@8) - GL_STUB_ALIAS(WindowPos2fv, 759, WindowPos2fv@4, WindowPos2fvMESA, WindowPos2fvMESA@4) - GL_STUB_ALIAS(WindowPos2fvARB, 759, WindowPos2fvARB@4, WindowPos2fvMESA, WindowPos2fvMESA@4) - GL_STUB_ALIAS(WindowPos2i, 760, WindowPos2i@8, WindowPos2iMESA, WindowPos2iMESA@8) - GL_STUB_ALIAS(WindowPos2iARB, 760, WindowPos2iARB@8, WindowPos2iMESA, WindowPos2iMESA@8) - GL_STUB_ALIAS(WindowPos2iv, 761, WindowPos2iv@4, WindowPos2ivMESA, WindowPos2ivMESA@4) - GL_STUB_ALIAS(WindowPos2ivARB, 761, WindowPos2ivARB@4, WindowPos2ivMESA, WindowPos2ivMESA@4) - GL_STUB_ALIAS(WindowPos2s, 762, WindowPos2s@8, WindowPos2sMESA, WindowPos2sMESA@8) - GL_STUB_ALIAS(WindowPos2sARB, 762, WindowPos2sARB@8, WindowPos2sMESA, WindowPos2sMESA@8) - GL_STUB_ALIAS(WindowPos2sv, 763, WindowPos2sv@4, WindowPos2svMESA, WindowPos2svMESA@4) - GL_STUB_ALIAS(WindowPos2svARB, 763, WindowPos2svARB@4, WindowPos2svMESA, WindowPos2svMESA@4) - GL_STUB_ALIAS(WindowPos3d, 764, WindowPos3d@24, WindowPos3dMESA, WindowPos3dMESA@24) - GL_STUB_ALIAS(WindowPos3dARB, 764, WindowPos3dARB@24, WindowPos3dMESA, WindowPos3dMESA@24) - GL_STUB_ALIAS(WindowPos3dv, 765, WindowPos3dv@4, WindowPos3dvMESA, WindowPos3dvMESA@4) - GL_STUB_ALIAS(WindowPos3dvARB, 765, WindowPos3dvARB@4, WindowPos3dvMESA, WindowPos3dvMESA@4) - GL_STUB_ALIAS(WindowPos3f, 766, WindowPos3f@12, WindowPos3fMESA, WindowPos3fMESA@12) - GL_STUB_ALIAS(WindowPos3fARB, 766, WindowPos3fARB@12, WindowPos3fMESA, WindowPos3fMESA@12) - GL_STUB_ALIAS(WindowPos3fv, 767, WindowPos3fv@4, WindowPos3fvMESA, WindowPos3fvMESA@4) - GL_STUB_ALIAS(WindowPos3fvARB, 767, WindowPos3fvARB@4, WindowPos3fvMESA, WindowPos3fvMESA@4) - GL_STUB_ALIAS(WindowPos3i, 768, WindowPos3i@12, WindowPos3iMESA, WindowPos3iMESA@12) - GL_STUB_ALIAS(WindowPos3iARB, 768, WindowPos3iARB@12, WindowPos3iMESA, WindowPos3iMESA@12) - GL_STUB_ALIAS(WindowPos3iv, 769, WindowPos3iv@4, WindowPos3ivMESA, WindowPos3ivMESA@4) - GL_STUB_ALIAS(WindowPos3ivARB, 769, WindowPos3ivARB@4, WindowPos3ivMESA, WindowPos3ivMESA@4) - GL_STUB_ALIAS(WindowPos3s, 770, WindowPos3s@12, WindowPos3sMESA, WindowPos3sMESA@12) - GL_STUB_ALIAS(WindowPos3sARB, 770, WindowPos3sARB@12, WindowPos3sMESA, WindowPos3sMESA@12) - GL_STUB_ALIAS(WindowPos3sv, 771, WindowPos3sv@4, WindowPos3svMESA, WindowPos3svMESA@4) - GL_STUB_ALIAS(WindowPos3svARB, 771, WindowPos3svARB@4, WindowPos3svMESA, WindowPos3svMESA@4) - GL_STUB_ALIAS(BindProgramARB, 790, BindProgramARB@8, BindProgramNV, BindProgramNV@8) - GL_STUB_ALIAS(DeleteProgramsARB, 791, DeleteProgramsARB@8, DeleteProgramsNV, DeleteProgramsNV@8) - GL_STUB_ALIAS(GenProgramsARB, 793, GenProgramsARB@8, GenProgramsNV, GenProgramsNV@8) - GL_STUB_ALIAS(GetVertexAttribPointerv, 799, GetVertexAttribPointerv@12, GetVertexAttribPointervNV, GetVertexAttribPointervNV@12) - GL_STUB_ALIAS(GetVertexAttribPointervARB, 799, GetVertexAttribPointervARB@12, GetVertexAttribPointervNV, GetVertexAttribPointervNV@12) - GL_STUB_ALIAS(IsProgramARB, 803, IsProgramARB@4, IsProgramNV, IsProgramNV@4) - GL_STUB_ALIAS(PointParameteri, 867, PointParameteri@8, PointParameteriNV, PointParameteriNV@8) - GL_STUB_ALIAS(PointParameteriv, 868, PointParameteriv@8, PointParameterivNV, PointParameterivNV@8) - GL_STUB_ALIAS(DeleteVertexArrays, 871, DeleteVertexArrays@8, _dispatch_stub_871, _dispatch_stub_871@8) - GL_STUB_ALIAS(IsVertexArray, 873, IsVertexArray@4, _dispatch_stub_873, _dispatch_stub_873@4) - GL_STUB_ALIAS(PrimitiveRestartIndex, 880, PrimitiveRestartIndex@4, PrimitiveRestartIndexNV, PrimitiveRestartIndexNV@4) - GL_STUB_ALIAS(BlendEquationSeparate, 883, BlendEquationSeparate@8, _dispatch_stub_883, _dispatch_stub_883@8) - GL_STUB_ALIAS(BindFramebuffer, 884, BindFramebuffer@8, BindFramebufferEXT, BindFramebufferEXT@8) - GL_STUB_ALIAS(BindRenderbuffer, 885, BindRenderbuffer@8, BindRenderbufferEXT, BindRenderbufferEXT@8) - GL_STUB_ALIAS(CheckFramebufferStatus, 886, CheckFramebufferStatus@4, CheckFramebufferStatusEXT, CheckFramebufferStatusEXT@4) - GL_STUB_ALIAS(DeleteFramebuffers, 887, DeleteFramebuffers@8, DeleteFramebuffersEXT, DeleteFramebuffersEXT@8) - GL_STUB_ALIAS(DeleteRenderbuffers, 888, DeleteRenderbuffers@8, DeleteRenderbuffersEXT, DeleteRenderbuffersEXT@8) - GL_STUB_ALIAS(FramebufferRenderbuffer, 889, FramebufferRenderbuffer@16, FramebufferRenderbufferEXT, FramebufferRenderbufferEXT@16) - GL_STUB_ALIAS(FramebufferTexture1D, 890, FramebufferTexture1D@20, FramebufferTexture1DEXT, FramebufferTexture1DEXT@20) - GL_STUB_ALIAS(FramebufferTexture2D, 891, FramebufferTexture2D@20, FramebufferTexture2DEXT, FramebufferTexture2DEXT@20) - GL_STUB_ALIAS(FramebufferTexture3D, 892, FramebufferTexture3D@24, FramebufferTexture3DEXT, FramebufferTexture3DEXT@24) - GL_STUB_ALIAS(GenFramebuffers, 893, GenFramebuffers@8, GenFramebuffersEXT, GenFramebuffersEXT@8) - GL_STUB_ALIAS(GenRenderbuffers, 894, GenRenderbuffers@8, GenRenderbuffersEXT, GenRenderbuffersEXT@8) - GL_STUB_ALIAS(GenerateMipmap, 895, GenerateMipmap@4, GenerateMipmapEXT, GenerateMipmapEXT@4) - GL_STUB_ALIAS(GetFramebufferAttachmentParameteriv, 896, GetFramebufferAttachmentParameteriv@16, GetFramebufferAttachmentParameterivEXT, GetFramebufferAttachmentParameterivEXT@16) - GL_STUB_ALIAS(GetRenderbufferParameteriv, 897, GetRenderbufferParameteriv@12, GetRenderbufferParameterivEXT, GetRenderbufferParameterivEXT@12) - GL_STUB_ALIAS(IsFramebuffer, 898, IsFramebuffer@4, IsFramebufferEXT, IsFramebufferEXT@4) - GL_STUB_ALIAS(IsRenderbuffer, 899, IsRenderbuffer@4, IsRenderbufferEXT, IsRenderbufferEXT@4) - GL_STUB_ALIAS(RenderbufferStorage, 900, RenderbufferStorage@16, RenderbufferStorageEXT, RenderbufferStorageEXT@16) - GL_STUB_ALIAS(BlitFramebuffer, 901, BlitFramebuffer@40, _dispatch_stub_901, _dispatch_stub_901@40) - GL_STUB_ALIAS(BindFragDataLocation, 904, BindFragDataLocation@12, BindFragDataLocationEXT, BindFragDataLocationEXT@12) - GL_STUB_ALIAS(GetFragDataLocation, 905, GetFragDataLocation@8, GetFragDataLocationEXT, GetFragDataLocationEXT@8) - GL_STUB_ALIAS(GetUniformuiv, 906, GetUniformuiv@12, GetUniformuivEXT, GetUniformuivEXT@12) - GL_STUB_ALIAS(GetVertexAttribIiv, 907, GetVertexAttribIiv@12, GetVertexAttribIivEXT, GetVertexAttribIivEXT@12) - GL_STUB_ALIAS(GetVertexAttribIuiv, 908, GetVertexAttribIuiv@12, GetVertexAttribIuivEXT, GetVertexAttribIuivEXT@12) - GL_STUB_ALIAS(Uniform1ui, 909, Uniform1ui@8, Uniform1uiEXT, Uniform1uiEXT@8) - GL_STUB_ALIAS(Uniform1uiv, 910, Uniform1uiv@12, Uniform1uivEXT, Uniform1uivEXT@12) - GL_STUB_ALIAS(Uniform2ui, 911, Uniform2ui@12, Uniform2uiEXT, Uniform2uiEXT@12) - GL_STUB_ALIAS(Uniform2uiv, 912, Uniform2uiv@12, Uniform2uivEXT, Uniform2uivEXT@12) - GL_STUB_ALIAS(Uniform3ui, 913, Uniform3ui@16, Uniform3uiEXT, Uniform3uiEXT@16) - GL_STUB_ALIAS(Uniform3uiv, 914, Uniform3uiv@12, Uniform3uivEXT, Uniform3uivEXT@12) - GL_STUB_ALIAS(Uniform4ui, 915, Uniform4ui@20, Uniform4uiEXT, Uniform4uiEXT@20) - GL_STUB_ALIAS(Uniform4uiv, 916, Uniform4uiv@12, Uniform4uivEXT, Uniform4uivEXT@12) - GL_STUB_ALIAS(VertexAttribI1i, 917, VertexAttribI1i@8, VertexAttribI1iEXT, VertexAttribI1iEXT@8) - GL_STUB_ALIAS(VertexAttribI1iv, 918, VertexAttribI1iv@8, VertexAttribI1ivEXT, VertexAttribI1ivEXT@8) - GL_STUB_ALIAS(VertexAttribI1ui, 919, VertexAttribI1ui@8, VertexAttribI1uiEXT, VertexAttribI1uiEXT@8) - GL_STUB_ALIAS(VertexAttribI1uiv, 920, VertexAttribI1uiv@8, VertexAttribI1uivEXT, VertexAttribI1uivEXT@8) - GL_STUB_ALIAS(VertexAttribI2i, 921, VertexAttribI2i@12, VertexAttribI2iEXT, VertexAttribI2iEXT@12) - GL_STUB_ALIAS(VertexAttribI2iv, 922, VertexAttribI2iv@8, VertexAttribI2ivEXT, VertexAttribI2ivEXT@8) - GL_STUB_ALIAS(VertexAttribI2ui, 923, VertexAttribI2ui@12, VertexAttribI2uiEXT, VertexAttribI2uiEXT@12) - GL_STUB_ALIAS(VertexAttribI2uiv, 924, VertexAttribI2uiv@8, VertexAttribI2uivEXT, VertexAttribI2uivEXT@8) - GL_STUB_ALIAS(VertexAttribI3i, 925, VertexAttribI3i@16, VertexAttribI3iEXT, VertexAttribI3iEXT@16) - GL_STUB_ALIAS(VertexAttribI3iv, 926, VertexAttribI3iv@8, VertexAttribI3ivEXT, VertexAttribI3ivEXT@8) - GL_STUB_ALIAS(VertexAttribI3ui, 927, VertexAttribI3ui@16, VertexAttribI3uiEXT, VertexAttribI3uiEXT@16) - GL_STUB_ALIAS(VertexAttribI3uiv, 928, VertexAttribI3uiv@8, VertexAttribI3uivEXT, VertexAttribI3uivEXT@8) - GL_STUB_ALIAS(VertexAttribI4bv, 929, VertexAttribI4bv@8, VertexAttribI4bvEXT, VertexAttribI4bvEXT@8) - GL_STUB_ALIAS(VertexAttribI4i, 930, VertexAttribI4i@20, VertexAttribI4iEXT, VertexAttribI4iEXT@20) - GL_STUB_ALIAS(VertexAttribI4iv, 931, VertexAttribI4iv@8, VertexAttribI4ivEXT, VertexAttribI4ivEXT@8) - GL_STUB_ALIAS(VertexAttribI4sv, 932, VertexAttribI4sv@8, VertexAttribI4svEXT, VertexAttribI4svEXT@8) - GL_STUB_ALIAS(VertexAttribI4ubv, 933, VertexAttribI4ubv@8, VertexAttribI4ubvEXT, VertexAttribI4ubvEXT@8) - GL_STUB_ALIAS(VertexAttribI4ui, 934, VertexAttribI4ui@20, VertexAttribI4uiEXT, VertexAttribI4uiEXT@20) - GL_STUB_ALIAS(VertexAttribI4uiv, 935, VertexAttribI4uiv@8, VertexAttribI4uivEXT, VertexAttribI4uivEXT@8) - GL_STUB_ALIAS(VertexAttribI4usv, 936, VertexAttribI4usv@8, VertexAttribI4usvEXT, VertexAttribI4usvEXT@8) - GL_STUB_ALIAS(VertexAttribIPointer, 937, VertexAttribIPointer@20, VertexAttribIPointerEXT, VertexAttribIPointerEXT@20) - GL_STUB_ALIAS(FramebufferTextureLayer, 938, FramebufferTextureLayer@20, FramebufferTextureLayerEXT, FramebufferTextureLayerEXT@20) - GL_STUB_ALIAS(FramebufferTextureLayerARB, 938, FramebufferTextureLayerARB@20, FramebufferTextureLayerEXT, FramebufferTextureLayerEXT@20) - GL_STUB_ALIAS(ColorMaski, 939, ColorMaski@20, ColorMaskIndexedEXT, ColorMaskIndexedEXT@20) - GL_STUB_ALIAS(Disablei, 940, Disablei@8, DisableIndexedEXT, DisableIndexedEXT@8) - GL_STUB_ALIAS(Enablei, 941, Enablei@8, EnableIndexedEXT, EnableIndexedEXT@8) - GL_STUB_ALIAS(GetBooleani_v, 942, GetBooleani_v@12, GetBooleanIndexedvEXT, GetBooleanIndexedvEXT@12) - GL_STUB_ALIAS(GetIntegeri_v, 943, GetIntegeri_v@12, GetIntegerIndexedvEXT, GetIntegerIndexedvEXT@12) - GL_STUB_ALIAS(IsEnabledi, 944, IsEnabledi@8, IsEnabledIndexedEXT, IsEnabledIndexedEXT@8) - GL_STUB_ALIAS(GetTexParameterIiv, 947, GetTexParameterIiv@12, GetTexParameterIivEXT, GetTexParameterIivEXT@12) - GL_STUB_ALIAS(GetTexParameterIuiv, 948, GetTexParameterIuiv@12, GetTexParameterIuivEXT, GetTexParameterIuivEXT@12) - GL_STUB_ALIAS(TexParameterIiv, 949, TexParameterIiv@12, TexParameterIivEXT, TexParameterIivEXT@12) - GL_STUB_ALIAS(TexParameterIuiv, 950, TexParameterIuiv@12, TexParameterIuivEXT, TexParameterIuivEXT@12) - GL_STUB_ALIAS(BeginConditionalRender, 951, BeginConditionalRender@8, BeginConditionalRenderNV, BeginConditionalRenderNV@8) - GL_STUB_ALIAS(EndConditionalRender, 952, EndConditionalRender@0, EndConditionalRenderNV, EndConditionalRenderNV@0) - GL_STUB_ALIAS(BeginTransformFeedback, 953, BeginTransformFeedback@4, BeginTransformFeedbackEXT, BeginTransformFeedbackEXT@4) - GL_STUB_ALIAS(BindBufferBase, 954, BindBufferBase@12, BindBufferBaseEXT, BindBufferBaseEXT@12) - GL_STUB_ALIAS(BindBufferRange, 956, BindBufferRange@20, BindBufferRangeEXT, BindBufferRangeEXT@20) - GL_STUB_ALIAS(EndTransformFeedback, 957, EndTransformFeedback@0, EndTransformFeedbackEXT, EndTransformFeedbackEXT@0) - GL_STUB_ALIAS(GetTransformFeedbackVarying, 958, GetTransformFeedbackVarying@28, GetTransformFeedbackVaryingEXT, GetTransformFeedbackVaryingEXT@28) - GL_STUB_ALIAS(TransformFeedbackVaryings, 959, TransformFeedbackVaryings@16, TransformFeedbackVaryingsEXT, TransformFeedbackVaryingsEXT@16) - GL_STUB_ALIAS(ProvokingVertex, 960, ProvokingVertex@4, ProvokingVertexEXT, ProvokingVertexEXT@4) + GL_STUB_ALIAS(PointParameterf, 712, PointParameterf@8, PointParameterfEXT, PointParameterfEXT@8) + GL_STUB_ALIAS(PointParameterfARB, 712, PointParameterfARB@8, PointParameterfEXT, PointParameterfEXT@8) + GL_STUB_ALIAS(PointParameterfv, 713, PointParameterfv@8, PointParameterfvEXT, PointParameterfvEXT@8) + GL_STUB_ALIAS(PointParameterfvARB, 713, PointParameterfvARB@8, PointParameterfvEXT, PointParameterfvEXT@8) + GL_STUB_ALIAS(SecondaryColor3b, 716, SecondaryColor3b@12, SecondaryColor3bEXT, SecondaryColor3bEXT@12) + GL_STUB_ALIAS(SecondaryColor3bv, 717, SecondaryColor3bv@4, SecondaryColor3bvEXT, SecondaryColor3bvEXT@4) + GL_STUB_ALIAS(SecondaryColor3d, 718, SecondaryColor3d@24, SecondaryColor3dEXT, SecondaryColor3dEXT@24) + GL_STUB_ALIAS(SecondaryColor3dv, 719, SecondaryColor3dv@4, SecondaryColor3dvEXT, SecondaryColor3dvEXT@4) + GL_STUB_ALIAS(SecondaryColor3f, 720, SecondaryColor3f@12, SecondaryColor3fEXT, SecondaryColor3fEXT@12) + GL_STUB_ALIAS(SecondaryColor3fv, 721, SecondaryColor3fv@4, SecondaryColor3fvEXT, SecondaryColor3fvEXT@4) + GL_STUB_ALIAS(SecondaryColor3i, 722, SecondaryColor3i@12, SecondaryColor3iEXT, SecondaryColor3iEXT@12) + GL_STUB_ALIAS(SecondaryColor3iv, 723, SecondaryColor3iv@4, SecondaryColor3ivEXT, SecondaryColor3ivEXT@4) + GL_STUB_ALIAS(SecondaryColor3s, 724, SecondaryColor3s@12, SecondaryColor3sEXT, SecondaryColor3sEXT@12) + GL_STUB_ALIAS(SecondaryColor3sv, 725, SecondaryColor3sv@4, SecondaryColor3svEXT, SecondaryColor3svEXT@4) + GL_STUB_ALIAS(SecondaryColor3ub, 726, SecondaryColor3ub@12, SecondaryColor3ubEXT, SecondaryColor3ubEXT@12) + GL_STUB_ALIAS(SecondaryColor3ubv, 727, SecondaryColor3ubv@4, SecondaryColor3ubvEXT, SecondaryColor3ubvEXT@4) + GL_STUB_ALIAS(SecondaryColor3ui, 728, SecondaryColor3ui@12, SecondaryColor3uiEXT, SecondaryColor3uiEXT@12) + GL_STUB_ALIAS(SecondaryColor3uiv, 729, SecondaryColor3uiv@4, SecondaryColor3uivEXT, SecondaryColor3uivEXT@4) + GL_STUB_ALIAS(SecondaryColor3us, 730, SecondaryColor3us@12, SecondaryColor3usEXT, SecondaryColor3usEXT@12) + GL_STUB_ALIAS(SecondaryColor3usv, 731, SecondaryColor3usv@4, SecondaryColor3usvEXT, SecondaryColor3usvEXT@4) + GL_STUB_ALIAS(SecondaryColorPointer, 732, SecondaryColorPointer@16, SecondaryColorPointerEXT, SecondaryColorPointerEXT@16) + GL_STUB_ALIAS(MultiDrawArrays, 733, MultiDrawArrays@16, MultiDrawArraysEXT, MultiDrawArraysEXT@16) + GL_STUB_ALIAS(MultiDrawElements, 734, MultiDrawElements@20, MultiDrawElementsEXT, MultiDrawElementsEXT@20) + GL_STUB_ALIAS(FogCoordPointer, 735, FogCoordPointer@12, FogCoordPointerEXT, FogCoordPointerEXT@12) + GL_STUB_ALIAS(FogCoordd, 736, FogCoordd@8, FogCoorddEXT, FogCoorddEXT@8) + GL_STUB_ALIAS(FogCoorddv, 737, FogCoorddv@4, FogCoorddvEXT, FogCoorddvEXT@4) + GL_STUB_ALIAS(FogCoordf, 738, FogCoordf@4, FogCoordfEXT, FogCoordfEXT@4) + GL_STUB_ALIAS(FogCoordfv, 739, FogCoordfv@4, FogCoordfvEXT, FogCoordfvEXT@4) + GL_STUB_ALIAS(BlendFuncSeparate, 741, BlendFuncSeparate@16, BlendFuncSeparateEXT, BlendFuncSeparateEXT@16) + GL_STUB_ALIAS(WindowPos2d, 758, WindowPos2d@16, WindowPos2dMESA, WindowPos2dMESA@16) + GL_STUB_ALIAS(WindowPos2dARB, 758, WindowPos2dARB@16, WindowPos2dMESA, WindowPos2dMESA@16) + GL_STUB_ALIAS(WindowPos2dv, 759, WindowPos2dv@4, WindowPos2dvMESA, WindowPos2dvMESA@4) + GL_STUB_ALIAS(WindowPos2dvARB, 759, WindowPos2dvARB@4, WindowPos2dvMESA, WindowPos2dvMESA@4) + GL_STUB_ALIAS(WindowPos2f, 760, WindowPos2f@8, WindowPos2fMESA, WindowPos2fMESA@8) + GL_STUB_ALIAS(WindowPos2fARB, 760, WindowPos2fARB@8, WindowPos2fMESA, WindowPos2fMESA@8) + GL_STUB_ALIAS(WindowPos2fv, 761, WindowPos2fv@4, WindowPos2fvMESA, WindowPos2fvMESA@4) + GL_STUB_ALIAS(WindowPos2fvARB, 761, WindowPos2fvARB@4, WindowPos2fvMESA, WindowPos2fvMESA@4) + GL_STUB_ALIAS(WindowPos2i, 762, WindowPos2i@8, WindowPos2iMESA, WindowPos2iMESA@8) + GL_STUB_ALIAS(WindowPos2iARB, 762, WindowPos2iARB@8, WindowPos2iMESA, WindowPos2iMESA@8) + GL_STUB_ALIAS(WindowPos2iv, 763, WindowPos2iv@4, WindowPos2ivMESA, WindowPos2ivMESA@4) + GL_STUB_ALIAS(WindowPos2ivARB, 763, WindowPos2ivARB@4, WindowPos2ivMESA, WindowPos2ivMESA@4) + GL_STUB_ALIAS(WindowPos2s, 764, WindowPos2s@8, WindowPos2sMESA, WindowPos2sMESA@8) + GL_STUB_ALIAS(WindowPos2sARB, 764, WindowPos2sARB@8, WindowPos2sMESA, WindowPos2sMESA@8) + GL_STUB_ALIAS(WindowPos2sv, 765, WindowPos2sv@4, WindowPos2svMESA, WindowPos2svMESA@4) + GL_STUB_ALIAS(WindowPos2svARB, 765, WindowPos2svARB@4, WindowPos2svMESA, WindowPos2svMESA@4) + GL_STUB_ALIAS(WindowPos3d, 766, WindowPos3d@24, WindowPos3dMESA, WindowPos3dMESA@24) + GL_STUB_ALIAS(WindowPos3dARB, 766, WindowPos3dARB@24, WindowPos3dMESA, WindowPos3dMESA@24) + GL_STUB_ALIAS(WindowPos3dv, 767, WindowPos3dv@4, WindowPos3dvMESA, WindowPos3dvMESA@4) + GL_STUB_ALIAS(WindowPos3dvARB, 767, WindowPos3dvARB@4, WindowPos3dvMESA, WindowPos3dvMESA@4) + GL_STUB_ALIAS(WindowPos3f, 768, WindowPos3f@12, WindowPos3fMESA, WindowPos3fMESA@12) + GL_STUB_ALIAS(WindowPos3fARB, 768, WindowPos3fARB@12, WindowPos3fMESA, WindowPos3fMESA@12) + GL_STUB_ALIAS(WindowPos3fv, 769, WindowPos3fv@4, WindowPos3fvMESA, WindowPos3fvMESA@4) + GL_STUB_ALIAS(WindowPos3fvARB, 769, WindowPos3fvARB@4, WindowPos3fvMESA, WindowPos3fvMESA@4) + GL_STUB_ALIAS(WindowPos3i, 770, WindowPos3i@12, WindowPos3iMESA, WindowPos3iMESA@12) + GL_STUB_ALIAS(WindowPos3iARB, 770, WindowPos3iARB@12, WindowPos3iMESA, WindowPos3iMESA@12) + GL_STUB_ALIAS(WindowPos3iv, 771, WindowPos3iv@4, WindowPos3ivMESA, WindowPos3ivMESA@4) + GL_STUB_ALIAS(WindowPos3ivARB, 771, WindowPos3ivARB@4, WindowPos3ivMESA, WindowPos3ivMESA@4) + GL_STUB_ALIAS(WindowPos3s, 772, WindowPos3s@12, WindowPos3sMESA, WindowPos3sMESA@12) + GL_STUB_ALIAS(WindowPos3sARB, 772, WindowPos3sARB@12, WindowPos3sMESA, WindowPos3sMESA@12) + GL_STUB_ALIAS(WindowPos3sv, 773, WindowPos3sv@4, WindowPos3svMESA, WindowPos3svMESA@4) + GL_STUB_ALIAS(WindowPos3svARB, 773, WindowPos3svARB@4, WindowPos3svMESA, WindowPos3svMESA@4) + GL_STUB_ALIAS(BindProgramARB, 792, BindProgramARB@8, BindProgramNV, BindProgramNV@8) + GL_STUB_ALIAS(DeleteProgramsARB, 793, DeleteProgramsARB@8, DeleteProgramsNV, DeleteProgramsNV@8) + GL_STUB_ALIAS(GenProgramsARB, 795, GenProgramsARB@8, GenProgramsNV, GenProgramsNV@8) + GL_STUB_ALIAS(GetVertexAttribPointerv, 801, GetVertexAttribPointerv@12, GetVertexAttribPointervNV, GetVertexAttribPointervNV@12) + GL_STUB_ALIAS(GetVertexAttribPointervARB, 801, GetVertexAttribPointervARB@12, GetVertexAttribPointervNV, GetVertexAttribPointervNV@12) + GL_STUB_ALIAS(IsProgramARB, 805, IsProgramARB@4, IsProgramNV, IsProgramNV@4) + GL_STUB_ALIAS(PointParameteri, 869, PointParameteri@8, PointParameteriNV, PointParameteriNV@8) + GL_STUB_ALIAS(PointParameteriv, 870, PointParameteriv@8, PointParameterivNV, PointParameterivNV@8) + GL_STUB_ALIAS(DeleteVertexArrays, 873, DeleteVertexArrays@8, _dispatch_stub_873, _dispatch_stub_873@8) + GL_STUB_ALIAS(IsVertexArray, 875, IsVertexArray@4, _dispatch_stub_875, _dispatch_stub_875@4) + GL_STUB_ALIAS(PrimitiveRestartIndex, 882, PrimitiveRestartIndex@4, PrimitiveRestartIndexNV, PrimitiveRestartIndexNV@4) + GL_STUB_ALIAS(BlendEquationSeparate, 885, BlendEquationSeparate@8, _dispatch_stub_885, _dispatch_stub_885@8) + GL_STUB_ALIAS(BindFramebuffer, 886, BindFramebuffer@8, BindFramebufferEXT, BindFramebufferEXT@8) + GL_STUB_ALIAS(BindRenderbuffer, 887, BindRenderbuffer@8, BindRenderbufferEXT, BindRenderbufferEXT@8) + GL_STUB_ALIAS(CheckFramebufferStatus, 888, CheckFramebufferStatus@4, CheckFramebufferStatusEXT, CheckFramebufferStatusEXT@4) + GL_STUB_ALIAS(DeleteFramebuffers, 889, DeleteFramebuffers@8, DeleteFramebuffersEXT, DeleteFramebuffersEXT@8) + GL_STUB_ALIAS(DeleteRenderbuffers, 890, DeleteRenderbuffers@8, DeleteRenderbuffersEXT, DeleteRenderbuffersEXT@8) + GL_STUB_ALIAS(FramebufferRenderbuffer, 891, FramebufferRenderbuffer@16, FramebufferRenderbufferEXT, FramebufferRenderbufferEXT@16) + GL_STUB_ALIAS(FramebufferTexture1D, 892, FramebufferTexture1D@20, FramebufferTexture1DEXT, FramebufferTexture1DEXT@20) + GL_STUB_ALIAS(FramebufferTexture2D, 893, FramebufferTexture2D@20, FramebufferTexture2DEXT, FramebufferTexture2DEXT@20) + GL_STUB_ALIAS(FramebufferTexture3D, 894, FramebufferTexture3D@24, FramebufferTexture3DEXT, FramebufferTexture3DEXT@24) + GL_STUB_ALIAS(GenFramebuffers, 895, GenFramebuffers@8, GenFramebuffersEXT, GenFramebuffersEXT@8) + GL_STUB_ALIAS(GenRenderbuffers, 896, GenRenderbuffers@8, GenRenderbuffersEXT, GenRenderbuffersEXT@8) + GL_STUB_ALIAS(GenerateMipmap, 897, GenerateMipmap@4, GenerateMipmapEXT, GenerateMipmapEXT@4) + GL_STUB_ALIAS(GetFramebufferAttachmentParameteriv, 898, GetFramebufferAttachmentParameteriv@16, GetFramebufferAttachmentParameterivEXT, GetFramebufferAttachmentParameterivEXT@16) + GL_STUB_ALIAS(GetRenderbufferParameteriv, 899, GetRenderbufferParameteriv@12, GetRenderbufferParameterivEXT, GetRenderbufferParameterivEXT@12) + GL_STUB_ALIAS(IsFramebuffer, 900, IsFramebuffer@4, IsFramebufferEXT, IsFramebufferEXT@4) + GL_STUB_ALIAS(IsRenderbuffer, 901, IsRenderbuffer@4, IsRenderbufferEXT, IsRenderbufferEXT@4) + GL_STUB_ALIAS(RenderbufferStorage, 902, RenderbufferStorage@16, RenderbufferStorageEXT, RenderbufferStorageEXT@16) + GL_STUB_ALIAS(BlitFramebuffer, 903, BlitFramebuffer@40, _dispatch_stub_903, _dispatch_stub_903@40) + GL_STUB_ALIAS(BindFragDataLocation, 906, BindFragDataLocation@12, BindFragDataLocationEXT, BindFragDataLocationEXT@12) + GL_STUB_ALIAS(GetFragDataLocation, 907, GetFragDataLocation@8, GetFragDataLocationEXT, GetFragDataLocationEXT@8) + GL_STUB_ALIAS(GetUniformuiv, 908, GetUniformuiv@12, GetUniformuivEXT, GetUniformuivEXT@12) + GL_STUB_ALIAS(GetVertexAttribIiv, 909, GetVertexAttribIiv@12, GetVertexAttribIivEXT, GetVertexAttribIivEXT@12) + GL_STUB_ALIAS(GetVertexAttribIuiv, 910, GetVertexAttribIuiv@12, GetVertexAttribIuivEXT, GetVertexAttribIuivEXT@12) + GL_STUB_ALIAS(Uniform1ui, 911, Uniform1ui@8, Uniform1uiEXT, Uniform1uiEXT@8) + GL_STUB_ALIAS(Uniform1uiv, 912, Uniform1uiv@12, Uniform1uivEXT, Uniform1uivEXT@12) + GL_STUB_ALIAS(Uniform2ui, 913, Uniform2ui@12, Uniform2uiEXT, Uniform2uiEXT@12) + GL_STUB_ALIAS(Uniform2uiv, 914, Uniform2uiv@12, Uniform2uivEXT, Uniform2uivEXT@12) + GL_STUB_ALIAS(Uniform3ui, 915, Uniform3ui@16, Uniform3uiEXT, Uniform3uiEXT@16) + GL_STUB_ALIAS(Uniform3uiv, 916, Uniform3uiv@12, Uniform3uivEXT, Uniform3uivEXT@12) + GL_STUB_ALIAS(Uniform4ui, 917, Uniform4ui@20, Uniform4uiEXT, Uniform4uiEXT@20) + GL_STUB_ALIAS(Uniform4uiv, 918, Uniform4uiv@12, Uniform4uivEXT, Uniform4uivEXT@12) + GL_STUB_ALIAS(VertexAttribI1i, 919, VertexAttribI1i@8, VertexAttribI1iEXT, VertexAttribI1iEXT@8) + GL_STUB_ALIAS(VertexAttribI1iv, 920, VertexAttribI1iv@8, VertexAttribI1ivEXT, VertexAttribI1ivEXT@8) + GL_STUB_ALIAS(VertexAttribI1ui, 921, VertexAttribI1ui@8, VertexAttribI1uiEXT, VertexAttribI1uiEXT@8) + GL_STUB_ALIAS(VertexAttribI1uiv, 922, VertexAttribI1uiv@8, VertexAttribI1uivEXT, VertexAttribI1uivEXT@8) + GL_STUB_ALIAS(VertexAttribI2i, 923, VertexAttribI2i@12, VertexAttribI2iEXT, VertexAttribI2iEXT@12) + GL_STUB_ALIAS(VertexAttribI2iv, 924, VertexAttribI2iv@8, VertexAttribI2ivEXT, VertexAttribI2ivEXT@8) + GL_STUB_ALIAS(VertexAttribI2ui, 925, VertexAttribI2ui@12, VertexAttribI2uiEXT, VertexAttribI2uiEXT@12) + GL_STUB_ALIAS(VertexAttribI2uiv, 926, VertexAttribI2uiv@8, VertexAttribI2uivEXT, VertexAttribI2uivEXT@8) + GL_STUB_ALIAS(VertexAttribI3i, 927, VertexAttribI3i@16, VertexAttribI3iEXT, VertexAttribI3iEXT@16) + GL_STUB_ALIAS(VertexAttribI3iv, 928, VertexAttribI3iv@8, VertexAttribI3ivEXT, VertexAttribI3ivEXT@8) + GL_STUB_ALIAS(VertexAttribI3ui, 929, VertexAttribI3ui@16, VertexAttribI3uiEXT, VertexAttribI3uiEXT@16) + GL_STUB_ALIAS(VertexAttribI3uiv, 930, VertexAttribI3uiv@8, VertexAttribI3uivEXT, VertexAttribI3uivEXT@8) + GL_STUB_ALIAS(VertexAttribI4bv, 931, VertexAttribI4bv@8, VertexAttribI4bvEXT, VertexAttribI4bvEXT@8) + GL_STUB_ALIAS(VertexAttribI4i, 932, VertexAttribI4i@20, VertexAttribI4iEXT, VertexAttribI4iEXT@20) + GL_STUB_ALIAS(VertexAttribI4iv, 933, VertexAttribI4iv@8, VertexAttribI4ivEXT, VertexAttribI4ivEXT@8) + GL_STUB_ALIAS(VertexAttribI4sv, 934, VertexAttribI4sv@8, VertexAttribI4svEXT, VertexAttribI4svEXT@8) + GL_STUB_ALIAS(VertexAttribI4ubv, 935, VertexAttribI4ubv@8, VertexAttribI4ubvEXT, VertexAttribI4ubvEXT@8) + GL_STUB_ALIAS(VertexAttribI4ui, 936, VertexAttribI4ui@20, VertexAttribI4uiEXT, VertexAttribI4uiEXT@20) + GL_STUB_ALIAS(VertexAttribI4uiv, 937, VertexAttribI4uiv@8, VertexAttribI4uivEXT, VertexAttribI4uivEXT@8) + GL_STUB_ALIAS(VertexAttribI4usv, 938, VertexAttribI4usv@8, VertexAttribI4usvEXT, VertexAttribI4usvEXT@8) + GL_STUB_ALIAS(VertexAttribIPointer, 939, VertexAttribIPointer@20, VertexAttribIPointerEXT, VertexAttribIPointerEXT@20) + GL_STUB_ALIAS(FramebufferTextureLayer, 940, FramebufferTextureLayer@20, FramebufferTextureLayerEXT, FramebufferTextureLayerEXT@20) + GL_STUB_ALIAS(FramebufferTextureLayerARB, 940, FramebufferTextureLayerARB@20, FramebufferTextureLayerEXT, FramebufferTextureLayerEXT@20) + GL_STUB_ALIAS(ColorMaski, 941, ColorMaski@20, ColorMaskIndexedEXT, ColorMaskIndexedEXT@20) + GL_STUB_ALIAS(Disablei, 942, Disablei@8, DisableIndexedEXT, DisableIndexedEXT@8) + GL_STUB_ALIAS(Enablei, 943, Enablei@8, EnableIndexedEXT, EnableIndexedEXT@8) + GL_STUB_ALIAS(GetBooleani_v, 944, GetBooleani_v@12, GetBooleanIndexedvEXT, GetBooleanIndexedvEXT@12) + GL_STUB_ALIAS(GetIntegeri_v, 945, GetIntegeri_v@12, GetIntegerIndexedvEXT, GetIntegerIndexedvEXT@12) + GL_STUB_ALIAS(IsEnabledi, 946, IsEnabledi@8, IsEnabledIndexedEXT, IsEnabledIndexedEXT@8) + GL_STUB_ALIAS(GetTexParameterIiv, 949, GetTexParameterIiv@12, GetTexParameterIivEXT, GetTexParameterIivEXT@12) + GL_STUB_ALIAS(GetTexParameterIuiv, 950, GetTexParameterIuiv@12, GetTexParameterIuivEXT, GetTexParameterIuivEXT@12) + GL_STUB_ALIAS(TexParameterIiv, 951, TexParameterIiv@12, TexParameterIivEXT, TexParameterIivEXT@12) + GL_STUB_ALIAS(TexParameterIuiv, 952, TexParameterIuiv@12, TexParameterIuivEXT, TexParameterIuivEXT@12) + GL_STUB_ALIAS(BeginConditionalRender, 953, BeginConditionalRender@8, BeginConditionalRenderNV, BeginConditionalRenderNV@8) + GL_STUB_ALIAS(EndConditionalRender, 954, EndConditionalRender@0, EndConditionalRenderNV, EndConditionalRenderNV@0) + GL_STUB_ALIAS(BeginTransformFeedback, 955, BeginTransformFeedback@4, BeginTransformFeedbackEXT, BeginTransformFeedbackEXT@4) + GL_STUB_ALIAS(BindBufferBase, 956, BindBufferBase@12, BindBufferBaseEXT, BindBufferBaseEXT@12) + GL_STUB_ALIAS(BindBufferRange, 958, BindBufferRange@20, BindBufferRangeEXT, BindBufferRangeEXT@20) + GL_STUB_ALIAS(EndTransformFeedback, 959, EndTransformFeedback@0, EndTransformFeedbackEXT, EndTransformFeedbackEXT@0) + GL_STUB_ALIAS(GetTransformFeedbackVarying, 960, GetTransformFeedbackVarying@28, GetTransformFeedbackVaryingEXT, GetTransformFeedbackVaryingEXT@28) + GL_STUB_ALIAS(TransformFeedbackVaryings, 961, TransformFeedbackVaryings@16, TransformFeedbackVaryingsEXT, TransformFeedbackVaryingsEXT@16) + GL_STUB_ALIAS(ProvokingVertex, 962, ProvokingVertex@4, ProvokingVertexEXT, ProvokingVertexEXT@4) GLOBL GLNAME(gl_dispatch_functions_end) HIDDEN(GLNAME(gl_dispatch_functions_end)) diff --git a/src/mapi/glapi/glapitable.h b/src/mapi/glapi/glapitable.h index 4bc95cf9446..857aef35a18 100644 --- a/src/mapi/glapi/glapitable.h +++ b/src/mapi/glapi/glapitable.h @@ -641,382 +641,384 @@ struct _glapi_table void (GLAPIENTRYP BlendEquationiARB)(GLuint buf, GLenum mode); /* 598 */ void (GLAPIENTRYP BlendFuncSeparateiARB)(GLuint buf, GLenum srcRGB, GLenum dstRGB, GLenum srcA, GLenum dstA); /* 599 */ void (GLAPIENTRYP BlendFunciARB)(GLuint buf, GLenum src, GLenum dst); /* 600 */ - void (GLAPIENTRYP BindSampler)(GLuint unit, GLuint sampler); /* 601 */ - void (GLAPIENTRYP DeleteSamplers)(GLsizei count, const GLuint * samplers); /* 602 */ - void (GLAPIENTRYP GenSamplers)(GLsizei count, GLuint * samplers); /* 603 */ - void (GLAPIENTRYP GetSamplerParameterIiv)(GLuint sampler, GLenum pname, GLint * params); /* 604 */ - void (GLAPIENTRYP GetSamplerParameterIuiv)(GLuint sampler, GLenum pname, GLuint * params); /* 605 */ - void (GLAPIENTRYP GetSamplerParameterfv)(GLuint sampler, GLenum pname, GLfloat * params); /* 606 */ - void (GLAPIENTRYP GetSamplerParameteriv)(GLuint sampler, GLenum pname, GLint * params); /* 607 */ - GLboolean (GLAPIENTRYP IsSampler)(GLuint sampler); /* 608 */ - void (GLAPIENTRYP SamplerParameterIiv)(GLuint sampler, GLenum pname, const GLint * params); /* 609 */ - void (GLAPIENTRYP SamplerParameterIuiv)(GLuint sampler, GLenum pname, const GLuint * params); /* 610 */ - void (GLAPIENTRYP SamplerParameterf)(GLuint sampler, GLenum pname, GLfloat param); /* 611 */ - void (GLAPIENTRYP SamplerParameterfv)(GLuint sampler, GLenum pname, const GLfloat * params); /* 612 */ - void (GLAPIENTRYP SamplerParameteri)(GLuint sampler, GLenum pname, GLint param); /* 613 */ - void (GLAPIENTRYP SamplerParameteriv)(GLuint sampler, GLenum pname, const GLint * params); /* 614 */ - void (GLAPIENTRYP ColorP3ui)(GLenum type, GLuint color); /* 615 */ - void (GLAPIENTRYP ColorP3uiv)(GLenum type, const GLuint * color); /* 616 */ - void (GLAPIENTRYP ColorP4ui)(GLenum type, GLuint color); /* 617 */ - void (GLAPIENTRYP ColorP4uiv)(GLenum type, const GLuint * color); /* 618 */ - void (GLAPIENTRYP MultiTexCoordP1ui)(GLenum texture, GLenum type, GLuint coords); /* 619 */ - void (GLAPIENTRYP MultiTexCoordP1uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 620 */ - void (GLAPIENTRYP MultiTexCoordP2ui)(GLenum texture, GLenum type, GLuint coords); /* 621 */ - void (GLAPIENTRYP MultiTexCoordP2uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 622 */ - void (GLAPIENTRYP MultiTexCoordP3ui)(GLenum texture, GLenum type, GLuint coords); /* 623 */ - void (GLAPIENTRYP MultiTexCoordP3uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 624 */ - void (GLAPIENTRYP MultiTexCoordP4ui)(GLenum texture, GLenum type, GLuint coords); /* 625 */ - void (GLAPIENTRYP MultiTexCoordP4uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 626 */ - void (GLAPIENTRYP NormalP3ui)(GLenum type, GLuint coords); /* 627 */ - void (GLAPIENTRYP NormalP3uiv)(GLenum type, const GLuint * coords); /* 628 */ - void (GLAPIENTRYP SecondaryColorP3ui)(GLenum type, GLuint color); /* 629 */ - void (GLAPIENTRYP SecondaryColorP3uiv)(GLenum type, const GLuint * color); /* 630 */ - void (GLAPIENTRYP TexCoordP1ui)(GLenum type, GLuint coords); /* 631 */ - void (GLAPIENTRYP TexCoordP1uiv)(GLenum type, const GLuint * coords); /* 632 */ - void (GLAPIENTRYP TexCoordP2ui)(GLenum type, GLuint coords); /* 633 */ - void (GLAPIENTRYP TexCoordP2uiv)(GLenum type, const GLuint * coords); /* 634 */ - void (GLAPIENTRYP TexCoordP3ui)(GLenum type, GLuint coords); /* 635 */ - void (GLAPIENTRYP TexCoordP3uiv)(GLenum type, const GLuint * coords); /* 636 */ - void (GLAPIENTRYP TexCoordP4ui)(GLenum type, GLuint coords); /* 637 */ - void (GLAPIENTRYP TexCoordP4uiv)(GLenum type, const GLuint * coords); /* 638 */ - void (GLAPIENTRYP VertexAttribP1ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 639 */ - void (GLAPIENTRYP VertexAttribP1uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 640 */ - void (GLAPIENTRYP VertexAttribP2ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 641 */ - void (GLAPIENTRYP VertexAttribP2uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 642 */ - void (GLAPIENTRYP VertexAttribP3ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 643 */ - void (GLAPIENTRYP VertexAttribP3uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 644 */ - void (GLAPIENTRYP VertexAttribP4ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 645 */ - void (GLAPIENTRYP VertexAttribP4uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 646 */ - void (GLAPIENTRYP VertexP2ui)(GLenum type, GLuint value); /* 647 */ - void (GLAPIENTRYP VertexP2uiv)(GLenum type, const GLuint * value); /* 648 */ - void (GLAPIENTRYP VertexP3ui)(GLenum type, GLuint value); /* 649 */ - void (GLAPIENTRYP VertexP3uiv)(GLenum type, const GLuint * value); /* 650 */ - void (GLAPIENTRYP VertexP4ui)(GLenum type, GLuint value); /* 651 */ - void (GLAPIENTRYP VertexP4uiv)(GLenum type, const GLuint * value); /* 652 */ - void (GLAPIENTRYP BindTransformFeedback)(GLenum target, GLuint id); /* 653 */ - void (GLAPIENTRYP DeleteTransformFeedbacks)(GLsizei n, const GLuint * ids); /* 654 */ - void (GLAPIENTRYP DrawTransformFeedback)(GLenum mode, GLuint id); /* 655 */ - void (GLAPIENTRYP GenTransformFeedbacks)(GLsizei n, GLuint * ids); /* 656 */ - GLboolean (GLAPIENTRYP IsTransformFeedback)(GLuint id); /* 657 */ - void (GLAPIENTRYP PauseTransformFeedback)(void); /* 658 */ - void (GLAPIENTRYP ResumeTransformFeedback)(void); /* 659 */ - void (GLAPIENTRYP ClearDepthf)(GLclampf depth); /* 660 */ - void (GLAPIENTRYP DepthRangef)(GLclampf zNear, GLclampf zFar); /* 661 */ - void (GLAPIENTRYP GetShaderPrecisionFormat)(GLenum shadertype, GLenum precisiontype, GLint * range, GLint * precision); /* 662 */ - void (GLAPIENTRYP ReleaseShaderCompiler)(void); /* 663 */ - void (GLAPIENTRYP ShaderBinary)(GLsizei n, const GLuint * shaders, GLenum binaryformat, const GLvoid * binary, GLsizei length); /* 664 */ - void (GLAPIENTRYP DebugMessageCallbackARB)(GLDEBUGPROCARB callback, GLvoid * userParam); /* 665 */ - void (GLAPIENTRYP DebugMessageControlARB)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint * ids, GLboolean enabled); /* 666 */ - void (GLAPIENTRYP DebugMessageInsertARB)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLcharARB * buf); /* 667 */ - GLuint (GLAPIENTRYP GetDebugMessageLogARB)(GLuint count, GLsizei bufsize, GLenum * sources, GLenum * types, GLuint * ids, GLenum * severities, GLsizei * lengths, GLcharARB * messageLog); /* 668 */ - GLenum (GLAPIENTRYP GetGraphicsResetStatusARB)(void); /* 669 */ - void (GLAPIENTRYP GetnColorTableARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid * table); /* 670 */ - void (GLAPIENTRYP GetnCompressedTexImageARB)(GLenum target, GLint lod, GLsizei bufSize, GLvoid * img); /* 671 */ - void (GLAPIENTRYP GetnConvolutionFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid * image); /* 672 */ - void (GLAPIENTRYP GetnHistogramARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid * values); /* 673 */ - void (GLAPIENTRYP GetnMapdvARB)(GLenum target, GLenum query, GLsizei bufSize, GLdouble * v); /* 674 */ - void (GLAPIENTRYP GetnMapfvARB)(GLenum target, GLenum query, GLsizei bufSize, GLfloat * v); /* 675 */ - void (GLAPIENTRYP GetnMapivARB)(GLenum target, GLenum query, GLsizei bufSize, GLint * v); /* 676 */ - void (GLAPIENTRYP GetnMinmaxARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid * values); /* 677 */ - void (GLAPIENTRYP GetnPixelMapfvARB)(GLenum map, GLsizei bufSize, GLfloat * values); /* 678 */ - void (GLAPIENTRYP GetnPixelMapuivARB)(GLenum map, GLsizei bufSize, GLuint * values); /* 679 */ - void (GLAPIENTRYP GetnPixelMapusvARB)(GLenum map, GLsizei bufSize, GLushort * values); /* 680 */ - void (GLAPIENTRYP GetnPolygonStippleARB)(GLsizei bufSize, GLubyte * pattern); /* 681 */ - void (GLAPIENTRYP GetnSeparableFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid * row, GLsizei columnBufSize, GLvoid * column, GLvoid * span); /* 682 */ - void (GLAPIENTRYP GetnTexImageARB)(GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid * img); /* 683 */ - void (GLAPIENTRYP GetnUniformdvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLdouble * params); /* 684 */ - void (GLAPIENTRYP GetnUniformfvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLfloat * params); /* 685 */ - void (GLAPIENTRYP GetnUniformivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLint * params); /* 686 */ - void (GLAPIENTRYP GetnUniformuivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLuint * params); /* 687 */ - void (GLAPIENTRYP ReadnPixelsARB)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid * data); /* 688 */ - void (GLAPIENTRYP TexStorage1D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width); /* 689 */ - void (GLAPIENTRYP TexStorage2D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); /* 690 */ - void (GLAPIENTRYP TexStorage3D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); /* 691 */ - void (GLAPIENTRYP TextureStorage1DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width); /* 692 */ - void (GLAPIENTRYP TextureStorage2DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); /* 693 */ - void (GLAPIENTRYP TextureStorage3DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); /* 694 */ - void (GLAPIENTRYP PolygonOffsetEXT)(GLfloat factor, GLfloat bias); /* 695 */ - void (GLAPIENTRYP GetPixelTexGenParameterfvSGIS)(GLenum pname, GLfloat * params); /* 696 */ - void (GLAPIENTRYP GetPixelTexGenParameterivSGIS)(GLenum pname, GLint * params); /* 697 */ - void (GLAPIENTRYP PixelTexGenParameterfSGIS)(GLenum pname, GLfloat param); /* 698 */ - void (GLAPIENTRYP PixelTexGenParameterfvSGIS)(GLenum pname, const GLfloat * params); /* 699 */ - void (GLAPIENTRYP PixelTexGenParameteriSGIS)(GLenum pname, GLint param); /* 700 */ - void (GLAPIENTRYP PixelTexGenParameterivSGIS)(GLenum pname, const GLint * params); /* 701 */ - void (GLAPIENTRYP SampleMaskSGIS)(GLclampf value, GLboolean invert); /* 702 */ - void (GLAPIENTRYP SamplePatternSGIS)(GLenum pattern); /* 703 */ - void (GLAPIENTRYP ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 704 */ - void (GLAPIENTRYP EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean * pointer); /* 705 */ - void (GLAPIENTRYP IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 706 */ - void (GLAPIENTRYP NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 707 */ - void (GLAPIENTRYP TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 708 */ - void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 709 */ - void (GLAPIENTRYP PointParameterfEXT)(GLenum pname, GLfloat param); /* 710 */ - void (GLAPIENTRYP PointParameterfvEXT)(GLenum pname, const GLfloat * params); /* 711 */ - void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 712 */ - void (GLAPIENTRYP UnlockArraysEXT)(void); /* 713 */ - void (GLAPIENTRYP SecondaryColor3bEXT)(GLbyte red, GLbyte green, GLbyte blue); /* 714 */ - void (GLAPIENTRYP SecondaryColor3bvEXT)(const GLbyte * v); /* 715 */ - void (GLAPIENTRYP SecondaryColor3dEXT)(GLdouble red, GLdouble green, GLdouble blue); /* 716 */ - void (GLAPIENTRYP SecondaryColor3dvEXT)(const GLdouble * v); /* 717 */ - void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 718 */ - void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 719 */ - void (GLAPIENTRYP SecondaryColor3iEXT)(GLint red, GLint green, GLint blue); /* 720 */ - void (GLAPIENTRYP SecondaryColor3ivEXT)(const GLint * v); /* 721 */ - void (GLAPIENTRYP SecondaryColor3sEXT)(GLshort red, GLshort green, GLshort blue); /* 722 */ - void (GLAPIENTRYP SecondaryColor3svEXT)(const GLshort * v); /* 723 */ - void (GLAPIENTRYP SecondaryColor3ubEXT)(GLubyte red, GLubyte green, GLubyte blue); /* 724 */ - void (GLAPIENTRYP SecondaryColor3ubvEXT)(const GLubyte * v); /* 725 */ - void (GLAPIENTRYP SecondaryColor3uiEXT)(GLuint red, GLuint green, GLuint blue); /* 726 */ - void (GLAPIENTRYP SecondaryColor3uivEXT)(const GLuint * v); /* 727 */ - void (GLAPIENTRYP SecondaryColor3usEXT)(GLushort red, GLushort green, GLushort blue); /* 728 */ - void (GLAPIENTRYP SecondaryColor3usvEXT)(const GLushort * v); /* 729 */ - void (GLAPIENTRYP SecondaryColorPointerEXT)(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 730 */ - void (GLAPIENTRYP MultiDrawArraysEXT)(GLenum mode, const GLint * first, const GLsizei * count, GLsizei primcount); /* 731 */ - void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount); /* 732 */ - void (GLAPIENTRYP FogCoordPointerEXT)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 733 */ - void (GLAPIENTRYP FogCoorddEXT)(GLdouble coord); /* 734 */ - void (GLAPIENTRYP FogCoorddvEXT)(const GLdouble * coord); /* 735 */ - void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 736 */ - void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 737 */ - void (GLAPIENTRYP PixelTexGenSGIX)(GLenum mode); /* 738 */ - void (GLAPIENTRYP BlendFuncSeparateEXT)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); /* 739 */ - void (GLAPIENTRYP FlushVertexArrayRangeNV)(void); /* 740 */ - void (GLAPIENTRYP VertexArrayRangeNV)(GLsizei length, const GLvoid * pointer); /* 741 */ - void (GLAPIENTRYP CombinerInputNV)(GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 742 */ - void (GLAPIENTRYP CombinerOutputNV)(GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); /* 743 */ - void (GLAPIENTRYP CombinerParameterfNV)(GLenum pname, GLfloat param); /* 744 */ - void (GLAPIENTRYP CombinerParameterfvNV)(GLenum pname, const GLfloat * params); /* 745 */ - void (GLAPIENTRYP CombinerParameteriNV)(GLenum pname, GLint param); /* 746 */ - void (GLAPIENTRYP CombinerParameterivNV)(GLenum pname, const GLint * params); /* 747 */ - void (GLAPIENTRYP FinalCombinerInputNV)(GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 748 */ - void (GLAPIENTRYP GetCombinerInputParameterfvNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat * params); /* 749 */ - void (GLAPIENTRYP GetCombinerInputParameterivNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint * params); /* 750 */ - void (GLAPIENTRYP GetCombinerOutputParameterfvNV)(GLenum stage, GLenum portion, GLenum pname, GLfloat * params); /* 751 */ - void (GLAPIENTRYP GetCombinerOutputParameterivNV)(GLenum stage, GLenum portion, GLenum pname, GLint * params); /* 752 */ - void (GLAPIENTRYP GetFinalCombinerInputParameterfvNV)(GLenum variable, GLenum pname, GLfloat * params); /* 753 */ - void (GLAPIENTRYP GetFinalCombinerInputParameterivNV)(GLenum variable, GLenum pname, GLint * params); /* 754 */ - void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 755 */ - void (GLAPIENTRYP WindowPos2dMESA)(GLdouble x, GLdouble y); /* 756 */ - void (GLAPIENTRYP WindowPos2dvMESA)(const GLdouble * v); /* 757 */ - void (GLAPIENTRYP WindowPos2fMESA)(GLfloat x, GLfloat y); /* 758 */ - void (GLAPIENTRYP WindowPos2fvMESA)(const GLfloat * v); /* 759 */ - void (GLAPIENTRYP WindowPos2iMESA)(GLint x, GLint y); /* 760 */ - void (GLAPIENTRYP WindowPos2ivMESA)(const GLint * v); /* 761 */ - void (GLAPIENTRYP WindowPos2sMESA)(GLshort x, GLshort y); /* 762 */ - void (GLAPIENTRYP WindowPos2svMESA)(const GLshort * v); /* 763 */ - void (GLAPIENTRYP WindowPos3dMESA)(GLdouble x, GLdouble y, GLdouble z); /* 764 */ - void (GLAPIENTRYP WindowPos3dvMESA)(const GLdouble * v); /* 765 */ - void (GLAPIENTRYP WindowPos3fMESA)(GLfloat x, GLfloat y, GLfloat z); /* 766 */ - void (GLAPIENTRYP WindowPos3fvMESA)(const GLfloat * v); /* 767 */ - void (GLAPIENTRYP WindowPos3iMESA)(GLint x, GLint y, GLint z); /* 768 */ - void (GLAPIENTRYP WindowPos3ivMESA)(const GLint * v); /* 769 */ - void (GLAPIENTRYP WindowPos3sMESA)(GLshort x, GLshort y, GLshort z); /* 770 */ - void (GLAPIENTRYP WindowPos3svMESA)(const GLshort * v); /* 771 */ - void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 772 */ - void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 773 */ - void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 774 */ - void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 775 */ - void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 776 */ - void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 777 */ - void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 778 */ - void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 779 */ - void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 780 */ - void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 781 */ - void (GLAPIENTRYP DeleteFencesNV)(GLsizei n, const GLuint * fences); /* 782 */ - void (GLAPIENTRYP FinishFenceNV)(GLuint fence); /* 783 */ - void (GLAPIENTRYP GenFencesNV)(GLsizei n, GLuint * fences); /* 784 */ - void (GLAPIENTRYP GetFenceivNV)(GLuint fence, GLenum pname, GLint * params); /* 785 */ - GLboolean (GLAPIENTRYP IsFenceNV)(GLuint fence); /* 786 */ - void (GLAPIENTRYP SetFenceNV)(GLuint fence, GLenum condition); /* 787 */ - GLboolean (GLAPIENTRYP TestFenceNV)(GLuint fence); /* 788 */ - GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 789 */ - void (GLAPIENTRYP BindProgramNV)(GLenum target, GLuint program); /* 790 */ - void (GLAPIENTRYP DeleteProgramsNV)(GLsizei n, const GLuint * programs); /* 791 */ - void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 792 */ - void (GLAPIENTRYP GenProgramsNV)(GLsizei n, GLuint * programs); /* 793 */ - void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 794 */ - void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 795 */ - void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 796 */ - void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 797 */ - void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 798 */ - void (GLAPIENTRYP GetVertexAttribPointervNV)(GLuint index, GLenum pname, GLvoid ** pointer); /* 799 */ - void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 800 */ - void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 801 */ - void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 802 */ - GLboolean (GLAPIENTRYP IsProgramNV)(GLuint program); /* 803 */ - void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 804 */ - void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLsizei num, const GLdouble * params); /* 805 */ - void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLsizei num, const GLfloat * params); /* 806 */ - void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 807 */ - void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 808 */ - void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 809 */ - void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 810 */ - void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 811 */ - void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 812 */ - void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 813 */ - void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 814 */ - void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 815 */ - void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 816 */ - void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 817 */ - void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 818 */ - void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 819 */ - void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 820 */ - void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 821 */ - void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 822 */ - void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 823 */ - void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 824 */ - void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 825 */ - void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 826 */ - void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 827 */ - void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 828 */ - void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 829 */ - void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 830 */ - void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 831 */ - void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 832 */ - void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 833 */ - void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 834 */ - void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 835 */ - void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 836 */ - void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 837 */ - void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 838 */ - void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 839 */ - void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 840 */ - void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 841 */ - void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 842 */ - void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 843 */ - void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 844 */ - void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 845 */ - void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 846 */ - void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 847 */ - void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 848 */ - void (GLAPIENTRYP GetTexBumpParameterfvATI)(GLenum pname, GLfloat * param); /* 849 */ - void (GLAPIENTRYP GetTexBumpParameterivATI)(GLenum pname, GLint * param); /* 850 */ - void (GLAPIENTRYP TexBumpParameterfvATI)(GLenum pname, const GLfloat * param); /* 851 */ - void (GLAPIENTRYP TexBumpParameterivATI)(GLenum pname, const GLint * param); /* 852 */ - void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 853 */ - void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 854 */ - 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); /* 855 */ - void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 856 */ - void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 857 */ - void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 858 */ - void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 859 */ - 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); /* 860 */ - void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 861 */ - void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 862 */ - GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 863 */ - void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 864 */ - void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 865 */ - void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 866 */ - void (GLAPIENTRYP PointParameteriNV)(GLenum pname, GLint param); /* 867 */ - void (GLAPIENTRYP PointParameterivNV)(GLenum pname, const GLint * params); /* 868 */ - void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 869 */ - void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 870 */ - void (GLAPIENTRYP DeleteVertexArraysAPPLE)(GLsizei n, const GLuint * arrays); /* 871 */ - void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 872 */ - GLboolean (GLAPIENTRYP IsVertexArrayAPPLE)(GLuint array); /* 873 */ - void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 874 */ - void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 875 */ - void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 876 */ - void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 877 */ - void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 878 */ - void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 879 */ - void (GLAPIENTRYP PrimitiveRestartIndexNV)(GLuint index); /* 880 */ - void (GLAPIENTRYP PrimitiveRestartNV)(void); /* 881 */ - void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 882 */ - void (GLAPIENTRYP BlendEquationSeparateEXT)(GLenum modeRGB, GLenum modeA); /* 883 */ - void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 884 */ - void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 885 */ - GLenum (GLAPIENTRYP CheckFramebufferStatusEXT)(GLenum target); /* 886 */ - void (GLAPIENTRYP DeleteFramebuffersEXT)(GLsizei n, const GLuint * framebuffers); /* 887 */ - void (GLAPIENTRYP DeleteRenderbuffersEXT)(GLsizei n, const GLuint * renderbuffers); /* 888 */ - void (GLAPIENTRYP FramebufferRenderbufferEXT)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); /* 889 */ - void (GLAPIENTRYP FramebufferTexture1DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 890 */ - void (GLAPIENTRYP FramebufferTexture2DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 891 */ - void (GLAPIENTRYP FramebufferTexture3DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); /* 892 */ - void (GLAPIENTRYP GenFramebuffersEXT)(GLsizei n, GLuint * framebuffers); /* 893 */ - void (GLAPIENTRYP GenRenderbuffersEXT)(GLsizei n, GLuint * renderbuffers); /* 894 */ - void (GLAPIENTRYP GenerateMipmapEXT)(GLenum target); /* 895 */ - void (GLAPIENTRYP GetFramebufferAttachmentParameterivEXT)(GLenum target, GLenum attachment, GLenum pname, GLint * params); /* 896 */ - void (GLAPIENTRYP GetRenderbufferParameterivEXT)(GLenum target, GLenum pname, GLint * params); /* 897 */ - GLboolean (GLAPIENTRYP IsFramebufferEXT)(GLuint framebuffer); /* 898 */ - GLboolean (GLAPIENTRYP IsRenderbufferEXT)(GLuint renderbuffer); /* 899 */ - void (GLAPIENTRYP RenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); /* 900 */ - void (GLAPIENTRYP BlitFramebufferEXT)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); /* 901 */ - void (GLAPIENTRYP BufferParameteriAPPLE)(GLenum target, GLenum pname, GLint param); /* 902 */ - void (GLAPIENTRYP FlushMappedBufferRangeAPPLE)(GLenum target, GLintptr offset, GLsizeiptr size); /* 903 */ - void (GLAPIENTRYP BindFragDataLocationEXT)(GLuint program, GLuint colorNumber, const GLchar * name); /* 904 */ - GLint (GLAPIENTRYP GetFragDataLocationEXT)(GLuint program, const GLchar * name); /* 905 */ - void (GLAPIENTRYP GetUniformuivEXT)(GLuint program, GLint location, GLuint * params); /* 906 */ - void (GLAPIENTRYP GetVertexAttribIivEXT)(GLuint index, GLenum pname, GLint * params); /* 907 */ - void (GLAPIENTRYP GetVertexAttribIuivEXT)(GLuint index, GLenum pname, GLuint * params); /* 908 */ - void (GLAPIENTRYP Uniform1uiEXT)(GLint location, GLuint x); /* 909 */ - void (GLAPIENTRYP Uniform1uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 910 */ - void (GLAPIENTRYP Uniform2uiEXT)(GLint location, GLuint x, GLuint y); /* 911 */ - void (GLAPIENTRYP Uniform2uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 912 */ - void (GLAPIENTRYP Uniform3uiEXT)(GLint location, GLuint x, GLuint y, GLuint z); /* 913 */ - void (GLAPIENTRYP Uniform3uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 914 */ - void (GLAPIENTRYP Uniform4uiEXT)(GLint location, GLuint x, GLuint y, GLuint z, GLuint w); /* 915 */ - void (GLAPIENTRYP Uniform4uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 916 */ - void (GLAPIENTRYP VertexAttribI1iEXT)(GLuint index, GLint x); /* 917 */ - void (GLAPIENTRYP VertexAttribI1ivEXT)(GLuint index, const GLint * v); /* 918 */ - void (GLAPIENTRYP VertexAttribI1uiEXT)(GLuint index, GLuint x); /* 919 */ - void (GLAPIENTRYP VertexAttribI1uivEXT)(GLuint index, const GLuint * v); /* 920 */ - void (GLAPIENTRYP VertexAttribI2iEXT)(GLuint index, GLint x, GLint y); /* 921 */ - void (GLAPIENTRYP VertexAttribI2ivEXT)(GLuint index, const GLint * v); /* 922 */ - void (GLAPIENTRYP VertexAttribI2uiEXT)(GLuint index, GLuint x, GLuint y); /* 923 */ - void (GLAPIENTRYP VertexAttribI2uivEXT)(GLuint index, const GLuint * v); /* 924 */ - void (GLAPIENTRYP VertexAttribI3iEXT)(GLuint index, GLint x, GLint y, GLint z); /* 925 */ - void (GLAPIENTRYP VertexAttribI3ivEXT)(GLuint index, const GLint * v); /* 926 */ - void (GLAPIENTRYP VertexAttribI3uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z); /* 927 */ - void (GLAPIENTRYP VertexAttribI3uivEXT)(GLuint index, const GLuint * v); /* 928 */ - void (GLAPIENTRYP VertexAttribI4bvEXT)(GLuint index, const GLbyte * v); /* 929 */ - void (GLAPIENTRYP VertexAttribI4iEXT)(GLuint index, GLint x, GLint y, GLint z, GLint w); /* 930 */ - void (GLAPIENTRYP VertexAttribI4ivEXT)(GLuint index, const GLint * v); /* 931 */ - void (GLAPIENTRYP VertexAttribI4svEXT)(GLuint index, const GLshort * v); /* 932 */ - void (GLAPIENTRYP VertexAttribI4ubvEXT)(GLuint index, const GLubyte * v); /* 933 */ - void (GLAPIENTRYP VertexAttribI4uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); /* 934 */ - void (GLAPIENTRYP VertexAttribI4uivEXT)(GLuint index, const GLuint * v); /* 935 */ - void (GLAPIENTRYP VertexAttribI4usvEXT)(GLuint index, const GLushort * v); /* 936 */ - void (GLAPIENTRYP VertexAttribIPointerEXT)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 937 */ - void (GLAPIENTRYP FramebufferTextureLayerEXT)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); /* 938 */ - void (GLAPIENTRYP ColorMaskIndexedEXT)(GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a); /* 939 */ - void (GLAPIENTRYP DisableIndexedEXT)(GLenum target, GLuint index); /* 940 */ - void (GLAPIENTRYP EnableIndexedEXT)(GLenum target, GLuint index); /* 941 */ - void (GLAPIENTRYP GetBooleanIndexedvEXT)(GLenum value, GLuint index, GLboolean * data); /* 942 */ - void (GLAPIENTRYP GetIntegerIndexedvEXT)(GLenum value, GLuint index, GLint * data); /* 943 */ - GLboolean (GLAPIENTRYP IsEnabledIndexedEXT)(GLenum target, GLuint index); /* 944 */ - void (GLAPIENTRYP ClearColorIiEXT)(GLint r, GLint g, GLint b, GLint a); /* 945 */ - void (GLAPIENTRYP ClearColorIuiEXT)(GLuint r, GLuint g, GLuint b, GLuint a); /* 946 */ - void (GLAPIENTRYP GetTexParameterIivEXT)(GLenum target, GLenum pname, GLint * params); /* 947 */ - void (GLAPIENTRYP GetTexParameterIuivEXT)(GLenum target, GLenum pname, GLuint * params); /* 948 */ - void (GLAPIENTRYP TexParameterIivEXT)(GLenum target, GLenum pname, const GLint * params); /* 949 */ - void (GLAPIENTRYP TexParameterIuivEXT)(GLenum target, GLenum pname, const GLuint * params); /* 950 */ - void (GLAPIENTRYP BeginConditionalRenderNV)(GLuint query, GLenum mode); /* 951 */ - void (GLAPIENTRYP EndConditionalRenderNV)(void); /* 952 */ - void (GLAPIENTRYP BeginTransformFeedbackEXT)(GLenum mode); /* 953 */ - void (GLAPIENTRYP BindBufferBaseEXT)(GLenum target, GLuint index, GLuint buffer); /* 954 */ - void (GLAPIENTRYP BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset); /* 955 */ - void (GLAPIENTRYP BindBufferRangeEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); /* 956 */ - void (GLAPIENTRYP EndTransformFeedbackEXT)(void); /* 957 */ - void (GLAPIENTRYP GetTransformFeedbackVaryingEXT)(GLuint program, GLuint index, GLsizei bufSize, GLsizei * length, GLsizei * size, GLenum * type, GLchar * name); /* 958 */ - void (GLAPIENTRYP TransformFeedbackVaryingsEXT)(GLuint program, GLsizei count, const char ** varyings, GLenum bufferMode); /* 959 */ - void (GLAPIENTRYP ProvokingVertexEXT)(GLenum mode); /* 960 */ - void (GLAPIENTRYP GetTexParameterPointervAPPLE)(GLenum target, GLenum pname, GLvoid ** params); /* 961 */ - void (GLAPIENTRYP TextureRangeAPPLE)(GLenum target, GLsizei length, GLvoid * pointer); /* 962 */ - void (GLAPIENTRYP GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint * value); /* 963 */ - GLenum (GLAPIENTRYP ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 964 */ - GLenum (GLAPIENTRYP ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 965 */ - void (GLAPIENTRYP ActiveProgramEXT)(GLuint program); /* 966 */ - GLuint (GLAPIENTRYP CreateShaderProgramEXT)(GLenum type, const GLchar * string); /* 967 */ - void (GLAPIENTRYP UseShaderProgramEXT)(GLenum type, GLuint program); /* 968 */ - void (GLAPIENTRYP TextureBarrierNV)(void); /* 969 */ - void (GLAPIENTRYP StencilFuncSeparateATI)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); /* 970 */ - void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 971 */ - void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 972 */ - void (GLAPIENTRYP GetQueryObjecti64vEXT)(GLuint id, GLenum pname, GLint64EXT * params); /* 973 */ - void (GLAPIENTRYP GetQueryObjectui64vEXT)(GLuint id, GLenum pname, GLuint64EXT * params); /* 974 */ - void (GLAPIENTRYP EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid * writeOffset); /* 975 */ - void (GLAPIENTRYP EGLImageTargetTexture2DOES)(GLenum target, GLvoid * writeOffset); /* 976 */ + void (GLAPIENTRYP BindFragDataLocationIndexed)(GLuint program, GLuint colorNumber, GLuint index, const GLchar * name); /* 601 */ + GLint (GLAPIENTRYP GetFragDataIndex)(GLuint program, const GLchar * name); /* 602 */ + void (GLAPIENTRYP BindSampler)(GLuint unit, GLuint sampler); /* 603 */ + void (GLAPIENTRYP DeleteSamplers)(GLsizei count, const GLuint * samplers); /* 604 */ + void (GLAPIENTRYP GenSamplers)(GLsizei count, GLuint * samplers); /* 605 */ + void (GLAPIENTRYP GetSamplerParameterIiv)(GLuint sampler, GLenum pname, GLint * params); /* 606 */ + void (GLAPIENTRYP GetSamplerParameterIuiv)(GLuint sampler, GLenum pname, GLuint * params); /* 607 */ + void (GLAPIENTRYP GetSamplerParameterfv)(GLuint sampler, GLenum pname, GLfloat * params); /* 608 */ + void (GLAPIENTRYP GetSamplerParameteriv)(GLuint sampler, GLenum pname, GLint * params); /* 609 */ + GLboolean (GLAPIENTRYP IsSampler)(GLuint sampler); /* 610 */ + void (GLAPIENTRYP SamplerParameterIiv)(GLuint sampler, GLenum pname, const GLint * params); /* 611 */ + void (GLAPIENTRYP SamplerParameterIuiv)(GLuint sampler, GLenum pname, const GLuint * params); /* 612 */ + void (GLAPIENTRYP SamplerParameterf)(GLuint sampler, GLenum pname, GLfloat param); /* 613 */ + void (GLAPIENTRYP SamplerParameterfv)(GLuint sampler, GLenum pname, const GLfloat * params); /* 614 */ + void (GLAPIENTRYP SamplerParameteri)(GLuint sampler, GLenum pname, GLint param); /* 615 */ + void (GLAPIENTRYP SamplerParameteriv)(GLuint sampler, GLenum pname, const GLint * params); /* 616 */ + void (GLAPIENTRYP ColorP3ui)(GLenum type, GLuint color); /* 617 */ + void (GLAPIENTRYP ColorP3uiv)(GLenum type, const GLuint * color); /* 618 */ + void (GLAPIENTRYP ColorP4ui)(GLenum type, GLuint color); /* 619 */ + void (GLAPIENTRYP ColorP4uiv)(GLenum type, const GLuint * color); /* 620 */ + void (GLAPIENTRYP MultiTexCoordP1ui)(GLenum texture, GLenum type, GLuint coords); /* 621 */ + void (GLAPIENTRYP MultiTexCoordP1uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 622 */ + void (GLAPIENTRYP MultiTexCoordP2ui)(GLenum texture, GLenum type, GLuint coords); /* 623 */ + void (GLAPIENTRYP MultiTexCoordP2uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 624 */ + void (GLAPIENTRYP MultiTexCoordP3ui)(GLenum texture, GLenum type, GLuint coords); /* 625 */ + void (GLAPIENTRYP MultiTexCoordP3uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 626 */ + void (GLAPIENTRYP MultiTexCoordP4ui)(GLenum texture, GLenum type, GLuint coords); /* 627 */ + void (GLAPIENTRYP MultiTexCoordP4uiv)(GLenum texture, GLenum type, const GLuint * coords); /* 628 */ + void (GLAPIENTRYP NormalP3ui)(GLenum type, GLuint coords); /* 629 */ + void (GLAPIENTRYP NormalP3uiv)(GLenum type, const GLuint * coords); /* 630 */ + void (GLAPIENTRYP SecondaryColorP3ui)(GLenum type, GLuint color); /* 631 */ + void (GLAPIENTRYP SecondaryColorP3uiv)(GLenum type, const GLuint * color); /* 632 */ + void (GLAPIENTRYP TexCoordP1ui)(GLenum type, GLuint coords); /* 633 */ + void (GLAPIENTRYP TexCoordP1uiv)(GLenum type, const GLuint * coords); /* 634 */ + void (GLAPIENTRYP TexCoordP2ui)(GLenum type, GLuint coords); /* 635 */ + void (GLAPIENTRYP TexCoordP2uiv)(GLenum type, const GLuint * coords); /* 636 */ + void (GLAPIENTRYP TexCoordP3ui)(GLenum type, GLuint coords); /* 637 */ + void (GLAPIENTRYP TexCoordP3uiv)(GLenum type, const GLuint * coords); /* 638 */ + void (GLAPIENTRYP TexCoordP4ui)(GLenum type, GLuint coords); /* 639 */ + void (GLAPIENTRYP TexCoordP4uiv)(GLenum type, const GLuint * coords); /* 640 */ + void (GLAPIENTRYP VertexAttribP1ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 641 */ + void (GLAPIENTRYP VertexAttribP1uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 642 */ + void (GLAPIENTRYP VertexAttribP2ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 643 */ + void (GLAPIENTRYP VertexAttribP2uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 644 */ + void (GLAPIENTRYP VertexAttribP3ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 645 */ + void (GLAPIENTRYP VertexAttribP3uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 646 */ + void (GLAPIENTRYP VertexAttribP4ui)(GLuint index, GLenum type, GLboolean normalized, GLuint value); /* 647 */ + void (GLAPIENTRYP VertexAttribP4uiv)(GLuint index, GLenum type, GLboolean normalized, const GLuint * value); /* 648 */ + void (GLAPIENTRYP VertexP2ui)(GLenum type, GLuint value); /* 649 */ + void (GLAPIENTRYP VertexP2uiv)(GLenum type, const GLuint * value); /* 650 */ + void (GLAPIENTRYP VertexP3ui)(GLenum type, GLuint value); /* 651 */ + void (GLAPIENTRYP VertexP3uiv)(GLenum type, const GLuint * value); /* 652 */ + void (GLAPIENTRYP VertexP4ui)(GLenum type, GLuint value); /* 653 */ + void (GLAPIENTRYP VertexP4uiv)(GLenum type, const GLuint * value); /* 654 */ + void (GLAPIENTRYP BindTransformFeedback)(GLenum target, GLuint id); /* 655 */ + void (GLAPIENTRYP DeleteTransformFeedbacks)(GLsizei n, const GLuint * ids); /* 656 */ + void (GLAPIENTRYP DrawTransformFeedback)(GLenum mode, GLuint id); /* 657 */ + void (GLAPIENTRYP GenTransformFeedbacks)(GLsizei n, GLuint * ids); /* 658 */ + GLboolean (GLAPIENTRYP IsTransformFeedback)(GLuint id); /* 659 */ + void (GLAPIENTRYP PauseTransformFeedback)(void); /* 660 */ + void (GLAPIENTRYP ResumeTransformFeedback)(void); /* 661 */ + void (GLAPIENTRYP ClearDepthf)(GLclampf depth); /* 662 */ + void (GLAPIENTRYP DepthRangef)(GLclampf zNear, GLclampf zFar); /* 663 */ + void (GLAPIENTRYP GetShaderPrecisionFormat)(GLenum shadertype, GLenum precisiontype, GLint * range, GLint * precision); /* 664 */ + void (GLAPIENTRYP ReleaseShaderCompiler)(void); /* 665 */ + void (GLAPIENTRYP ShaderBinary)(GLsizei n, const GLuint * shaders, GLenum binaryformat, const GLvoid * binary, GLsizei length); /* 666 */ + void (GLAPIENTRYP DebugMessageCallbackARB)(GLDEBUGPROCARB callback, GLvoid * userParam); /* 667 */ + void (GLAPIENTRYP DebugMessageControlARB)(GLenum source, GLenum type, GLenum severity, GLsizei count, const GLuint * ids, GLboolean enabled); /* 668 */ + void (GLAPIENTRYP DebugMessageInsertARB)(GLenum source, GLenum type, GLuint id, GLenum severity, GLsizei length, const GLcharARB * buf); /* 669 */ + GLuint (GLAPIENTRYP GetDebugMessageLogARB)(GLuint count, GLsizei bufsize, GLenum * sources, GLenum * types, GLuint * ids, GLenum * severities, GLsizei * lengths, GLcharARB * messageLog); /* 670 */ + GLenum (GLAPIENTRYP GetGraphicsResetStatusARB)(void); /* 671 */ + void (GLAPIENTRYP GetnColorTableARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid * table); /* 672 */ + void (GLAPIENTRYP GetnCompressedTexImageARB)(GLenum target, GLint lod, GLsizei bufSize, GLvoid * img); /* 673 */ + void (GLAPIENTRYP GetnConvolutionFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei bufSize, GLvoid * image); /* 674 */ + void (GLAPIENTRYP GetnHistogramARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid * values); /* 675 */ + void (GLAPIENTRYP GetnMapdvARB)(GLenum target, GLenum query, GLsizei bufSize, GLdouble * v); /* 676 */ + void (GLAPIENTRYP GetnMapfvARB)(GLenum target, GLenum query, GLsizei bufSize, GLfloat * v); /* 677 */ + void (GLAPIENTRYP GetnMapivARB)(GLenum target, GLenum query, GLsizei bufSize, GLint * v); /* 678 */ + void (GLAPIENTRYP GetnMinmaxARB)(GLenum target, GLboolean reset, GLenum format, GLenum type, GLsizei bufSize, GLvoid * values); /* 679 */ + void (GLAPIENTRYP GetnPixelMapfvARB)(GLenum map, GLsizei bufSize, GLfloat * values); /* 680 */ + void (GLAPIENTRYP GetnPixelMapuivARB)(GLenum map, GLsizei bufSize, GLuint * values); /* 681 */ + void (GLAPIENTRYP GetnPixelMapusvARB)(GLenum map, GLsizei bufSize, GLushort * values); /* 682 */ + void (GLAPIENTRYP GetnPolygonStippleARB)(GLsizei bufSize, GLubyte * pattern); /* 683 */ + void (GLAPIENTRYP GetnSeparableFilterARB)(GLenum target, GLenum format, GLenum type, GLsizei rowBufSize, GLvoid * row, GLsizei columnBufSize, GLvoid * column, GLvoid * span); /* 684 */ + void (GLAPIENTRYP GetnTexImageARB)(GLenum target, GLint level, GLenum format, GLenum type, GLsizei bufSize, GLvoid * img); /* 685 */ + void (GLAPIENTRYP GetnUniformdvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLdouble * params); /* 686 */ + void (GLAPIENTRYP GetnUniformfvARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLfloat * params); /* 687 */ + void (GLAPIENTRYP GetnUniformivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLint * params); /* 688 */ + void (GLAPIENTRYP GetnUniformuivARB)(GLhandleARB program, GLint location, GLsizei bufSize, GLuint * params); /* 689 */ + void (GLAPIENTRYP ReadnPixelsARB)(GLint x, GLint y, GLsizei width, GLsizei height, GLenum format, GLenum type, GLsizei bufSize, GLvoid * data); /* 690 */ + void (GLAPIENTRYP TexStorage1D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width); /* 691 */ + void (GLAPIENTRYP TexStorage2D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); /* 692 */ + void (GLAPIENTRYP TexStorage3D)(GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); /* 693 */ + void (GLAPIENTRYP TextureStorage1DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width); /* 694 */ + void (GLAPIENTRYP TextureStorage2DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height); /* 695 */ + void (GLAPIENTRYP TextureStorage3DEXT)(GLuint texture, GLenum target, GLsizei levels, GLenum internalFormat, GLsizei width, GLsizei height, GLsizei depth); /* 696 */ + void (GLAPIENTRYP PolygonOffsetEXT)(GLfloat factor, GLfloat bias); /* 697 */ + void (GLAPIENTRYP GetPixelTexGenParameterfvSGIS)(GLenum pname, GLfloat * params); /* 698 */ + void (GLAPIENTRYP GetPixelTexGenParameterivSGIS)(GLenum pname, GLint * params); /* 699 */ + void (GLAPIENTRYP PixelTexGenParameterfSGIS)(GLenum pname, GLfloat param); /* 700 */ + void (GLAPIENTRYP PixelTexGenParameterfvSGIS)(GLenum pname, const GLfloat * params); /* 701 */ + void (GLAPIENTRYP PixelTexGenParameteriSGIS)(GLenum pname, GLint param); /* 702 */ + void (GLAPIENTRYP PixelTexGenParameterivSGIS)(GLenum pname, const GLint * params); /* 703 */ + void (GLAPIENTRYP SampleMaskSGIS)(GLclampf value, GLboolean invert); /* 704 */ + void (GLAPIENTRYP SamplePatternSGIS)(GLenum pattern); /* 705 */ + void (GLAPIENTRYP ColorPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 706 */ + void (GLAPIENTRYP EdgeFlagPointerEXT)(GLsizei stride, GLsizei count, const GLboolean * pointer); /* 707 */ + void (GLAPIENTRYP IndexPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 708 */ + void (GLAPIENTRYP NormalPointerEXT)(GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 709 */ + void (GLAPIENTRYP TexCoordPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 710 */ + void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 711 */ + void (GLAPIENTRYP PointParameterfEXT)(GLenum pname, GLfloat param); /* 712 */ + void (GLAPIENTRYP PointParameterfvEXT)(GLenum pname, const GLfloat * params); /* 713 */ + void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 714 */ + void (GLAPIENTRYP UnlockArraysEXT)(void); /* 715 */ + void (GLAPIENTRYP SecondaryColor3bEXT)(GLbyte red, GLbyte green, GLbyte blue); /* 716 */ + void (GLAPIENTRYP SecondaryColor3bvEXT)(const GLbyte * v); /* 717 */ + void (GLAPIENTRYP SecondaryColor3dEXT)(GLdouble red, GLdouble green, GLdouble blue); /* 718 */ + void (GLAPIENTRYP SecondaryColor3dvEXT)(const GLdouble * v); /* 719 */ + void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 720 */ + void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 721 */ + void (GLAPIENTRYP SecondaryColor3iEXT)(GLint red, GLint green, GLint blue); /* 722 */ + void (GLAPIENTRYP SecondaryColor3ivEXT)(const GLint * v); /* 723 */ + void (GLAPIENTRYP SecondaryColor3sEXT)(GLshort red, GLshort green, GLshort blue); /* 724 */ + void (GLAPIENTRYP SecondaryColor3svEXT)(const GLshort * v); /* 725 */ + void (GLAPIENTRYP SecondaryColor3ubEXT)(GLubyte red, GLubyte green, GLubyte blue); /* 726 */ + void (GLAPIENTRYP SecondaryColor3ubvEXT)(const GLubyte * v); /* 727 */ + void (GLAPIENTRYP SecondaryColor3uiEXT)(GLuint red, GLuint green, GLuint blue); /* 728 */ + void (GLAPIENTRYP SecondaryColor3uivEXT)(const GLuint * v); /* 729 */ + void (GLAPIENTRYP SecondaryColor3usEXT)(GLushort red, GLushort green, GLushort blue); /* 730 */ + void (GLAPIENTRYP SecondaryColor3usvEXT)(const GLushort * v); /* 731 */ + void (GLAPIENTRYP SecondaryColorPointerEXT)(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 732 */ + void (GLAPIENTRYP MultiDrawArraysEXT)(GLenum mode, const GLint * first, const GLsizei * count, GLsizei primcount); /* 733 */ + void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount); /* 734 */ + void (GLAPIENTRYP FogCoordPointerEXT)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 735 */ + void (GLAPIENTRYP FogCoorddEXT)(GLdouble coord); /* 736 */ + void (GLAPIENTRYP FogCoorddvEXT)(const GLdouble * coord); /* 737 */ + void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 738 */ + void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 739 */ + void (GLAPIENTRYP PixelTexGenSGIX)(GLenum mode); /* 740 */ + void (GLAPIENTRYP BlendFuncSeparateEXT)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); /* 741 */ + void (GLAPIENTRYP FlushVertexArrayRangeNV)(void); /* 742 */ + void (GLAPIENTRYP VertexArrayRangeNV)(GLsizei length, const GLvoid * pointer); /* 743 */ + void (GLAPIENTRYP CombinerInputNV)(GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 744 */ + void (GLAPIENTRYP CombinerOutputNV)(GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); /* 745 */ + void (GLAPIENTRYP CombinerParameterfNV)(GLenum pname, GLfloat param); /* 746 */ + void (GLAPIENTRYP CombinerParameterfvNV)(GLenum pname, const GLfloat * params); /* 747 */ + void (GLAPIENTRYP CombinerParameteriNV)(GLenum pname, GLint param); /* 748 */ + void (GLAPIENTRYP CombinerParameterivNV)(GLenum pname, const GLint * params); /* 749 */ + void (GLAPIENTRYP FinalCombinerInputNV)(GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 750 */ + void (GLAPIENTRYP GetCombinerInputParameterfvNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat * params); /* 751 */ + void (GLAPIENTRYP GetCombinerInputParameterivNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint * params); /* 752 */ + void (GLAPIENTRYP GetCombinerOutputParameterfvNV)(GLenum stage, GLenum portion, GLenum pname, GLfloat * params); /* 753 */ + void (GLAPIENTRYP GetCombinerOutputParameterivNV)(GLenum stage, GLenum portion, GLenum pname, GLint * params); /* 754 */ + void (GLAPIENTRYP GetFinalCombinerInputParameterfvNV)(GLenum variable, GLenum pname, GLfloat * params); /* 755 */ + void (GLAPIENTRYP GetFinalCombinerInputParameterivNV)(GLenum variable, GLenum pname, GLint * params); /* 756 */ + void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 757 */ + void (GLAPIENTRYP WindowPos2dMESA)(GLdouble x, GLdouble y); /* 758 */ + void (GLAPIENTRYP WindowPos2dvMESA)(const GLdouble * v); /* 759 */ + void (GLAPIENTRYP WindowPos2fMESA)(GLfloat x, GLfloat y); /* 760 */ + void (GLAPIENTRYP WindowPos2fvMESA)(const GLfloat * v); /* 761 */ + void (GLAPIENTRYP WindowPos2iMESA)(GLint x, GLint y); /* 762 */ + void (GLAPIENTRYP WindowPos2ivMESA)(const GLint * v); /* 763 */ + void (GLAPIENTRYP WindowPos2sMESA)(GLshort x, GLshort y); /* 764 */ + void (GLAPIENTRYP WindowPos2svMESA)(const GLshort * v); /* 765 */ + void (GLAPIENTRYP WindowPos3dMESA)(GLdouble x, GLdouble y, GLdouble z); /* 766 */ + void (GLAPIENTRYP WindowPos3dvMESA)(const GLdouble * v); /* 767 */ + void (GLAPIENTRYP WindowPos3fMESA)(GLfloat x, GLfloat y, GLfloat z); /* 768 */ + void (GLAPIENTRYP WindowPos3fvMESA)(const GLfloat * v); /* 769 */ + void (GLAPIENTRYP WindowPos3iMESA)(GLint x, GLint y, GLint z); /* 770 */ + void (GLAPIENTRYP WindowPos3ivMESA)(const GLint * v); /* 771 */ + void (GLAPIENTRYP WindowPos3sMESA)(GLshort x, GLshort y, GLshort z); /* 772 */ + void (GLAPIENTRYP WindowPos3svMESA)(const GLshort * v); /* 773 */ + void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 774 */ + void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 775 */ + void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 776 */ + void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 777 */ + void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 778 */ + void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 779 */ + void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 780 */ + void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 781 */ + void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 782 */ + void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 783 */ + void (GLAPIENTRYP DeleteFencesNV)(GLsizei n, const GLuint * fences); /* 784 */ + void (GLAPIENTRYP FinishFenceNV)(GLuint fence); /* 785 */ + void (GLAPIENTRYP GenFencesNV)(GLsizei n, GLuint * fences); /* 786 */ + void (GLAPIENTRYP GetFenceivNV)(GLuint fence, GLenum pname, GLint * params); /* 787 */ + GLboolean (GLAPIENTRYP IsFenceNV)(GLuint fence); /* 788 */ + void (GLAPIENTRYP SetFenceNV)(GLuint fence, GLenum condition); /* 789 */ + GLboolean (GLAPIENTRYP TestFenceNV)(GLuint fence); /* 790 */ + GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 791 */ + void (GLAPIENTRYP BindProgramNV)(GLenum target, GLuint program); /* 792 */ + void (GLAPIENTRYP DeleteProgramsNV)(GLsizei n, const GLuint * programs); /* 793 */ + void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 794 */ + void (GLAPIENTRYP GenProgramsNV)(GLsizei n, GLuint * programs); /* 795 */ + void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 796 */ + void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 797 */ + void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 798 */ + void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 799 */ + void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 800 */ + void (GLAPIENTRYP GetVertexAttribPointervNV)(GLuint index, GLenum pname, GLvoid ** pointer); /* 801 */ + void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 802 */ + void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 803 */ + void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 804 */ + GLboolean (GLAPIENTRYP IsProgramNV)(GLuint program); /* 805 */ + void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 806 */ + void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLsizei num, const GLdouble * params); /* 807 */ + void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLsizei num, const GLfloat * params); /* 808 */ + void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 809 */ + void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 810 */ + void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 811 */ + void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 812 */ + void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 813 */ + void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 814 */ + void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 815 */ + void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 816 */ + void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 817 */ + void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 818 */ + void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 819 */ + void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 820 */ + void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 821 */ + void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 822 */ + void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 823 */ + void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 824 */ + void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 825 */ + void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 826 */ + void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 827 */ + void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 828 */ + void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 829 */ + void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 830 */ + void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 831 */ + void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 832 */ + void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 833 */ + void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 834 */ + void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 835 */ + void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 836 */ + void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 837 */ + void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 838 */ + void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 839 */ + void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 840 */ + void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 841 */ + void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 842 */ + void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 843 */ + void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 844 */ + void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 845 */ + void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 846 */ + void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 847 */ + void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 848 */ + void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 849 */ + void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 850 */ + void (GLAPIENTRYP GetTexBumpParameterfvATI)(GLenum pname, GLfloat * param); /* 851 */ + void (GLAPIENTRYP GetTexBumpParameterivATI)(GLenum pname, GLint * param); /* 852 */ + void (GLAPIENTRYP TexBumpParameterfvATI)(GLenum pname, const GLfloat * param); /* 853 */ + void (GLAPIENTRYP TexBumpParameterivATI)(GLenum pname, const GLint * param); /* 854 */ + void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 855 */ + void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 856 */ + 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); /* 857 */ + void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 858 */ + void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 859 */ + void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 860 */ + void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 861 */ + 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); /* 862 */ + void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 863 */ + void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 864 */ + GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 865 */ + void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 866 */ + void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 867 */ + void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 868 */ + void (GLAPIENTRYP PointParameteriNV)(GLenum pname, GLint param); /* 869 */ + void (GLAPIENTRYP PointParameterivNV)(GLenum pname, const GLint * params); /* 870 */ + void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 871 */ + void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 872 */ + void (GLAPIENTRYP DeleteVertexArraysAPPLE)(GLsizei n, const GLuint * arrays); /* 873 */ + void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 874 */ + GLboolean (GLAPIENTRYP IsVertexArrayAPPLE)(GLuint array); /* 875 */ + void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 876 */ + void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 877 */ + void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 878 */ + void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 879 */ + void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 880 */ + void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 881 */ + void (GLAPIENTRYP PrimitiveRestartIndexNV)(GLuint index); /* 882 */ + void (GLAPIENTRYP PrimitiveRestartNV)(void); /* 883 */ + void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 884 */ + void (GLAPIENTRYP BlendEquationSeparateEXT)(GLenum modeRGB, GLenum modeA); /* 885 */ + void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 886 */ + void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 887 */ + GLenum (GLAPIENTRYP CheckFramebufferStatusEXT)(GLenum target); /* 888 */ + void (GLAPIENTRYP DeleteFramebuffersEXT)(GLsizei n, const GLuint * framebuffers); /* 889 */ + void (GLAPIENTRYP DeleteRenderbuffersEXT)(GLsizei n, const GLuint * renderbuffers); /* 890 */ + void (GLAPIENTRYP FramebufferRenderbufferEXT)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); /* 891 */ + void (GLAPIENTRYP FramebufferTexture1DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 892 */ + void (GLAPIENTRYP FramebufferTexture2DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 893 */ + void (GLAPIENTRYP FramebufferTexture3DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); /* 894 */ + void (GLAPIENTRYP GenFramebuffersEXT)(GLsizei n, GLuint * framebuffers); /* 895 */ + void (GLAPIENTRYP GenRenderbuffersEXT)(GLsizei n, GLuint * renderbuffers); /* 896 */ + void (GLAPIENTRYP GenerateMipmapEXT)(GLenum target); /* 897 */ + void (GLAPIENTRYP GetFramebufferAttachmentParameterivEXT)(GLenum target, GLenum attachment, GLenum pname, GLint * params); /* 898 */ + void (GLAPIENTRYP GetRenderbufferParameterivEXT)(GLenum target, GLenum pname, GLint * params); /* 899 */ + GLboolean (GLAPIENTRYP IsFramebufferEXT)(GLuint framebuffer); /* 900 */ + GLboolean (GLAPIENTRYP IsRenderbufferEXT)(GLuint renderbuffer); /* 901 */ + void (GLAPIENTRYP RenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); /* 902 */ + void (GLAPIENTRYP BlitFramebufferEXT)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); /* 903 */ + void (GLAPIENTRYP BufferParameteriAPPLE)(GLenum target, GLenum pname, GLint param); /* 904 */ + void (GLAPIENTRYP FlushMappedBufferRangeAPPLE)(GLenum target, GLintptr offset, GLsizeiptr size); /* 905 */ + void (GLAPIENTRYP BindFragDataLocationEXT)(GLuint program, GLuint colorNumber, const GLchar * name); /* 906 */ + GLint (GLAPIENTRYP GetFragDataLocationEXT)(GLuint program, const GLchar * name); /* 907 */ + void (GLAPIENTRYP GetUniformuivEXT)(GLuint program, GLint location, GLuint * params); /* 908 */ + void (GLAPIENTRYP GetVertexAttribIivEXT)(GLuint index, GLenum pname, GLint * params); /* 909 */ + void (GLAPIENTRYP GetVertexAttribIuivEXT)(GLuint index, GLenum pname, GLuint * params); /* 910 */ + void (GLAPIENTRYP Uniform1uiEXT)(GLint location, GLuint x); /* 911 */ + void (GLAPIENTRYP Uniform1uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 912 */ + void (GLAPIENTRYP Uniform2uiEXT)(GLint location, GLuint x, GLuint y); /* 913 */ + void (GLAPIENTRYP Uniform2uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 914 */ + void (GLAPIENTRYP Uniform3uiEXT)(GLint location, GLuint x, GLuint y, GLuint z); /* 915 */ + void (GLAPIENTRYP Uniform3uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 916 */ + void (GLAPIENTRYP Uniform4uiEXT)(GLint location, GLuint x, GLuint y, GLuint z, GLuint w); /* 917 */ + void (GLAPIENTRYP Uniform4uivEXT)(GLint location, GLsizei count, const GLuint * value); /* 918 */ + void (GLAPIENTRYP VertexAttribI1iEXT)(GLuint index, GLint x); /* 919 */ + void (GLAPIENTRYP VertexAttribI1ivEXT)(GLuint index, const GLint * v); /* 920 */ + void (GLAPIENTRYP VertexAttribI1uiEXT)(GLuint index, GLuint x); /* 921 */ + void (GLAPIENTRYP VertexAttribI1uivEXT)(GLuint index, const GLuint * v); /* 922 */ + void (GLAPIENTRYP VertexAttribI2iEXT)(GLuint index, GLint x, GLint y); /* 923 */ + void (GLAPIENTRYP VertexAttribI2ivEXT)(GLuint index, const GLint * v); /* 924 */ + void (GLAPIENTRYP VertexAttribI2uiEXT)(GLuint index, GLuint x, GLuint y); /* 925 */ + void (GLAPIENTRYP VertexAttribI2uivEXT)(GLuint index, const GLuint * v); /* 926 */ + void (GLAPIENTRYP VertexAttribI3iEXT)(GLuint index, GLint x, GLint y, GLint z); /* 927 */ + void (GLAPIENTRYP VertexAttribI3ivEXT)(GLuint index, const GLint * v); /* 928 */ + void (GLAPIENTRYP VertexAttribI3uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z); /* 929 */ + void (GLAPIENTRYP VertexAttribI3uivEXT)(GLuint index, const GLuint * v); /* 930 */ + void (GLAPIENTRYP VertexAttribI4bvEXT)(GLuint index, const GLbyte * v); /* 931 */ + void (GLAPIENTRYP VertexAttribI4iEXT)(GLuint index, GLint x, GLint y, GLint z, GLint w); /* 932 */ + void (GLAPIENTRYP VertexAttribI4ivEXT)(GLuint index, const GLint * v); /* 933 */ + void (GLAPIENTRYP VertexAttribI4svEXT)(GLuint index, const GLshort * v); /* 934 */ + void (GLAPIENTRYP VertexAttribI4ubvEXT)(GLuint index, const GLubyte * v); /* 935 */ + void (GLAPIENTRYP VertexAttribI4uiEXT)(GLuint index, GLuint x, GLuint y, GLuint z, GLuint w); /* 936 */ + void (GLAPIENTRYP VertexAttribI4uivEXT)(GLuint index, const GLuint * v); /* 937 */ + void (GLAPIENTRYP VertexAttribI4usvEXT)(GLuint index, const GLushort * v); /* 938 */ + void (GLAPIENTRYP VertexAttribIPointerEXT)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 939 */ + void (GLAPIENTRYP FramebufferTextureLayerEXT)(GLenum target, GLenum attachment, GLuint texture, GLint level, GLint layer); /* 940 */ + void (GLAPIENTRYP ColorMaskIndexedEXT)(GLuint buf, GLboolean r, GLboolean g, GLboolean b, GLboolean a); /* 941 */ + void (GLAPIENTRYP DisableIndexedEXT)(GLenum target, GLuint index); /* 942 */ + void (GLAPIENTRYP EnableIndexedEXT)(GLenum target, GLuint index); /* 943 */ + void (GLAPIENTRYP GetBooleanIndexedvEXT)(GLenum value, GLuint index, GLboolean * data); /* 944 */ + void (GLAPIENTRYP GetIntegerIndexedvEXT)(GLenum value, GLuint index, GLint * data); /* 945 */ + GLboolean (GLAPIENTRYP IsEnabledIndexedEXT)(GLenum target, GLuint index); /* 946 */ + void (GLAPIENTRYP ClearColorIiEXT)(GLint r, GLint g, GLint b, GLint a); /* 947 */ + void (GLAPIENTRYP ClearColorIuiEXT)(GLuint r, GLuint g, GLuint b, GLuint a); /* 948 */ + void (GLAPIENTRYP GetTexParameterIivEXT)(GLenum target, GLenum pname, GLint * params); /* 949 */ + void (GLAPIENTRYP GetTexParameterIuivEXT)(GLenum target, GLenum pname, GLuint * params); /* 950 */ + void (GLAPIENTRYP TexParameterIivEXT)(GLenum target, GLenum pname, const GLint * params); /* 951 */ + void (GLAPIENTRYP TexParameterIuivEXT)(GLenum target, GLenum pname, const GLuint * params); /* 952 */ + void (GLAPIENTRYP BeginConditionalRenderNV)(GLuint query, GLenum mode); /* 953 */ + void (GLAPIENTRYP EndConditionalRenderNV)(void); /* 954 */ + void (GLAPIENTRYP BeginTransformFeedbackEXT)(GLenum mode); /* 955 */ + void (GLAPIENTRYP BindBufferBaseEXT)(GLenum target, GLuint index, GLuint buffer); /* 956 */ + void (GLAPIENTRYP BindBufferOffsetEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset); /* 957 */ + void (GLAPIENTRYP BindBufferRangeEXT)(GLenum target, GLuint index, GLuint buffer, GLintptr offset, GLsizeiptr size); /* 958 */ + void (GLAPIENTRYP EndTransformFeedbackEXT)(void); /* 959 */ + void (GLAPIENTRYP GetTransformFeedbackVaryingEXT)(GLuint program, GLuint index, GLsizei bufSize, GLsizei * length, GLsizei * size, GLenum * type, GLchar * name); /* 960 */ + void (GLAPIENTRYP TransformFeedbackVaryingsEXT)(GLuint program, GLsizei count, const char ** varyings, GLenum bufferMode); /* 961 */ + void (GLAPIENTRYP ProvokingVertexEXT)(GLenum mode); /* 962 */ + void (GLAPIENTRYP GetTexParameterPointervAPPLE)(GLenum target, GLenum pname, GLvoid ** params); /* 963 */ + void (GLAPIENTRYP TextureRangeAPPLE)(GLenum target, GLsizei length, GLvoid * pointer); /* 964 */ + void (GLAPIENTRYP GetObjectParameterivAPPLE)(GLenum objectType, GLuint name, GLenum pname, GLint * value); /* 965 */ + GLenum (GLAPIENTRYP ObjectPurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 966 */ + GLenum (GLAPIENTRYP ObjectUnpurgeableAPPLE)(GLenum objectType, GLuint name, GLenum option); /* 967 */ + void (GLAPIENTRYP ActiveProgramEXT)(GLuint program); /* 968 */ + GLuint (GLAPIENTRYP CreateShaderProgramEXT)(GLenum type, const GLchar * string); /* 969 */ + void (GLAPIENTRYP UseShaderProgramEXT)(GLenum type, GLuint program); /* 970 */ + void (GLAPIENTRYP TextureBarrierNV)(void); /* 971 */ + void (GLAPIENTRYP StencilFuncSeparateATI)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); /* 972 */ + void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 973 */ + void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 974 */ + void (GLAPIENTRYP GetQueryObjecti64vEXT)(GLuint id, GLenum pname, GLint64EXT * params); /* 975 */ + void (GLAPIENTRYP GetQueryObjectui64vEXT)(GLuint id, GLenum pname, GLuint64EXT * params); /* 976 */ + void (GLAPIENTRYP EGLImageTargetRenderbufferStorageOES)(GLenum target, GLvoid * writeOffset); /* 977 */ + void (GLAPIENTRYP EGLImageTargetTexture2DOES)(GLenum target, GLvoid * writeOffset); /* 978 */ }; #endif /* !defined( _GLAPI_TABLE_H_ ) */ diff --git a/src/mapi/glapi/glapitemp.h b/src/mapi/glapi/glapitemp.h index b018c757323..142af2e1819 100644 --- a/src/mapi/glapi/glapitemp.h +++ b/src/mapi/glapi/glapitemp.h @@ -4872,6 +4872,18 @@ KEYWORD1 void KEYWORD2 NAME(BlendFuncIndexedAMD)(GLuint buf, GLenum src, GLenum DISPATCH(BlendFunciARB, (buf, src, dst), (F, "glBlendFuncIndexedAMD(%d, 0x%x, 0x%x);\n", buf, src, dst)); } +KEYWORD1 void KEYWORD2 NAME(BindFragDataLocationIndexed)(GLuint program, GLuint colorNumber, GLuint index, const GLchar * name) +{ + (void) program; (void) colorNumber; (void) index; (void) name; + DISPATCH(BindFragDataLocationIndexed, (program, colorNumber, index, name), (F, "glBindFragDataLocationIndexed(%d, %d, %d, %p);\n", program, colorNumber, index, (const void *) name)); +} + +KEYWORD1 GLint KEYWORD2 NAME(GetFragDataIndex)(GLuint program, const GLchar * name) +{ + (void) program; (void) name; + RETURN_DISPATCH(GetFragDataIndex, (program, name), (F, "glGetFragDataIndex(%d, %p);\n", program, (const void *) name)); +} + KEYWORD1 void KEYWORD2 NAME(BindSampler)(GLuint unit, GLuint sampler) { (void) unit; (void) sampler; @@ -5438,65 +5450,65 @@ 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_696)(GLenum pname, GLfloat * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_698)(GLenum pname, GLfloat * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_696)(GLenum pname, GLfloat * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_698)(GLenum pname, GLfloat * params) { (void) pname; (void) params; DISPATCH(GetPixelTexGenParameterfvSGIS, (pname, params), (F, "glGetPixelTexGenParameterfvSGIS(0x%x, %p);\n", pname, (const void *) params)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_697)(GLenum pname, GLint * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_699)(GLenum pname, GLint * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_697)(GLenum pname, GLint * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_699)(GLenum pname, GLint * params) { (void) pname; (void) params; DISPATCH(GetPixelTexGenParameterivSGIS, (pname, params), (F, "glGetPixelTexGenParameterivSGIS(0x%x, %p);\n", pname, (const void *) params)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_698)(GLenum pname, GLfloat param); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_700)(GLenum pname, GLfloat param); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_698)(GLenum pname, GLfloat param) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_700)(GLenum pname, GLfloat param) { (void) pname; (void) param; DISPATCH(PixelTexGenParameterfSGIS, (pname, param), (F, "glPixelTexGenParameterfSGIS(0x%x, %f);\n", pname, param)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_699)(GLenum pname, const GLfloat * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_701)(GLenum pname, const GLfloat * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_699)(GLenum pname, const GLfloat * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_701)(GLenum pname, const GLfloat * params) { (void) pname; (void) params; DISPATCH(PixelTexGenParameterfvSGIS, (pname, params), (F, "glPixelTexGenParameterfvSGIS(0x%x, %p);\n", pname, (const void *) params)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_700)(GLenum pname, GLint param); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_702)(GLenum pname, GLint param); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_700)(GLenum pname, GLint param) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_702)(GLenum pname, GLint param) { (void) pname; (void) param; DISPATCH(PixelTexGenParameteriSGIS, (pname, param), (F, "glPixelTexGenParameteriSGIS(0x%x, %d);\n", pname, param)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_701)(GLenum pname, const GLint * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_703)(GLenum pname, const GLint * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_701)(GLenum pname, const GLint * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_703)(GLenum pname, const GLint * params) { (void) pname; (void) params; DISPATCH(PixelTexGenParameterivSGIS, (pname, params), (F, "glPixelTexGenParameterivSGIS(0x%x, %p);\n", pname, (const void *) params)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_702)(GLclampf value, GLboolean invert); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_704)(GLclampf value, GLboolean invert); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_702)(GLclampf value, GLboolean invert) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_704)(GLclampf value, GLboolean invert) { (void) value; (void) invert; DISPATCH(SampleMaskSGIS, (value, invert), (F, "glSampleMaskSGIS(%f, %d);\n", value, invert)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_703)(GLenum pattern); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_705)(GLenum pattern); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_703)(GLenum pattern) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_705)(GLenum pattern) { (void) pattern; DISPATCH(SamplePatternSGIS, (pattern), (F, "glSamplePatternSGIS(0x%x);\n", pattern)); @@ -5556,9 +5568,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_710)(GLenum pname, GLfloat param); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_712)(GLenum pname, GLfloat param); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_710)(GLenum pname, GLfloat param) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_712)(GLenum pname, GLfloat param) { (void) pname; (void) param; DISPATCH(PointParameterfEXT, (pname, param), (F, "glPointParameterfSGIS(0x%x, %f);\n", pname, param)); @@ -5582,9 +5594,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_711)(GLenum pname, const GLfloat * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_713)(GLenum pname, const GLfloat * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_711)(GLenum pname, const GLfloat * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_713)(GLenum pname, const GLfloat * params) { (void) pname; (void) params; DISPATCH(PointParameterfvEXT, (pname, params), (F, "glPointParameterfvSGIS(0x%x, %p);\n", pname, (const void *) params)); @@ -5889,9 +5901,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_738)(GLenum mode); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_740)(GLenum mode); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_738)(GLenum mode) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_740)(GLenum mode) { (void) mode; DISPATCH(PixelTexGenSGIX, (mode), (F, "glPixelTexGenSGIX(0x%x);\n", mode)); @@ -5909,9 +5921,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_739)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_741)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_739)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_741)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha) { (void) sfactorRGB; (void) dfactorRGB; (void) sfactorAlpha; (void) dfactorAlpha; DISPATCH(BlendFuncSeparateEXT, (sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha), (F, "glBlendFuncSeparateINGR(0x%x, 0x%x, 0x%x, 0x%x);\n", sfactorRGB, dfactorRGB, sfactorAlpha, dfactorAlpha)); @@ -6347,73 +6359,73 @@ 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_780)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_782)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_780)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_782)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride) { (void) mode; (void) first; (void) count; (void) primcount; (void) 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_781)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_783)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_781)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_783)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride) { (void) mode; (void) count; (void) type; (void) indices; (void) primcount; (void) 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_782)(GLsizei n, const GLuint * fences); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_784)(GLsizei n, const GLuint * fences); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_782)(GLsizei n, const GLuint * fences) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_784)(GLsizei n, const GLuint * fences) { (void) n; (void) fences; DISPATCH(DeleteFencesNV, (n, fences), (F, "glDeleteFencesNV(%d, %p);\n", n, (const void *) fences)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_783)(GLuint fence); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_785)(GLuint fence); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_783)(GLuint fence) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_785)(GLuint fence) { (void) fence; DISPATCH(FinishFenceNV, (fence), (F, "glFinishFenceNV(%d);\n", fence)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_784)(GLsizei n, GLuint * fences); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_786)(GLsizei n, GLuint * fences); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_784)(GLsizei n, GLuint * fences) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_786)(GLsizei n, GLuint * fences) { (void) n; (void) fences; DISPATCH(GenFencesNV, (n, fences), (F, "glGenFencesNV(%d, %p);\n", n, (const void *) fences)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_785)(GLuint fence, GLenum pname, GLint * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_787)(GLuint fence, GLenum pname, GLint * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_785)(GLuint fence, GLenum pname, GLint * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_787)(GLuint fence, GLenum pname, GLint * params) { (void) fence; (void) pname; (void) 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_786)(GLuint fence); +KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_788)(GLuint fence); -KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_786)(GLuint fence) +KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_788)(GLuint fence) { (void) fence; RETURN_DISPATCH(IsFenceNV, (fence), (F, "glIsFenceNV(%d);\n", fence)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_787)(GLuint fence, GLenum condition); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_789)(GLuint fence, GLenum condition); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_787)(GLuint fence, GLenum condition) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_789)(GLuint fence, GLenum condition) { (void) fence; (void) condition; DISPATCH(SetFenceNV, (fence, condition), (F, "glSetFenceNV(%d, 0x%x);\n", fence, condition)); } -KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_788)(GLuint fence); +KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_790)(GLuint fence); -KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_788)(GLuint fence) +KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_790)(GLuint fence) { (void) fence; RETURN_DISPATCH(TestFenceNV, (fence), (F, "glTestFenceNV(%d);\n", fence)); @@ -6945,17 +6957,17 @@ 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_869)(GLenum face); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_871)(GLenum face); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_869)(GLenum face) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_871)(GLenum face) { (void) face; DISPATCH(ActiveStencilFaceEXT, (face), (F, "glActiveStencilFaceEXT(0x%x);\n", face)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_870)(GLuint array); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_872)(GLuint array); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_870)(GLuint array) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_872)(GLuint array) { (void) array; DISPATCH(BindVertexArrayAPPLE, (array), (F, "glBindVertexArrayAPPLE(%d);\n", array)); @@ -6967,17 +6979,17 @@ 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_871)(GLsizei n, const GLuint * arrays); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_873)(GLsizei n, const GLuint * arrays); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_871)(GLsizei n, const GLuint * arrays) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_873)(GLsizei n, const GLuint * arrays) { (void) n; (void) arrays; DISPATCH(DeleteVertexArraysAPPLE, (n, arrays), (F, "glDeleteVertexArraysAPPLE(%d, %p);\n", n, (const void *) arrays)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_872)(GLsizei n, GLuint * arrays); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_874)(GLsizei n, GLuint * arrays); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_872)(GLsizei n, GLuint * arrays) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_874)(GLsizei n, GLuint * arrays) { (void) n; (void) arrays; DISPATCH(GenVertexArraysAPPLE, (n, arrays), (F, "glGenVertexArraysAPPLE(%d, %p);\n", n, (const void *) arrays)); @@ -6989,9 +7001,9 @@ KEYWORD1 GLboolean KEYWORD2 NAME(IsVertexArray)(GLuint array) RETURN_DISPATCH(IsVertexArrayAPPLE, (array), (F, "glIsVertexArray(%d);\n", array)); } -KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_873)(GLuint array); +KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_875)(GLuint array); -KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_873)(GLuint array) +KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_875)(GLuint array) { (void) array; RETURN_DISPATCH(IsVertexArrayAPPLE, (array), (F, "glIsVertexArrayAPPLE(%d);\n", array)); @@ -7050,9 +7062,9 @@ KEYWORD1 void KEYWORD2 NAME(PrimitiveRestartNV)(void) DISPATCH(PrimitiveRestartNV, (), (F, "glPrimitiveRestartNV();\n")); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_882)(GLclampd zmin, GLclampd zmax); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_884)(GLclampd zmin, GLclampd zmax); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_882)(GLclampd zmin, GLclampd zmax) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_884)(GLclampd zmin, GLclampd zmax) { (void) zmin; (void) zmax; DISPATCH(DepthBoundsEXT, (zmin, zmax), (F, "glDepthBoundsEXT(%f, %f);\n", zmin, zmax)); @@ -7064,9 +7076,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_883)(GLenum modeRGB, GLenum modeA); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_885)(GLenum modeRGB, GLenum modeA); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_883)(GLenum modeRGB, GLenum modeA) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_885)(GLenum modeRGB, GLenum modeA) { (void) modeRGB; (void) modeA; DISPATCH(BlendEquationSeparateEXT, (modeRGB, modeA), (F, "glBlendEquationSeparateEXT(0x%x, 0x%x);\n", modeRGB, modeA)); @@ -7282,25 +7294,25 @@ 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_901)(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_903)(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_901)(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_903)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter) { (void) srcX0; (void) srcY0; (void) srcX1; (void) srcY1; (void) dstX0; (void) dstY0; (void) dstX1; (void) dstY1; (void) mask; (void) 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_902)(GLenum target, GLenum pname, GLint param); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_904)(GLenum target, GLenum pname, GLint param); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_902)(GLenum target, GLenum pname, GLint param) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_904)(GLenum target, GLenum pname, GLint param) { (void) target; (void) pname; (void) param; DISPATCH(BufferParameteriAPPLE, (target, pname, param), (F, "glBufferParameteriAPPLE(0x%x, 0x%x, %d);\n", target, pname, param)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_903)(GLenum target, GLintptr offset, GLsizeiptr size); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_905)(GLenum target, GLintptr offset, GLsizeiptr size); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_903)(GLenum target, GLintptr offset, GLsizeiptr size) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_905)(GLenum target, GLintptr offset, GLsizeiptr size) { (void) target; (void) offset; (void) size; DISPATCH(FlushMappedBufferRangeAPPLE, (target, offset, size), (F, "glFlushMappedBufferRangeAPPLE(0x%x, %d, %d);\n", target, offset, size)); @@ -7974,17 +7986,17 @@ KEYWORD1 void KEYWORD2 NAME(ProvokingVertex)(GLenum mode) DISPATCH(ProvokingVertexEXT, (mode), (F, "glProvokingVertex(0x%x);\n", mode)); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_961)(GLenum target, GLenum pname, GLvoid ** params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_963)(GLenum target, GLenum pname, GLvoid ** params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_961)(GLenum target, GLenum pname, GLvoid ** params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_963)(GLenum target, GLenum pname, GLvoid ** params) { (void) target; (void) pname; (void) 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_962)(GLenum target, GLsizei length, GLvoid * pointer); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_964)(GLenum target, GLsizei length, GLvoid * pointer); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_962)(GLenum target, GLsizei length, GLvoid * pointer) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_964)(GLenum target, GLsizei length, GLvoid * pointer) { (void) target; (void) length; (void) pointer; DISPATCH(TextureRangeAPPLE, (target, length, pointer), (F, "glTextureRangeAPPLE(0x%x, %d, %p);\n", target, length, (const void *) pointer)); @@ -8031,41 +8043,41 @@ KEYWORD1 void KEYWORD2 NAME(TextureBarrierNV)(void) DISPATCH(TextureBarrierNV, (), (F, "glTextureBarrierNV();\n")); } -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_970)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_972)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_970)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_972)(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask) { (void) frontfunc; (void) backfunc; (void) ref; (void) 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_971)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_973)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_971)(GLenum target, GLuint index, GLsizei count, const GLfloat * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_973)(GLenum target, GLuint index, GLsizei count, const GLfloat * params) { (void) target; (void) index; (void) count; (void) 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_972)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_974)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_972)(GLenum target, GLuint index, GLsizei count, const GLfloat * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_974)(GLenum target, GLuint index, GLsizei count, const GLfloat * params) { (void) target; (void) index; (void) count; (void) 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_973)(GLuint id, GLenum pname, GLint64EXT * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_975)(GLuint id, GLenum pname, GLint64EXT * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_973)(GLuint id, GLenum pname, GLint64EXT * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_975)(GLuint id, GLenum pname, GLint64EXT * params) { (void) id; (void) pname; (void) 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_974)(GLuint id, GLenum pname, GLuint64EXT * params); +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_976)(GLuint id, GLenum pname, GLuint64EXT * params); -KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_974)(GLuint id, GLenum pname, GLuint64EXT * params) +KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_976)(GLuint id, GLenum pname, GLuint64EXT * params) { (void) id; (void) pname; (void) params; DISPATCH(GetQueryObjectui64vEXT, (id, pname, params), (F, "glGetQueryObjectui64vEXT(%d, 0x%x, %p);\n", id, pname, (const void *) params)); @@ -8857,6 +8869,8 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(BlendEquationiARB), TABLE_ENTRY(BlendFuncSeparateiARB), TABLE_ENTRY(BlendFunciARB), + TABLE_ENTRY(BindFragDataLocationIndexed), + TABLE_ENTRY(GetFragDataIndex), TABLE_ENTRY(BindSampler), TABLE_ENTRY(DeleteSamplers), TABLE_ENTRY(GenSamplers), @@ -8952,14 +8966,14 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(TextureStorage2DEXT), TABLE_ENTRY(TextureStorage3DEXT), TABLE_ENTRY(PolygonOffsetEXT), - TABLE_ENTRY(_dispatch_stub_696), - TABLE_ENTRY(_dispatch_stub_697), TABLE_ENTRY(_dispatch_stub_698), TABLE_ENTRY(_dispatch_stub_699), TABLE_ENTRY(_dispatch_stub_700), TABLE_ENTRY(_dispatch_stub_701), TABLE_ENTRY(_dispatch_stub_702), TABLE_ENTRY(_dispatch_stub_703), + TABLE_ENTRY(_dispatch_stub_704), + TABLE_ENTRY(_dispatch_stub_705), TABLE_ENTRY(ColorPointerEXT), TABLE_ENTRY(EdgeFlagPointerEXT), TABLE_ENTRY(IndexPointerEXT), @@ -8994,7 +9008,7 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(FogCoorddvEXT), TABLE_ENTRY(FogCoordfEXT), TABLE_ENTRY(FogCoordfvEXT), - TABLE_ENTRY(_dispatch_stub_738), + TABLE_ENTRY(_dispatch_stub_740), TABLE_ENTRY(BlendFuncSeparateEXT), TABLE_ENTRY(FlushVertexArrayRangeNV), TABLE_ENTRY(VertexArrayRangeNV), @@ -9036,8 +9050,6 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(WindowPos4ivMESA), TABLE_ENTRY(WindowPos4sMESA), TABLE_ENTRY(WindowPos4svMESA), - TABLE_ENTRY(_dispatch_stub_780), - TABLE_ENTRY(_dispatch_stub_781), TABLE_ENTRY(_dispatch_stub_782), TABLE_ENTRY(_dispatch_stub_783), TABLE_ENTRY(_dispatch_stub_784), @@ -9045,6 +9057,8 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(_dispatch_stub_786), TABLE_ENTRY(_dispatch_stub_787), TABLE_ENTRY(_dispatch_stub_788), + TABLE_ENTRY(_dispatch_stub_789), + TABLE_ENTRY(_dispatch_stub_790), TABLE_ENTRY(AreProgramsResidentNV), TABLE_ENTRY(BindProgramNV), TABLE_ENTRY(DeleteProgramsNV), @@ -9125,11 +9139,11 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(SetFragmentShaderConstantATI), TABLE_ENTRY(PointParameteriNV), TABLE_ENTRY(PointParameterivNV), - TABLE_ENTRY(_dispatch_stub_869), - TABLE_ENTRY(_dispatch_stub_870), TABLE_ENTRY(_dispatch_stub_871), TABLE_ENTRY(_dispatch_stub_872), TABLE_ENTRY(_dispatch_stub_873), + TABLE_ENTRY(_dispatch_stub_874), + TABLE_ENTRY(_dispatch_stub_875), TABLE_ENTRY(GetProgramNamedParameterdvNV), TABLE_ENTRY(GetProgramNamedParameterfvNV), TABLE_ENTRY(ProgramNamedParameter4dNV), @@ -9138,8 +9152,8 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(ProgramNamedParameter4fvNV), TABLE_ENTRY(PrimitiveRestartIndexNV), TABLE_ENTRY(PrimitiveRestartNV), - TABLE_ENTRY(_dispatch_stub_882), - TABLE_ENTRY(_dispatch_stub_883), + TABLE_ENTRY(_dispatch_stub_884), + TABLE_ENTRY(_dispatch_stub_885), TABLE_ENTRY(BindFramebufferEXT), TABLE_ENTRY(BindRenderbufferEXT), TABLE_ENTRY(CheckFramebufferStatusEXT), @@ -9157,9 +9171,9 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(IsFramebufferEXT), TABLE_ENTRY(IsRenderbufferEXT), TABLE_ENTRY(RenderbufferStorageEXT), - TABLE_ENTRY(_dispatch_stub_901), - TABLE_ENTRY(_dispatch_stub_902), TABLE_ENTRY(_dispatch_stub_903), + TABLE_ENTRY(_dispatch_stub_904), + TABLE_ENTRY(_dispatch_stub_905), TABLE_ENTRY(BindFragDataLocationEXT), TABLE_ENTRY(GetFragDataLocationEXT), TABLE_ENTRY(GetUniformuivEXT), @@ -9217,8 +9231,8 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(GetTransformFeedbackVaryingEXT), TABLE_ENTRY(TransformFeedbackVaryingsEXT), TABLE_ENTRY(ProvokingVertexEXT), - TABLE_ENTRY(_dispatch_stub_961), - TABLE_ENTRY(_dispatch_stub_962), + TABLE_ENTRY(_dispatch_stub_963), + TABLE_ENTRY(_dispatch_stub_964), TABLE_ENTRY(GetObjectParameterivAPPLE), TABLE_ENTRY(ObjectPurgeableAPPLE), TABLE_ENTRY(ObjectUnpurgeableAPPLE), @@ -9226,11 +9240,11 @@ _glapi_proc DISPATCH_TABLE_NAME[] = { TABLE_ENTRY(CreateShaderProgramEXT), TABLE_ENTRY(UseShaderProgramEXT), TABLE_ENTRY(TextureBarrierNV), - TABLE_ENTRY(_dispatch_stub_970), - TABLE_ENTRY(_dispatch_stub_971), TABLE_ENTRY(_dispatch_stub_972), TABLE_ENTRY(_dispatch_stub_973), TABLE_ENTRY(_dispatch_stub_974), + TABLE_ENTRY(_dispatch_stub_975), + TABLE_ENTRY(_dispatch_stub_976), TABLE_ENTRY(EGLImageTargetRenderbufferStorageOES), TABLE_ENTRY(EGLImageTargetTexture2DOES), /* A whole bunch of no-op functions. These might be called @@ -9542,10 +9556,10 @@ _glapi_proc UNUSED_TABLE_NAME[] = { TABLE_ENTRY(BlendFuncIndexedAMD), TABLE_ENTRY(PointParameterf), TABLE_ENTRY(PointParameterfARB), - TABLE_ENTRY(_dispatch_stub_710), + TABLE_ENTRY(_dispatch_stub_712), TABLE_ENTRY(PointParameterfv), TABLE_ENTRY(PointParameterfvARB), - TABLE_ENTRY(_dispatch_stub_711), + TABLE_ENTRY(_dispatch_stub_713), TABLE_ENTRY(SecondaryColor3b), TABLE_ENTRY(SecondaryColor3bv), TABLE_ENTRY(SecondaryColor3d), @@ -9571,7 +9585,7 @@ _glapi_proc UNUSED_TABLE_NAME[] = { TABLE_ENTRY(FogCoordf), TABLE_ENTRY(FogCoordfv), TABLE_ENTRY(BlendFuncSeparate), - TABLE_ENTRY(_dispatch_stub_739), + TABLE_ENTRY(_dispatch_stub_741), TABLE_ENTRY(WindowPos2d), TABLE_ENTRY(WindowPos2dARB), TABLE_ENTRY(WindowPos2dv), diff --git a/src/mapi/glapi/glprocs.h b/src/mapi/glapi/glprocs.h index 3047d2f4906..10c69c8506f 100644 --- a/src/mapi/glapi/glprocs.h +++ b/src/mapi/glapi/glprocs.h @@ -653,6 +653,8 @@ static const char gl_string_table[] = "glBlendEquationiARB\0" "glBlendFuncSeparateiARB\0" "glBlendFunciARB\0" + "glBindFragDataLocationIndexed\0" + "glGetFragDataIndex\0" "glBindSampler\0" "glDeleteSamplers\0" "glGenSamplers\0" @@ -1411,17 +1413,15 @@ 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_696 mgl_dispatch_stub_696 -#define gl_dispatch_stub_697 mgl_dispatch_stub_697 #define gl_dispatch_stub_698 mgl_dispatch_stub_698 #define gl_dispatch_stub_699 mgl_dispatch_stub_699 #define gl_dispatch_stub_700 mgl_dispatch_stub_700 #define gl_dispatch_stub_701 mgl_dispatch_stub_701 #define gl_dispatch_stub_702 mgl_dispatch_stub_702 #define gl_dispatch_stub_703 mgl_dispatch_stub_703 -#define gl_dispatch_stub_738 mgl_dispatch_stub_738 -#define gl_dispatch_stub_780 mgl_dispatch_stub_780 -#define gl_dispatch_stub_781 mgl_dispatch_stub_781 +#define gl_dispatch_stub_704 mgl_dispatch_stub_704 +#define gl_dispatch_stub_705 mgl_dispatch_stub_705 +#define gl_dispatch_stub_740 mgl_dispatch_stub_740 #define gl_dispatch_stub_782 mgl_dispatch_stub_782 #define gl_dispatch_stub_783 mgl_dispatch_stub_783 #define gl_dispatch_stub_784 mgl_dispatch_stub_784 @@ -1429,23 +1429,25 @@ static const char gl_string_table[] = #define gl_dispatch_stub_786 mgl_dispatch_stub_786 #define gl_dispatch_stub_787 mgl_dispatch_stub_787 #define gl_dispatch_stub_788 mgl_dispatch_stub_788 -#define gl_dispatch_stub_869 mgl_dispatch_stub_869 -#define gl_dispatch_stub_870 mgl_dispatch_stub_870 +#define gl_dispatch_stub_789 mgl_dispatch_stub_789 +#define gl_dispatch_stub_790 mgl_dispatch_stub_790 #define gl_dispatch_stub_871 mgl_dispatch_stub_871 #define gl_dispatch_stub_872 mgl_dispatch_stub_872 #define gl_dispatch_stub_873 mgl_dispatch_stub_873 -#define gl_dispatch_stub_882 mgl_dispatch_stub_882 -#define gl_dispatch_stub_883 mgl_dispatch_stub_883 -#define gl_dispatch_stub_901 mgl_dispatch_stub_901 -#define gl_dispatch_stub_902 mgl_dispatch_stub_902 +#define gl_dispatch_stub_874 mgl_dispatch_stub_874 +#define gl_dispatch_stub_875 mgl_dispatch_stub_875 +#define gl_dispatch_stub_884 mgl_dispatch_stub_884 +#define gl_dispatch_stub_885 mgl_dispatch_stub_885 #define gl_dispatch_stub_903 mgl_dispatch_stub_903 -#define gl_dispatch_stub_961 mgl_dispatch_stub_961 -#define gl_dispatch_stub_962 mgl_dispatch_stub_962 -#define gl_dispatch_stub_970 mgl_dispatch_stub_970 -#define gl_dispatch_stub_971 mgl_dispatch_stub_971 +#define gl_dispatch_stub_904 mgl_dispatch_stub_904 +#define gl_dispatch_stub_905 mgl_dispatch_stub_905 +#define gl_dispatch_stub_963 mgl_dispatch_stub_963 +#define gl_dispatch_stub_964 mgl_dispatch_stub_964 #define gl_dispatch_stub_972 mgl_dispatch_stub_972 #define gl_dispatch_stub_973 mgl_dispatch_stub_973 #define gl_dispatch_stub_974 mgl_dispatch_stub_974 +#define gl_dispatch_stub_975 mgl_dispatch_stub_975 +#define gl_dispatch_stub_976 mgl_dispatch_stub_976 #endif /* USE_MGL_NAMESPACE */ @@ -1463,41 +1465,41 @@ void GLAPIENTRY gl_dispatch_stub_363(GLenum target, GLenum pname, GLint * params void GLAPIENTRY gl_dispatch_stub_364(GLenum target, GLboolean reset, GLenum format, GLenum type, GLvoid * values); void GLAPIENTRY gl_dispatch_stub_365(GLenum target, GLenum pname, GLfloat * params); void GLAPIENTRY gl_dispatch_stub_366(GLenum target, GLenum pname, GLint * params); -void GLAPIENTRY gl_dispatch_stub_696(GLenum pname, GLfloat * params); -void GLAPIENTRY gl_dispatch_stub_697(GLenum pname, GLint * params); -void GLAPIENTRY gl_dispatch_stub_698(GLenum pname, GLfloat param); -void GLAPIENTRY gl_dispatch_stub_699(GLenum pname, const GLfloat * params); -void GLAPIENTRY gl_dispatch_stub_700(GLenum pname, GLint param); -void GLAPIENTRY gl_dispatch_stub_701(GLenum pname, const GLint * params); -void GLAPIENTRY gl_dispatch_stub_702(GLclampf value, GLboolean invert); -void GLAPIENTRY gl_dispatch_stub_703(GLenum pattern); -void GLAPIENTRY gl_dispatch_stub_738(GLenum mode); -void GLAPIENTRY gl_dispatch_stub_780(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); -void GLAPIENTRY gl_dispatch_stub_781(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); -void GLAPIENTRY gl_dispatch_stub_782(GLsizei n, const GLuint * fences); -void GLAPIENTRY gl_dispatch_stub_783(GLuint fence); -void GLAPIENTRY gl_dispatch_stub_784(GLsizei n, GLuint * fences); -void GLAPIENTRY gl_dispatch_stub_785(GLuint fence, GLenum pname, GLint * params); -GLboolean GLAPIENTRY gl_dispatch_stub_786(GLuint fence); -void GLAPIENTRY gl_dispatch_stub_787(GLuint fence, GLenum condition); +void GLAPIENTRY gl_dispatch_stub_698(GLenum pname, GLfloat * params); +void GLAPIENTRY gl_dispatch_stub_699(GLenum pname, GLint * params); +void GLAPIENTRY gl_dispatch_stub_700(GLenum pname, GLfloat param); +void GLAPIENTRY gl_dispatch_stub_701(GLenum pname, const GLfloat * params); +void GLAPIENTRY gl_dispatch_stub_702(GLenum pname, GLint param); +void GLAPIENTRY gl_dispatch_stub_703(GLenum pname, const GLint * params); +void GLAPIENTRY gl_dispatch_stub_704(GLclampf value, GLboolean invert); +void GLAPIENTRY gl_dispatch_stub_705(GLenum pattern); +void GLAPIENTRY gl_dispatch_stub_740(GLenum mode); +void GLAPIENTRY gl_dispatch_stub_782(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); +void GLAPIENTRY gl_dispatch_stub_783(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); +void GLAPIENTRY gl_dispatch_stub_784(GLsizei n, const GLuint * fences); +void GLAPIENTRY gl_dispatch_stub_785(GLuint fence); +void GLAPIENTRY gl_dispatch_stub_786(GLsizei n, GLuint * fences); +void GLAPIENTRY gl_dispatch_stub_787(GLuint fence, GLenum pname, GLint * params); GLboolean GLAPIENTRY gl_dispatch_stub_788(GLuint fence); -void GLAPIENTRY gl_dispatch_stub_869(GLenum face); -void GLAPIENTRY gl_dispatch_stub_870(GLuint array); -void GLAPIENTRY gl_dispatch_stub_871(GLsizei n, const GLuint * arrays); -void GLAPIENTRY gl_dispatch_stub_872(GLsizei n, GLuint * arrays); -GLboolean GLAPIENTRY gl_dispatch_stub_873(GLuint array); -void GLAPIENTRY gl_dispatch_stub_882(GLclampd zmin, GLclampd zmax); -void GLAPIENTRY gl_dispatch_stub_883(GLenum modeRGB, GLenum modeA); -void GLAPIENTRY gl_dispatch_stub_901(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_902(GLenum target, GLenum pname, GLint param); -void GLAPIENTRY gl_dispatch_stub_903(GLenum target, GLintptr offset, GLsizeiptr size); -void GLAPIENTRY gl_dispatch_stub_961(GLenum target, GLenum pname, GLvoid ** params); -void GLAPIENTRY gl_dispatch_stub_962(GLenum target, GLsizei length, GLvoid * pointer); -void GLAPIENTRY gl_dispatch_stub_970(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); -void GLAPIENTRY gl_dispatch_stub_971(GLenum target, GLuint index, GLsizei count, const GLfloat * params); -void GLAPIENTRY gl_dispatch_stub_972(GLenum target, GLuint index, GLsizei count, const GLfloat * params); -void GLAPIENTRY gl_dispatch_stub_973(GLuint id, GLenum pname, GLint64EXT * params); -void GLAPIENTRY gl_dispatch_stub_974(GLuint id, GLenum pname, GLuint64EXT * params); +void GLAPIENTRY gl_dispatch_stub_789(GLuint fence, GLenum condition); +GLboolean GLAPIENTRY gl_dispatch_stub_790(GLuint fence); +void GLAPIENTRY gl_dispatch_stub_871(GLenum face); +void GLAPIENTRY gl_dispatch_stub_872(GLuint array); +void GLAPIENTRY gl_dispatch_stub_873(GLsizei n, const GLuint * arrays); +void GLAPIENTRY gl_dispatch_stub_874(GLsizei n, GLuint * arrays); +GLboolean GLAPIENTRY gl_dispatch_stub_875(GLuint array); +void GLAPIENTRY gl_dispatch_stub_884(GLclampd zmin, GLclampd zmax); +void GLAPIENTRY gl_dispatch_stub_885(GLenum modeRGB, GLenum modeA); +void GLAPIENTRY gl_dispatch_stub_903(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_904(GLenum target, GLenum pname, GLint param); +void GLAPIENTRY gl_dispatch_stub_905(GLenum target, GLintptr offset, GLsizeiptr size); +void GLAPIENTRY gl_dispatch_stub_963(GLenum target, GLenum pname, GLvoid ** params); +void GLAPIENTRY gl_dispatch_stub_964(GLenum target, GLsizei length, GLvoid * pointer); +void GLAPIENTRY gl_dispatch_stub_972(GLenum frontfunc, GLenum backfunc, GLint ref, GLuint mask); +void GLAPIENTRY gl_dispatch_stub_973(GLenum target, GLuint index, GLsizei count, const GLfloat * params); +void GLAPIENTRY gl_dispatch_stub_974(GLenum target, GLuint index, GLsizei count, const GLfloat * params); +void GLAPIENTRY gl_dispatch_stub_975(GLuint id, GLenum pname, GLint64EXT * params); +void GLAPIENTRY gl_dispatch_stub_976(GLuint id, GLenum pname, GLuint64EXT * params); #endif /* defined(NEED_FUNCTION_POINTER) || defined(GLX_INDIRECT_RENDERING) */ static const glprocs_table_t static_functions[] = { @@ -2102,747 +2104,749 @@ static const glprocs_table_t static_functions[] = { NAME_FUNC_OFFSET( 9691, glBlendEquationiARB, glBlendEquationiARB, NULL, 598), NAME_FUNC_OFFSET( 9711, glBlendFuncSeparateiARB, glBlendFuncSeparateiARB, NULL, 599), NAME_FUNC_OFFSET( 9735, glBlendFunciARB, glBlendFunciARB, NULL, 600), - NAME_FUNC_OFFSET( 9751, glBindSampler, glBindSampler, NULL, 601), - NAME_FUNC_OFFSET( 9765, glDeleteSamplers, glDeleteSamplers, NULL, 602), - NAME_FUNC_OFFSET( 9782, glGenSamplers, glGenSamplers, NULL, 603), - NAME_FUNC_OFFSET( 9796, glGetSamplerParameterIiv, glGetSamplerParameterIiv, NULL, 604), - NAME_FUNC_OFFSET( 9821, glGetSamplerParameterIuiv, glGetSamplerParameterIuiv, NULL, 605), - NAME_FUNC_OFFSET( 9847, glGetSamplerParameterfv, glGetSamplerParameterfv, NULL, 606), - NAME_FUNC_OFFSET( 9871, glGetSamplerParameteriv, glGetSamplerParameteriv, NULL, 607), - NAME_FUNC_OFFSET( 9895, glIsSampler, glIsSampler, NULL, 608), - NAME_FUNC_OFFSET( 9907, glSamplerParameterIiv, glSamplerParameterIiv, NULL, 609), - NAME_FUNC_OFFSET( 9929, glSamplerParameterIuiv, glSamplerParameterIuiv, NULL, 610), - NAME_FUNC_OFFSET( 9952, glSamplerParameterf, glSamplerParameterf, NULL, 611), - NAME_FUNC_OFFSET( 9972, glSamplerParameterfv, glSamplerParameterfv, NULL, 612), - NAME_FUNC_OFFSET( 9993, glSamplerParameteri, glSamplerParameteri, NULL, 613), - NAME_FUNC_OFFSET(10013, glSamplerParameteriv, glSamplerParameteriv, NULL, 614), - NAME_FUNC_OFFSET(10034, glColorP3ui, glColorP3ui, NULL, 615), - NAME_FUNC_OFFSET(10046, glColorP3uiv, glColorP3uiv, NULL, 616), - NAME_FUNC_OFFSET(10059, glColorP4ui, glColorP4ui, NULL, 617), - NAME_FUNC_OFFSET(10071, glColorP4uiv, glColorP4uiv, NULL, 618), - NAME_FUNC_OFFSET(10084, glMultiTexCoordP1ui, glMultiTexCoordP1ui, NULL, 619), - NAME_FUNC_OFFSET(10104, glMultiTexCoordP1uiv, glMultiTexCoordP1uiv, NULL, 620), - NAME_FUNC_OFFSET(10125, glMultiTexCoordP2ui, glMultiTexCoordP2ui, NULL, 621), - NAME_FUNC_OFFSET(10145, glMultiTexCoordP2uiv, glMultiTexCoordP2uiv, NULL, 622), - NAME_FUNC_OFFSET(10166, glMultiTexCoordP3ui, glMultiTexCoordP3ui, NULL, 623), - NAME_FUNC_OFFSET(10186, glMultiTexCoordP3uiv, glMultiTexCoordP3uiv, NULL, 624), - NAME_FUNC_OFFSET(10207, glMultiTexCoordP4ui, glMultiTexCoordP4ui, NULL, 625), - NAME_FUNC_OFFSET(10227, glMultiTexCoordP4uiv, glMultiTexCoordP4uiv, NULL, 626), - NAME_FUNC_OFFSET(10248, glNormalP3ui, glNormalP3ui, NULL, 627), - NAME_FUNC_OFFSET(10261, glNormalP3uiv, glNormalP3uiv, NULL, 628), - NAME_FUNC_OFFSET(10275, glSecondaryColorP3ui, glSecondaryColorP3ui, NULL, 629), - NAME_FUNC_OFFSET(10296, glSecondaryColorP3uiv, glSecondaryColorP3uiv, NULL, 630), - NAME_FUNC_OFFSET(10318, glTexCoordP1ui, glTexCoordP1ui, NULL, 631), - NAME_FUNC_OFFSET(10333, glTexCoordP1uiv, glTexCoordP1uiv, NULL, 632), - NAME_FUNC_OFFSET(10349, glTexCoordP2ui, glTexCoordP2ui, NULL, 633), - NAME_FUNC_OFFSET(10364, glTexCoordP2uiv, glTexCoordP2uiv, NULL, 634), - NAME_FUNC_OFFSET(10380, glTexCoordP3ui, glTexCoordP3ui, NULL, 635), - NAME_FUNC_OFFSET(10395, glTexCoordP3uiv, glTexCoordP3uiv, NULL, 636), - NAME_FUNC_OFFSET(10411, glTexCoordP4ui, glTexCoordP4ui, NULL, 637), - NAME_FUNC_OFFSET(10426, glTexCoordP4uiv, glTexCoordP4uiv, NULL, 638), - NAME_FUNC_OFFSET(10442, glVertexAttribP1ui, glVertexAttribP1ui, NULL, 639), - NAME_FUNC_OFFSET(10461, glVertexAttribP1uiv, glVertexAttribP1uiv, NULL, 640), - NAME_FUNC_OFFSET(10481, glVertexAttribP2ui, glVertexAttribP2ui, NULL, 641), - NAME_FUNC_OFFSET(10500, glVertexAttribP2uiv, glVertexAttribP2uiv, NULL, 642), - NAME_FUNC_OFFSET(10520, glVertexAttribP3ui, glVertexAttribP3ui, NULL, 643), - NAME_FUNC_OFFSET(10539, glVertexAttribP3uiv, glVertexAttribP3uiv, NULL, 644), - NAME_FUNC_OFFSET(10559, glVertexAttribP4ui, glVertexAttribP4ui, NULL, 645), - NAME_FUNC_OFFSET(10578, glVertexAttribP4uiv, glVertexAttribP4uiv, NULL, 646), - NAME_FUNC_OFFSET(10598, glVertexP2ui, glVertexP2ui, NULL, 647), - NAME_FUNC_OFFSET(10611, glVertexP2uiv, glVertexP2uiv, NULL, 648), - NAME_FUNC_OFFSET(10625, glVertexP3ui, glVertexP3ui, NULL, 649), - NAME_FUNC_OFFSET(10638, glVertexP3uiv, glVertexP3uiv, NULL, 650), - NAME_FUNC_OFFSET(10652, glVertexP4ui, glVertexP4ui, NULL, 651), - NAME_FUNC_OFFSET(10665, glVertexP4uiv, glVertexP4uiv, NULL, 652), - NAME_FUNC_OFFSET(10679, glBindTransformFeedback, glBindTransformFeedback, NULL, 653), - NAME_FUNC_OFFSET(10703, glDeleteTransformFeedbacks, glDeleteTransformFeedbacks, NULL, 654), - NAME_FUNC_OFFSET(10730, glDrawTransformFeedback, glDrawTransformFeedback, NULL, 655), - NAME_FUNC_OFFSET(10754, glGenTransformFeedbacks, glGenTransformFeedbacks, NULL, 656), - NAME_FUNC_OFFSET(10778, glIsTransformFeedback, glIsTransformFeedback, NULL, 657), - NAME_FUNC_OFFSET(10800, glPauseTransformFeedback, glPauseTransformFeedback, NULL, 658), - NAME_FUNC_OFFSET(10825, glResumeTransformFeedback, glResumeTransformFeedback, NULL, 659), - NAME_FUNC_OFFSET(10851, glClearDepthf, glClearDepthf, NULL, 660), - NAME_FUNC_OFFSET(10865, glDepthRangef, glDepthRangef, NULL, 661), - NAME_FUNC_OFFSET(10879, glGetShaderPrecisionFormat, glGetShaderPrecisionFormat, NULL, 662), - NAME_FUNC_OFFSET(10906, glReleaseShaderCompiler, glReleaseShaderCompiler, NULL, 663), - NAME_FUNC_OFFSET(10930, glShaderBinary, glShaderBinary, NULL, 664), - NAME_FUNC_OFFSET(10945, glDebugMessageCallbackARB, glDebugMessageCallbackARB, NULL, 665), - NAME_FUNC_OFFSET(10971, glDebugMessageControlARB, glDebugMessageControlARB, NULL, 666), - NAME_FUNC_OFFSET(10996, glDebugMessageInsertARB, glDebugMessageInsertARB, NULL, 667), - NAME_FUNC_OFFSET(11020, glGetDebugMessageLogARB, glGetDebugMessageLogARB, NULL, 668), - NAME_FUNC_OFFSET(11044, glGetGraphicsResetStatusARB, glGetGraphicsResetStatusARB, NULL, 669), - NAME_FUNC_OFFSET(11072, glGetnColorTableARB, glGetnColorTableARB, NULL, 670), - NAME_FUNC_OFFSET(11092, glGetnCompressedTexImageARB, glGetnCompressedTexImageARB, NULL, 671), - NAME_FUNC_OFFSET(11120, glGetnConvolutionFilterARB, glGetnConvolutionFilterARB, NULL, 672), - NAME_FUNC_OFFSET(11147, glGetnHistogramARB, glGetnHistogramARB, NULL, 673), - NAME_FUNC_OFFSET(11166, glGetnMapdvARB, glGetnMapdvARB, NULL, 674), - NAME_FUNC_OFFSET(11181, glGetnMapfvARB, glGetnMapfvARB, NULL, 675), - NAME_FUNC_OFFSET(11196, glGetnMapivARB, glGetnMapivARB, NULL, 676), - NAME_FUNC_OFFSET(11211, glGetnMinmaxARB, glGetnMinmaxARB, NULL, 677), - NAME_FUNC_OFFSET(11227, glGetnPixelMapfvARB, glGetnPixelMapfvARB, NULL, 678), - NAME_FUNC_OFFSET(11247, glGetnPixelMapuivARB, glGetnPixelMapuivARB, NULL, 679), - NAME_FUNC_OFFSET(11268, glGetnPixelMapusvARB, glGetnPixelMapusvARB, NULL, 680), - NAME_FUNC_OFFSET(11289, glGetnPolygonStippleARB, glGetnPolygonStippleARB, NULL, 681), - NAME_FUNC_OFFSET(11313, glGetnSeparableFilterARB, glGetnSeparableFilterARB, NULL, 682), - NAME_FUNC_OFFSET(11338, glGetnTexImageARB, glGetnTexImageARB, NULL, 683), - NAME_FUNC_OFFSET(11356, glGetnUniformdvARB, glGetnUniformdvARB, NULL, 684), - NAME_FUNC_OFFSET(11375, glGetnUniformfvARB, glGetnUniformfvARB, NULL, 685), - NAME_FUNC_OFFSET(11394, glGetnUniformivARB, glGetnUniformivARB, NULL, 686), - NAME_FUNC_OFFSET(11413, glGetnUniformuivARB, glGetnUniformuivARB, NULL, 687), - NAME_FUNC_OFFSET(11433, glReadnPixelsARB, glReadnPixelsARB, NULL, 688), - NAME_FUNC_OFFSET(11450, glTexStorage1D, glTexStorage1D, NULL, 689), - NAME_FUNC_OFFSET(11465, glTexStorage2D, glTexStorage2D, NULL, 690), - NAME_FUNC_OFFSET(11480, glTexStorage3D, glTexStorage3D, NULL, 691), - NAME_FUNC_OFFSET(11495, glTextureStorage1DEXT, glTextureStorage1DEXT, NULL, 692), - NAME_FUNC_OFFSET(11517, glTextureStorage2DEXT, glTextureStorage2DEXT, NULL, 693), - NAME_FUNC_OFFSET(11539, glTextureStorage3DEXT, glTextureStorage3DEXT, NULL, 694), - NAME_FUNC_OFFSET(11561, glPolygonOffsetEXT, glPolygonOffsetEXT, NULL, 695), - NAME_FUNC_OFFSET(11580, gl_dispatch_stub_696, gl_dispatch_stub_696, NULL, 696), - NAME_FUNC_OFFSET(11612, gl_dispatch_stub_697, gl_dispatch_stub_697, NULL, 697), - NAME_FUNC_OFFSET(11644, gl_dispatch_stub_698, gl_dispatch_stub_698, NULL, 698), - NAME_FUNC_OFFSET(11672, gl_dispatch_stub_699, gl_dispatch_stub_699, NULL, 699), - NAME_FUNC_OFFSET(11701, gl_dispatch_stub_700, gl_dispatch_stub_700, NULL, 700), - NAME_FUNC_OFFSET(11729, gl_dispatch_stub_701, gl_dispatch_stub_701, NULL, 701), - NAME_FUNC_OFFSET(11758, gl_dispatch_stub_702, gl_dispatch_stub_702, NULL, 702), - NAME_FUNC_OFFSET(11775, gl_dispatch_stub_703, gl_dispatch_stub_703, NULL, 703), - NAME_FUNC_OFFSET(11795, glColorPointerEXT, glColorPointerEXT, NULL, 704), - NAME_FUNC_OFFSET(11813, glEdgeFlagPointerEXT, glEdgeFlagPointerEXT, NULL, 705), - NAME_FUNC_OFFSET(11834, glIndexPointerEXT, glIndexPointerEXT, NULL, 706), - NAME_FUNC_OFFSET(11852, glNormalPointerEXT, glNormalPointerEXT, NULL, 707), - NAME_FUNC_OFFSET(11871, glTexCoordPointerEXT, glTexCoordPointerEXT, NULL, 708), - NAME_FUNC_OFFSET(11892, glVertexPointerEXT, glVertexPointerEXT, NULL, 709), - NAME_FUNC_OFFSET(11911, glPointParameterfEXT, glPointParameterfEXT, NULL, 710), - NAME_FUNC_OFFSET(11932, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 711), - NAME_FUNC_OFFSET(11954, glLockArraysEXT, glLockArraysEXT, NULL, 712), - NAME_FUNC_OFFSET(11970, glUnlockArraysEXT, glUnlockArraysEXT, NULL, 713), - NAME_FUNC_OFFSET(11988, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, 714), - NAME_FUNC_OFFSET(12010, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, 715), - NAME_FUNC_OFFSET(12033, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, 716), - NAME_FUNC_OFFSET(12055, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, 717), - NAME_FUNC_OFFSET(12078, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 718), - NAME_FUNC_OFFSET(12100, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 719), - NAME_FUNC_OFFSET(12123, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, 720), - NAME_FUNC_OFFSET(12145, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, 721), - NAME_FUNC_OFFSET(12168, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, 722), - NAME_FUNC_OFFSET(12190, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, 723), - NAME_FUNC_OFFSET(12213, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, 724), - NAME_FUNC_OFFSET(12236, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, 725), - NAME_FUNC_OFFSET(12260, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, 726), - NAME_FUNC_OFFSET(12283, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, 727), - NAME_FUNC_OFFSET(12307, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, 728), - NAME_FUNC_OFFSET(12330, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, 729), - NAME_FUNC_OFFSET(12354, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, 730), - NAME_FUNC_OFFSET(12381, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, 731), - NAME_FUNC_OFFSET(12402, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 732), - NAME_FUNC_OFFSET(12425, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, 733), - NAME_FUNC_OFFSET(12446, glFogCoorddEXT, glFogCoorddEXT, NULL, 734), - NAME_FUNC_OFFSET(12461, glFogCoorddvEXT, glFogCoorddvEXT, NULL, 735), - NAME_FUNC_OFFSET(12477, glFogCoordfEXT, glFogCoordfEXT, NULL, 736), - NAME_FUNC_OFFSET(12492, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 737), - NAME_FUNC_OFFSET(12508, gl_dispatch_stub_738, gl_dispatch_stub_738, NULL, 738), - NAME_FUNC_OFFSET(12526, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 739), - NAME_FUNC_OFFSET(12549, glFlushVertexArrayRangeNV, glFlushVertexArrayRangeNV, NULL, 740), - NAME_FUNC_OFFSET(12575, glVertexArrayRangeNV, glVertexArrayRangeNV, NULL, 741), - NAME_FUNC_OFFSET(12596, glCombinerInputNV, glCombinerInputNV, NULL, 742), - NAME_FUNC_OFFSET(12614, glCombinerOutputNV, glCombinerOutputNV, NULL, 743), - NAME_FUNC_OFFSET(12633, glCombinerParameterfNV, glCombinerParameterfNV, NULL, 744), - NAME_FUNC_OFFSET(12656, glCombinerParameterfvNV, glCombinerParameterfvNV, NULL, 745), - NAME_FUNC_OFFSET(12680, glCombinerParameteriNV, glCombinerParameteriNV, NULL, 746), - NAME_FUNC_OFFSET(12703, glCombinerParameterivNV, glCombinerParameterivNV, NULL, 747), - NAME_FUNC_OFFSET(12727, glFinalCombinerInputNV, glFinalCombinerInputNV, NULL, 748), - NAME_FUNC_OFFSET(12750, glGetCombinerInputParameterfvNV, glGetCombinerInputParameterfvNV, NULL, 749), - NAME_FUNC_OFFSET(12782, glGetCombinerInputParameterivNV, glGetCombinerInputParameterivNV, NULL, 750), - NAME_FUNC_OFFSET(12814, glGetCombinerOutputParameterfvNV, glGetCombinerOutputParameterfvNV, NULL, 751), - NAME_FUNC_OFFSET(12847, glGetCombinerOutputParameterivNV, glGetCombinerOutputParameterivNV, NULL, 752), - NAME_FUNC_OFFSET(12880, glGetFinalCombinerInputParameterfvNV, glGetFinalCombinerInputParameterfvNV, NULL, 753), - NAME_FUNC_OFFSET(12917, glGetFinalCombinerInputParameterivNV, glGetFinalCombinerInputParameterivNV, NULL, 754), - NAME_FUNC_OFFSET(12954, glResizeBuffersMESA, glResizeBuffersMESA, NULL, 755), - NAME_FUNC_OFFSET(12974, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 756), - NAME_FUNC_OFFSET(12992, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 757), - NAME_FUNC_OFFSET(13011, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 758), - NAME_FUNC_OFFSET(13029, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 759), - NAME_FUNC_OFFSET(13048, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 760), - NAME_FUNC_OFFSET(13066, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 761), - NAME_FUNC_OFFSET(13085, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 762), - NAME_FUNC_OFFSET(13103, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 763), - NAME_FUNC_OFFSET(13122, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 764), - NAME_FUNC_OFFSET(13140, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 765), - NAME_FUNC_OFFSET(13159, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 766), - NAME_FUNC_OFFSET(13177, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 767), - NAME_FUNC_OFFSET(13196, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 768), - NAME_FUNC_OFFSET(13214, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 769), - NAME_FUNC_OFFSET(13233, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 770), - NAME_FUNC_OFFSET(13251, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 771), - NAME_FUNC_OFFSET(13270, glWindowPos4dMESA, glWindowPos4dMESA, NULL, 772), - NAME_FUNC_OFFSET(13288, glWindowPos4dvMESA, glWindowPos4dvMESA, NULL, 773), - NAME_FUNC_OFFSET(13307, glWindowPos4fMESA, glWindowPos4fMESA, NULL, 774), - NAME_FUNC_OFFSET(13325, glWindowPos4fvMESA, glWindowPos4fvMESA, NULL, 775), - NAME_FUNC_OFFSET(13344, glWindowPos4iMESA, glWindowPos4iMESA, NULL, 776), - NAME_FUNC_OFFSET(13362, glWindowPos4ivMESA, glWindowPos4ivMESA, NULL, 777), - NAME_FUNC_OFFSET(13381, glWindowPos4sMESA, glWindowPos4sMESA, NULL, 778), - NAME_FUNC_OFFSET(13399, glWindowPos4svMESA, glWindowPos4svMESA, NULL, 779), - NAME_FUNC_OFFSET(13418, gl_dispatch_stub_780, gl_dispatch_stub_780, NULL, 780), - NAME_FUNC_OFFSET(13443, gl_dispatch_stub_781, gl_dispatch_stub_781, NULL, 781), - NAME_FUNC_OFFSET(13470, gl_dispatch_stub_782, gl_dispatch_stub_782, NULL, 782), - NAME_FUNC_OFFSET(13487, gl_dispatch_stub_783, gl_dispatch_stub_783, NULL, 783), - NAME_FUNC_OFFSET(13503, gl_dispatch_stub_784, gl_dispatch_stub_784, NULL, 784), - NAME_FUNC_OFFSET(13517, gl_dispatch_stub_785, gl_dispatch_stub_785, NULL, 785), - NAME_FUNC_OFFSET(13532, gl_dispatch_stub_786, gl_dispatch_stub_786, NULL, 786), - NAME_FUNC_OFFSET(13544, gl_dispatch_stub_787, gl_dispatch_stub_787, NULL, 787), - NAME_FUNC_OFFSET(13557, gl_dispatch_stub_788, gl_dispatch_stub_788, NULL, 788), - NAME_FUNC_OFFSET(13571, glAreProgramsResidentNV, glAreProgramsResidentNV, NULL, 789), - NAME_FUNC_OFFSET(13595, glBindProgramNV, glBindProgramNV, NULL, 790), - NAME_FUNC_OFFSET(13611, glDeleteProgramsNV, glDeleteProgramsNV, NULL, 791), - NAME_FUNC_OFFSET(13630, glExecuteProgramNV, glExecuteProgramNV, NULL, 792), - NAME_FUNC_OFFSET(13649, glGenProgramsNV, glGenProgramsNV, NULL, 793), - NAME_FUNC_OFFSET(13665, glGetProgramParameterdvNV, glGetProgramParameterdvNV, NULL, 794), - NAME_FUNC_OFFSET(13691, glGetProgramParameterfvNV, glGetProgramParameterfvNV, NULL, 795), - NAME_FUNC_OFFSET(13717, glGetProgramStringNV, glGetProgramStringNV, NULL, 796), - NAME_FUNC_OFFSET(13738, glGetProgramivNV, glGetProgramivNV, NULL, 797), - NAME_FUNC_OFFSET(13755, glGetTrackMatrixivNV, glGetTrackMatrixivNV, NULL, 798), - NAME_FUNC_OFFSET(13776, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 799), - NAME_FUNC_OFFSET(13804, glGetVertexAttribdvNV, glGetVertexAttribdvNV, NULL, 800), - NAME_FUNC_OFFSET(13826, glGetVertexAttribfvNV, glGetVertexAttribfvNV, NULL, 801), - NAME_FUNC_OFFSET(13848, glGetVertexAttribivNV, glGetVertexAttribivNV, NULL, 802), - NAME_FUNC_OFFSET(13870, glIsProgramNV, glIsProgramNV, NULL, 803), - NAME_FUNC_OFFSET(13884, glLoadProgramNV, glLoadProgramNV, NULL, 804), - NAME_FUNC_OFFSET(13900, glProgramParameters4dvNV, glProgramParameters4dvNV, NULL, 805), - NAME_FUNC_OFFSET(13925, glProgramParameters4fvNV, glProgramParameters4fvNV, NULL, 806), - NAME_FUNC_OFFSET(13950, glRequestResidentProgramsNV, glRequestResidentProgramsNV, NULL, 807), - NAME_FUNC_OFFSET(13978, glTrackMatrixNV, glTrackMatrixNV, NULL, 808), - NAME_FUNC_OFFSET(13994, glVertexAttrib1dNV, glVertexAttrib1dNV, NULL, 809), - NAME_FUNC_OFFSET(14013, glVertexAttrib1dvNV, glVertexAttrib1dvNV, NULL, 810), - NAME_FUNC_OFFSET(14033, glVertexAttrib1fNV, glVertexAttrib1fNV, NULL, 811), - NAME_FUNC_OFFSET(14052, glVertexAttrib1fvNV, glVertexAttrib1fvNV, NULL, 812), - NAME_FUNC_OFFSET(14072, glVertexAttrib1sNV, glVertexAttrib1sNV, NULL, 813), - NAME_FUNC_OFFSET(14091, glVertexAttrib1svNV, glVertexAttrib1svNV, NULL, 814), - NAME_FUNC_OFFSET(14111, glVertexAttrib2dNV, glVertexAttrib2dNV, NULL, 815), - NAME_FUNC_OFFSET(14130, glVertexAttrib2dvNV, glVertexAttrib2dvNV, NULL, 816), - NAME_FUNC_OFFSET(14150, glVertexAttrib2fNV, glVertexAttrib2fNV, NULL, 817), - NAME_FUNC_OFFSET(14169, glVertexAttrib2fvNV, glVertexAttrib2fvNV, NULL, 818), - NAME_FUNC_OFFSET(14189, glVertexAttrib2sNV, glVertexAttrib2sNV, NULL, 819), - NAME_FUNC_OFFSET(14208, glVertexAttrib2svNV, glVertexAttrib2svNV, NULL, 820), - NAME_FUNC_OFFSET(14228, glVertexAttrib3dNV, glVertexAttrib3dNV, NULL, 821), - NAME_FUNC_OFFSET(14247, glVertexAttrib3dvNV, glVertexAttrib3dvNV, NULL, 822), - NAME_FUNC_OFFSET(14267, glVertexAttrib3fNV, glVertexAttrib3fNV, NULL, 823), - NAME_FUNC_OFFSET(14286, glVertexAttrib3fvNV, glVertexAttrib3fvNV, NULL, 824), - NAME_FUNC_OFFSET(14306, glVertexAttrib3sNV, glVertexAttrib3sNV, NULL, 825), - NAME_FUNC_OFFSET(14325, glVertexAttrib3svNV, glVertexAttrib3svNV, NULL, 826), - NAME_FUNC_OFFSET(14345, glVertexAttrib4dNV, glVertexAttrib4dNV, NULL, 827), - NAME_FUNC_OFFSET(14364, glVertexAttrib4dvNV, glVertexAttrib4dvNV, NULL, 828), - NAME_FUNC_OFFSET(14384, glVertexAttrib4fNV, glVertexAttrib4fNV, NULL, 829), - NAME_FUNC_OFFSET(14403, glVertexAttrib4fvNV, glVertexAttrib4fvNV, NULL, 830), - NAME_FUNC_OFFSET(14423, glVertexAttrib4sNV, glVertexAttrib4sNV, NULL, 831), - NAME_FUNC_OFFSET(14442, glVertexAttrib4svNV, glVertexAttrib4svNV, NULL, 832), - NAME_FUNC_OFFSET(14462, glVertexAttrib4ubNV, glVertexAttrib4ubNV, NULL, 833), - NAME_FUNC_OFFSET(14482, glVertexAttrib4ubvNV, glVertexAttrib4ubvNV, NULL, 834), - NAME_FUNC_OFFSET(14503, glVertexAttribPointerNV, glVertexAttribPointerNV, NULL, 835), - NAME_FUNC_OFFSET(14527, glVertexAttribs1dvNV, glVertexAttribs1dvNV, NULL, 836), - NAME_FUNC_OFFSET(14548, glVertexAttribs1fvNV, glVertexAttribs1fvNV, NULL, 837), - NAME_FUNC_OFFSET(14569, glVertexAttribs1svNV, glVertexAttribs1svNV, NULL, 838), - NAME_FUNC_OFFSET(14590, glVertexAttribs2dvNV, glVertexAttribs2dvNV, NULL, 839), - NAME_FUNC_OFFSET(14611, glVertexAttribs2fvNV, glVertexAttribs2fvNV, NULL, 840), - NAME_FUNC_OFFSET(14632, glVertexAttribs2svNV, glVertexAttribs2svNV, NULL, 841), - NAME_FUNC_OFFSET(14653, glVertexAttribs3dvNV, glVertexAttribs3dvNV, NULL, 842), - NAME_FUNC_OFFSET(14674, glVertexAttribs3fvNV, glVertexAttribs3fvNV, NULL, 843), - NAME_FUNC_OFFSET(14695, glVertexAttribs3svNV, glVertexAttribs3svNV, NULL, 844), - NAME_FUNC_OFFSET(14716, glVertexAttribs4dvNV, glVertexAttribs4dvNV, NULL, 845), - NAME_FUNC_OFFSET(14737, glVertexAttribs4fvNV, glVertexAttribs4fvNV, NULL, 846), - NAME_FUNC_OFFSET(14758, glVertexAttribs4svNV, glVertexAttribs4svNV, NULL, 847), - NAME_FUNC_OFFSET(14779, glVertexAttribs4ubvNV, glVertexAttribs4ubvNV, NULL, 848), - NAME_FUNC_OFFSET(14801, glGetTexBumpParameterfvATI, glGetTexBumpParameterfvATI, NULL, 849), - NAME_FUNC_OFFSET(14828, glGetTexBumpParameterivATI, glGetTexBumpParameterivATI, NULL, 850), - NAME_FUNC_OFFSET(14855, glTexBumpParameterfvATI, glTexBumpParameterfvATI, NULL, 851), - NAME_FUNC_OFFSET(14879, glTexBumpParameterivATI, glTexBumpParameterivATI, NULL, 852), - NAME_FUNC_OFFSET(14903, glAlphaFragmentOp1ATI, glAlphaFragmentOp1ATI, NULL, 853), - NAME_FUNC_OFFSET(14925, glAlphaFragmentOp2ATI, glAlphaFragmentOp2ATI, NULL, 854), - NAME_FUNC_OFFSET(14947, glAlphaFragmentOp3ATI, glAlphaFragmentOp3ATI, NULL, 855), - NAME_FUNC_OFFSET(14969, glBeginFragmentShaderATI, glBeginFragmentShaderATI, NULL, 856), - NAME_FUNC_OFFSET(14994, glBindFragmentShaderATI, glBindFragmentShaderATI, NULL, 857), - NAME_FUNC_OFFSET(15018, glColorFragmentOp1ATI, glColorFragmentOp1ATI, NULL, 858), - NAME_FUNC_OFFSET(15040, glColorFragmentOp2ATI, glColorFragmentOp2ATI, NULL, 859), - NAME_FUNC_OFFSET(15062, glColorFragmentOp3ATI, glColorFragmentOp3ATI, NULL, 860), - NAME_FUNC_OFFSET(15084, glDeleteFragmentShaderATI, glDeleteFragmentShaderATI, NULL, 861), - NAME_FUNC_OFFSET(15110, glEndFragmentShaderATI, glEndFragmentShaderATI, NULL, 862), - NAME_FUNC_OFFSET(15133, glGenFragmentShadersATI, glGenFragmentShadersATI, NULL, 863), - NAME_FUNC_OFFSET(15157, glPassTexCoordATI, glPassTexCoordATI, NULL, 864), - NAME_FUNC_OFFSET(15175, glSampleMapATI, glSampleMapATI, NULL, 865), - NAME_FUNC_OFFSET(15190, glSetFragmentShaderConstantATI, glSetFragmentShaderConstantATI, NULL, 866), - NAME_FUNC_OFFSET(15221, glPointParameteriNV, glPointParameteriNV, NULL, 867), - NAME_FUNC_OFFSET(15241, glPointParameterivNV, glPointParameterivNV, NULL, 868), - NAME_FUNC_OFFSET(15262, gl_dispatch_stub_869, gl_dispatch_stub_869, NULL, 869), - NAME_FUNC_OFFSET(15285, gl_dispatch_stub_870, gl_dispatch_stub_870, NULL, 870), - NAME_FUNC_OFFSET(15308, gl_dispatch_stub_871, gl_dispatch_stub_871, NULL, 871), + NAME_FUNC_OFFSET( 9751, glBindFragDataLocationIndexed, glBindFragDataLocationIndexed, NULL, 601), + NAME_FUNC_OFFSET( 9781, glGetFragDataIndex, glGetFragDataIndex, NULL, 602), + NAME_FUNC_OFFSET( 9800, glBindSampler, glBindSampler, NULL, 603), + NAME_FUNC_OFFSET( 9814, glDeleteSamplers, glDeleteSamplers, NULL, 604), + NAME_FUNC_OFFSET( 9831, glGenSamplers, glGenSamplers, NULL, 605), + NAME_FUNC_OFFSET( 9845, glGetSamplerParameterIiv, glGetSamplerParameterIiv, NULL, 606), + NAME_FUNC_OFFSET( 9870, glGetSamplerParameterIuiv, glGetSamplerParameterIuiv, NULL, 607), + NAME_FUNC_OFFSET( 9896, glGetSamplerParameterfv, glGetSamplerParameterfv, NULL, 608), + NAME_FUNC_OFFSET( 9920, glGetSamplerParameteriv, glGetSamplerParameteriv, NULL, 609), + NAME_FUNC_OFFSET( 9944, glIsSampler, glIsSampler, NULL, 610), + NAME_FUNC_OFFSET( 9956, glSamplerParameterIiv, glSamplerParameterIiv, NULL, 611), + NAME_FUNC_OFFSET( 9978, glSamplerParameterIuiv, glSamplerParameterIuiv, NULL, 612), + NAME_FUNC_OFFSET(10001, glSamplerParameterf, glSamplerParameterf, NULL, 613), + NAME_FUNC_OFFSET(10021, glSamplerParameterfv, glSamplerParameterfv, NULL, 614), + NAME_FUNC_OFFSET(10042, glSamplerParameteri, glSamplerParameteri, NULL, 615), + NAME_FUNC_OFFSET(10062, glSamplerParameteriv, glSamplerParameteriv, NULL, 616), + NAME_FUNC_OFFSET(10083, glColorP3ui, glColorP3ui, NULL, 617), + NAME_FUNC_OFFSET(10095, glColorP3uiv, glColorP3uiv, NULL, 618), + NAME_FUNC_OFFSET(10108, glColorP4ui, glColorP4ui, NULL, 619), + NAME_FUNC_OFFSET(10120, glColorP4uiv, glColorP4uiv, NULL, 620), + NAME_FUNC_OFFSET(10133, glMultiTexCoordP1ui, glMultiTexCoordP1ui, NULL, 621), + NAME_FUNC_OFFSET(10153, glMultiTexCoordP1uiv, glMultiTexCoordP1uiv, NULL, 622), + NAME_FUNC_OFFSET(10174, glMultiTexCoordP2ui, glMultiTexCoordP2ui, NULL, 623), + NAME_FUNC_OFFSET(10194, glMultiTexCoordP2uiv, glMultiTexCoordP2uiv, NULL, 624), + NAME_FUNC_OFFSET(10215, glMultiTexCoordP3ui, glMultiTexCoordP3ui, NULL, 625), + NAME_FUNC_OFFSET(10235, glMultiTexCoordP3uiv, glMultiTexCoordP3uiv, NULL, 626), + NAME_FUNC_OFFSET(10256, glMultiTexCoordP4ui, glMultiTexCoordP4ui, NULL, 627), + NAME_FUNC_OFFSET(10276, glMultiTexCoordP4uiv, glMultiTexCoordP4uiv, NULL, 628), + NAME_FUNC_OFFSET(10297, glNormalP3ui, glNormalP3ui, NULL, 629), + NAME_FUNC_OFFSET(10310, glNormalP3uiv, glNormalP3uiv, NULL, 630), + NAME_FUNC_OFFSET(10324, glSecondaryColorP3ui, glSecondaryColorP3ui, NULL, 631), + NAME_FUNC_OFFSET(10345, glSecondaryColorP3uiv, glSecondaryColorP3uiv, NULL, 632), + NAME_FUNC_OFFSET(10367, glTexCoordP1ui, glTexCoordP1ui, NULL, 633), + NAME_FUNC_OFFSET(10382, glTexCoordP1uiv, glTexCoordP1uiv, NULL, 634), + NAME_FUNC_OFFSET(10398, glTexCoordP2ui, glTexCoordP2ui, NULL, 635), + NAME_FUNC_OFFSET(10413, glTexCoordP2uiv, glTexCoordP2uiv, NULL, 636), + NAME_FUNC_OFFSET(10429, glTexCoordP3ui, glTexCoordP3ui, NULL, 637), + NAME_FUNC_OFFSET(10444, glTexCoordP3uiv, glTexCoordP3uiv, NULL, 638), + NAME_FUNC_OFFSET(10460, glTexCoordP4ui, glTexCoordP4ui, NULL, 639), + NAME_FUNC_OFFSET(10475, glTexCoordP4uiv, glTexCoordP4uiv, NULL, 640), + NAME_FUNC_OFFSET(10491, glVertexAttribP1ui, glVertexAttribP1ui, NULL, 641), + NAME_FUNC_OFFSET(10510, glVertexAttribP1uiv, glVertexAttribP1uiv, NULL, 642), + NAME_FUNC_OFFSET(10530, glVertexAttribP2ui, glVertexAttribP2ui, NULL, 643), + NAME_FUNC_OFFSET(10549, glVertexAttribP2uiv, glVertexAttribP2uiv, NULL, 644), + NAME_FUNC_OFFSET(10569, glVertexAttribP3ui, glVertexAttribP3ui, NULL, 645), + NAME_FUNC_OFFSET(10588, glVertexAttribP3uiv, glVertexAttribP3uiv, NULL, 646), + NAME_FUNC_OFFSET(10608, glVertexAttribP4ui, glVertexAttribP4ui, NULL, 647), + NAME_FUNC_OFFSET(10627, glVertexAttribP4uiv, glVertexAttribP4uiv, NULL, 648), + NAME_FUNC_OFFSET(10647, glVertexP2ui, glVertexP2ui, NULL, 649), + NAME_FUNC_OFFSET(10660, glVertexP2uiv, glVertexP2uiv, NULL, 650), + NAME_FUNC_OFFSET(10674, glVertexP3ui, glVertexP3ui, NULL, 651), + NAME_FUNC_OFFSET(10687, glVertexP3uiv, glVertexP3uiv, NULL, 652), + NAME_FUNC_OFFSET(10701, glVertexP4ui, glVertexP4ui, NULL, 653), + NAME_FUNC_OFFSET(10714, glVertexP4uiv, glVertexP4uiv, NULL, 654), + NAME_FUNC_OFFSET(10728, glBindTransformFeedback, glBindTransformFeedback, NULL, 655), + NAME_FUNC_OFFSET(10752, glDeleteTransformFeedbacks, glDeleteTransformFeedbacks, NULL, 656), + NAME_FUNC_OFFSET(10779, glDrawTransformFeedback, glDrawTransformFeedback, NULL, 657), + NAME_FUNC_OFFSET(10803, glGenTransformFeedbacks, glGenTransformFeedbacks, NULL, 658), + NAME_FUNC_OFFSET(10827, glIsTransformFeedback, glIsTransformFeedback, NULL, 659), + NAME_FUNC_OFFSET(10849, glPauseTransformFeedback, glPauseTransformFeedback, NULL, 660), + NAME_FUNC_OFFSET(10874, glResumeTransformFeedback, glResumeTransformFeedback, NULL, 661), + NAME_FUNC_OFFSET(10900, glClearDepthf, glClearDepthf, NULL, 662), + NAME_FUNC_OFFSET(10914, glDepthRangef, glDepthRangef, NULL, 663), + NAME_FUNC_OFFSET(10928, glGetShaderPrecisionFormat, glGetShaderPrecisionFormat, NULL, 664), + NAME_FUNC_OFFSET(10955, glReleaseShaderCompiler, glReleaseShaderCompiler, NULL, 665), + NAME_FUNC_OFFSET(10979, glShaderBinary, glShaderBinary, NULL, 666), + NAME_FUNC_OFFSET(10994, glDebugMessageCallbackARB, glDebugMessageCallbackARB, NULL, 667), + NAME_FUNC_OFFSET(11020, glDebugMessageControlARB, glDebugMessageControlARB, NULL, 668), + NAME_FUNC_OFFSET(11045, glDebugMessageInsertARB, glDebugMessageInsertARB, NULL, 669), + NAME_FUNC_OFFSET(11069, glGetDebugMessageLogARB, glGetDebugMessageLogARB, NULL, 670), + NAME_FUNC_OFFSET(11093, glGetGraphicsResetStatusARB, glGetGraphicsResetStatusARB, NULL, 671), + NAME_FUNC_OFFSET(11121, glGetnColorTableARB, glGetnColorTableARB, NULL, 672), + NAME_FUNC_OFFSET(11141, glGetnCompressedTexImageARB, glGetnCompressedTexImageARB, NULL, 673), + NAME_FUNC_OFFSET(11169, glGetnConvolutionFilterARB, glGetnConvolutionFilterARB, NULL, 674), + NAME_FUNC_OFFSET(11196, glGetnHistogramARB, glGetnHistogramARB, NULL, 675), + NAME_FUNC_OFFSET(11215, glGetnMapdvARB, glGetnMapdvARB, NULL, 676), + NAME_FUNC_OFFSET(11230, glGetnMapfvARB, glGetnMapfvARB, NULL, 677), + NAME_FUNC_OFFSET(11245, glGetnMapivARB, glGetnMapivARB, NULL, 678), + NAME_FUNC_OFFSET(11260, glGetnMinmaxARB, glGetnMinmaxARB, NULL, 679), + NAME_FUNC_OFFSET(11276, glGetnPixelMapfvARB, glGetnPixelMapfvARB, NULL, 680), + NAME_FUNC_OFFSET(11296, glGetnPixelMapuivARB, glGetnPixelMapuivARB, NULL, 681), + NAME_FUNC_OFFSET(11317, glGetnPixelMapusvARB, glGetnPixelMapusvARB, NULL, 682), + NAME_FUNC_OFFSET(11338, glGetnPolygonStippleARB, glGetnPolygonStippleARB, NULL, 683), + NAME_FUNC_OFFSET(11362, glGetnSeparableFilterARB, glGetnSeparableFilterARB, NULL, 684), + NAME_FUNC_OFFSET(11387, glGetnTexImageARB, glGetnTexImageARB, NULL, 685), + NAME_FUNC_OFFSET(11405, glGetnUniformdvARB, glGetnUniformdvARB, NULL, 686), + NAME_FUNC_OFFSET(11424, glGetnUniformfvARB, glGetnUniformfvARB, NULL, 687), + NAME_FUNC_OFFSET(11443, glGetnUniformivARB, glGetnUniformivARB, NULL, 688), + NAME_FUNC_OFFSET(11462, glGetnUniformuivARB, glGetnUniformuivARB, NULL, 689), + NAME_FUNC_OFFSET(11482, glReadnPixelsARB, glReadnPixelsARB, NULL, 690), + NAME_FUNC_OFFSET(11499, glTexStorage1D, glTexStorage1D, NULL, 691), + NAME_FUNC_OFFSET(11514, glTexStorage2D, glTexStorage2D, NULL, 692), + NAME_FUNC_OFFSET(11529, glTexStorage3D, glTexStorage3D, NULL, 693), + NAME_FUNC_OFFSET(11544, glTextureStorage1DEXT, glTextureStorage1DEXT, NULL, 694), + NAME_FUNC_OFFSET(11566, glTextureStorage2DEXT, glTextureStorage2DEXT, NULL, 695), + NAME_FUNC_OFFSET(11588, glTextureStorage3DEXT, glTextureStorage3DEXT, NULL, 696), + NAME_FUNC_OFFSET(11610, glPolygonOffsetEXT, glPolygonOffsetEXT, NULL, 697), + NAME_FUNC_OFFSET(11629, gl_dispatch_stub_698, gl_dispatch_stub_698, NULL, 698), + NAME_FUNC_OFFSET(11661, gl_dispatch_stub_699, gl_dispatch_stub_699, NULL, 699), + NAME_FUNC_OFFSET(11693, gl_dispatch_stub_700, gl_dispatch_stub_700, NULL, 700), + NAME_FUNC_OFFSET(11721, gl_dispatch_stub_701, gl_dispatch_stub_701, NULL, 701), + NAME_FUNC_OFFSET(11750, gl_dispatch_stub_702, gl_dispatch_stub_702, NULL, 702), + NAME_FUNC_OFFSET(11778, gl_dispatch_stub_703, gl_dispatch_stub_703, NULL, 703), + NAME_FUNC_OFFSET(11807, gl_dispatch_stub_704, gl_dispatch_stub_704, NULL, 704), + NAME_FUNC_OFFSET(11824, gl_dispatch_stub_705, gl_dispatch_stub_705, NULL, 705), + NAME_FUNC_OFFSET(11844, glColorPointerEXT, glColorPointerEXT, NULL, 706), + NAME_FUNC_OFFSET(11862, glEdgeFlagPointerEXT, glEdgeFlagPointerEXT, NULL, 707), + NAME_FUNC_OFFSET(11883, glIndexPointerEXT, glIndexPointerEXT, NULL, 708), + NAME_FUNC_OFFSET(11901, glNormalPointerEXT, glNormalPointerEXT, NULL, 709), + NAME_FUNC_OFFSET(11920, glTexCoordPointerEXT, glTexCoordPointerEXT, NULL, 710), + NAME_FUNC_OFFSET(11941, glVertexPointerEXT, glVertexPointerEXT, NULL, 711), + NAME_FUNC_OFFSET(11960, glPointParameterfEXT, glPointParameterfEXT, NULL, 712), + NAME_FUNC_OFFSET(11981, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 713), + NAME_FUNC_OFFSET(12003, glLockArraysEXT, glLockArraysEXT, NULL, 714), + NAME_FUNC_OFFSET(12019, glUnlockArraysEXT, glUnlockArraysEXT, NULL, 715), + NAME_FUNC_OFFSET(12037, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, 716), + NAME_FUNC_OFFSET(12059, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, 717), + NAME_FUNC_OFFSET(12082, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, 718), + NAME_FUNC_OFFSET(12104, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, 719), + NAME_FUNC_OFFSET(12127, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 720), + NAME_FUNC_OFFSET(12149, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 721), + NAME_FUNC_OFFSET(12172, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, 722), + NAME_FUNC_OFFSET(12194, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, 723), + NAME_FUNC_OFFSET(12217, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, 724), + NAME_FUNC_OFFSET(12239, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, 725), + NAME_FUNC_OFFSET(12262, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, 726), + NAME_FUNC_OFFSET(12285, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, 727), + NAME_FUNC_OFFSET(12309, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, 728), + NAME_FUNC_OFFSET(12332, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, 729), + NAME_FUNC_OFFSET(12356, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, 730), + NAME_FUNC_OFFSET(12379, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, 731), + NAME_FUNC_OFFSET(12403, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, 732), + NAME_FUNC_OFFSET(12430, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, 733), + NAME_FUNC_OFFSET(12451, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 734), + NAME_FUNC_OFFSET(12474, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, 735), + NAME_FUNC_OFFSET(12495, glFogCoorddEXT, glFogCoorddEXT, NULL, 736), + NAME_FUNC_OFFSET(12510, glFogCoorddvEXT, glFogCoorddvEXT, NULL, 737), + NAME_FUNC_OFFSET(12526, glFogCoordfEXT, glFogCoordfEXT, NULL, 738), + NAME_FUNC_OFFSET(12541, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 739), + NAME_FUNC_OFFSET(12557, gl_dispatch_stub_740, gl_dispatch_stub_740, NULL, 740), + NAME_FUNC_OFFSET(12575, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 741), + NAME_FUNC_OFFSET(12598, glFlushVertexArrayRangeNV, glFlushVertexArrayRangeNV, NULL, 742), + NAME_FUNC_OFFSET(12624, glVertexArrayRangeNV, glVertexArrayRangeNV, NULL, 743), + NAME_FUNC_OFFSET(12645, glCombinerInputNV, glCombinerInputNV, NULL, 744), + NAME_FUNC_OFFSET(12663, glCombinerOutputNV, glCombinerOutputNV, NULL, 745), + NAME_FUNC_OFFSET(12682, glCombinerParameterfNV, glCombinerParameterfNV, NULL, 746), + NAME_FUNC_OFFSET(12705, glCombinerParameterfvNV, glCombinerParameterfvNV, NULL, 747), + NAME_FUNC_OFFSET(12729, glCombinerParameteriNV, glCombinerParameteriNV, NULL, 748), + NAME_FUNC_OFFSET(12752, glCombinerParameterivNV, glCombinerParameterivNV, NULL, 749), + NAME_FUNC_OFFSET(12776, glFinalCombinerInputNV, glFinalCombinerInputNV, NULL, 750), + NAME_FUNC_OFFSET(12799, glGetCombinerInputParameterfvNV, glGetCombinerInputParameterfvNV, NULL, 751), + NAME_FUNC_OFFSET(12831, glGetCombinerInputParameterivNV, glGetCombinerInputParameterivNV, NULL, 752), + NAME_FUNC_OFFSET(12863, glGetCombinerOutputParameterfvNV, glGetCombinerOutputParameterfvNV, NULL, 753), + NAME_FUNC_OFFSET(12896, glGetCombinerOutputParameterivNV, glGetCombinerOutputParameterivNV, NULL, 754), + NAME_FUNC_OFFSET(12929, glGetFinalCombinerInputParameterfvNV, glGetFinalCombinerInputParameterfvNV, NULL, 755), + NAME_FUNC_OFFSET(12966, glGetFinalCombinerInputParameterivNV, glGetFinalCombinerInputParameterivNV, NULL, 756), + NAME_FUNC_OFFSET(13003, glResizeBuffersMESA, glResizeBuffersMESA, NULL, 757), + NAME_FUNC_OFFSET(13023, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 758), + NAME_FUNC_OFFSET(13041, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 759), + NAME_FUNC_OFFSET(13060, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 760), + NAME_FUNC_OFFSET(13078, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 761), + NAME_FUNC_OFFSET(13097, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 762), + NAME_FUNC_OFFSET(13115, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 763), + NAME_FUNC_OFFSET(13134, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 764), + NAME_FUNC_OFFSET(13152, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 765), + NAME_FUNC_OFFSET(13171, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 766), + NAME_FUNC_OFFSET(13189, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 767), + NAME_FUNC_OFFSET(13208, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 768), + NAME_FUNC_OFFSET(13226, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 769), + NAME_FUNC_OFFSET(13245, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 770), + NAME_FUNC_OFFSET(13263, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 771), + NAME_FUNC_OFFSET(13282, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 772), + NAME_FUNC_OFFSET(13300, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 773), + NAME_FUNC_OFFSET(13319, glWindowPos4dMESA, glWindowPos4dMESA, NULL, 774), + NAME_FUNC_OFFSET(13337, glWindowPos4dvMESA, glWindowPos4dvMESA, NULL, 775), + NAME_FUNC_OFFSET(13356, glWindowPos4fMESA, glWindowPos4fMESA, NULL, 776), + NAME_FUNC_OFFSET(13374, glWindowPos4fvMESA, glWindowPos4fvMESA, NULL, 777), + NAME_FUNC_OFFSET(13393, glWindowPos4iMESA, glWindowPos4iMESA, NULL, 778), + NAME_FUNC_OFFSET(13411, glWindowPos4ivMESA, glWindowPos4ivMESA, NULL, 779), + NAME_FUNC_OFFSET(13430, glWindowPos4sMESA, glWindowPos4sMESA, NULL, 780), + NAME_FUNC_OFFSET(13448, glWindowPos4svMESA, glWindowPos4svMESA, NULL, 781), + NAME_FUNC_OFFSET(13467, gl_dispatch_stub_782, gl_dispatch_stub_782, NULL, 782), + NAME_FUNC_OFFSET(13492, gl_dispatch_stub_783, gl_dispatch_stub_783, NULL, 783), + NAME_FUNC_OFFSET(13519, gl_dispatch_stub_784, gl_dispatch_stub_784, NULL, 784), + NAME_FUNC_OFFSET(13536, gl_dispatch_stub_785, gl_dispatch_stub_785, NULL, 785), + NAME_FUNC_OFFSET(13552, gl_dispatch_stub_786, gl_dispatch_stub_786, NULL, 786), + NAME_FUNC_OFFSET(13566, gl_dispatch_stub_787, gl_dispatch_stub_787, NULL, 787), + NAME_FUNC_OFFSET(13581, gl_dispatch_stub_788, gl_dispatch_stub_788, NULL, 788), + NAME_FUNC_OFFSET(13593, gl_dispatch_stub_789, gl_dispatch_stub_789, NULL, 789), + NAME_FUNC_OFFSET(13606, gl_dispatch_stub_790, gl_dispatch_stub_790, NULL, 790), + NAME_FUNC_OFFSET(13620, glAreProgramsResidentNV, glAreProgramsResidentNV, NULL, 791), + NAME_FUNC_OFFSET(13644, glBindProgramNV, glBindProgramNV, NULL, 792), + NAME_FUNC_OFFSET(13660, glDeleteProgramsNV, glDeleteProgramsNV, NULL, 793), + NAME_FUNC_OFFSET(13679, glExecuteProgramNV, glExecuteProgramNV, NULL, 794), + NAME_FUNC_OFFSET(13698, glGenProgramsNV, glGenProgramsNV, NULL, 795), + NAME_FUNC_OFFSET(13714, glGetProgramParameterdvNV, glGetProgramParameterdvNV, NULL, 796), + NAME_FUNC_OFFSET(13740, glGetProgramParameterfvNV, glGetProgramParameterfvNV, NULL, 797), + NAME_FUNC_OFFSET(13766, glGetProgramStringNV, glGetProgramStringNV, NULL, 798), + NAME_FUNC_OFFSET(13787, glGetProgramivNV, glGetProgramivNV, NULL, 799), + NAME_FUNC_OFFSET(13804, glGetTrackMatrixivNV, glGetTrackMatrixivNV, NULL, 800), + NAME_FUNC_OFFSET(13825, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 801), + NAME_FUNC_OFFSET(13853, glGetVertexAttribdvNV, glGetVertexAttribdvNV, NULL, 802), + NAME_FUNC_OFFSET(13875, glGetVertexAttribfvNV, glGetVertexAttribfvNV, NULL, 803), + NAME_FUNC_OFFSET(13897, glGetVertexAttribivNV, glGetVertexAttribivNV, NULL, 804), + NAME_FUNC_OFFSET(13919, glIsProgramNV, glIsProgramNV, NULL, 805), + NAME_FUNC_OFFSET(13933, glLoadProgramNV, glLoadProgramNV, NULL, 806), + NAME_FUNC_OFFSET(13949, glProgramParameters4dvNV, glProgramParameters4dvNV, NULL, 807), + NAME_FUNC_OFFSET(13974, glProgramParameters4fvNV, glProgramParameters4fvNV, NULL, 808), + NAME_FUNC_OFFSET(13999, glRequestResidentProgramsNV, glRequestResidentProgramsNV, NULL, 809), + NAME_FUNC_OFFSET(14027, glTrackMatrixNV, glTrackMatrixNV, NULL, 810), + NAME_FUNC_OFFSET(14043, glVertexAttrib1dNV, glVertexAttrib1dNV, NULL, 811), + NAME_FUNC_OFFSET(14062, glVertexAttrib1dvNV, glVertexAttrib1dvNV, NULL, 812), + NAME_FUNC_OFFSET(14082, glVertexAttrib1fNV, glVertexAttrib1fNV, NULL, 813), + NAME_FUNC_OFFSET(14101, glVertexAttrib1fvNV, glVertexAttrib1fvNV, NULL, 814), + NAME_FUNC_OFFSET(14121, glVertexAttrib1sNV, glVertexAttrib1sNV, NULL, 815), + NAME_FUNC_OFFSET(14140, glVertexAttrib1svNV, glVertexAttrib1svNV, NULL, 816), + NAME_FUNC_OFFSET(14160, glVertexAttrib2dNV, glVertexAttrib2dNV, NULL, 817), + NAME_FUNC_OFFSET(14179, glVertexAttrib2dvNV, glVertexAttrib2dvNV, NULL, 818), + NAME_FUNC_OFFSET(14199, glVertexAttrib2fNV, glVertexAttrib2fNV, NULL, 819), + NAME_FUNC_OFFSET(14218, glVertexAttrib2fvNV, glVertexAttrib2fvNV, NULL, 820), + NAME_FUNC_OFFSET(14238, glVertexAttrib2sNV, glVertexAttrib2sNV, NULL, 821), + NAME_FUNC_OFFSET(14257, glVertexAttrib2svNV, glVertexAttrib2svNV, NULL, 822), + NAME_FUNC_OFFSET(14277, glVertexAttrib3dNV, glVertexAttrib3dNV, NULL, 823), + NAME_FUNC_OFFSET(14296, glVertexAttrib3dvNV, glVertexAttrib3dvNV, NULL, 824), + NAME_FUNC_OFFSET(14316, glVertexAttrib3fNV, glVertexAttrib3fNV, NULL, 825), + NAME_FUNC_OFFSET(14335, glVertexAttrib3fvNV, glVertexAttrib3fvNV, NULL, 826), + NAME_FUNC_OFFSET(14355, glVertexAttrib3sNV, glVertexAttrib3sNV, NULL, 827), + NAME_FUNC_OFFSET(14374, glVertexAttrib3svNV, glVertexAttrib3svNV, NULL, 828), + NAME_FUNC_OFFSET(14394, glVertexAttrib4dNV, glVertexAttrib4dNV, NULL, 829), + NAME_FUNC_OFFSET(14413, glVertexAttrib4dvNV, glVertexAttrib4dvNV, NULL, 830), + NAME_FUNC_OFFSET(14433, glVertexAttrib4fNV, glVertexAttrib4fNV, NULL, 831), + NAME_FUNC_OFFSET(14452, glVertexAttrib4fvNV, glVertexAttrib4fvNV, NULL, 832), + NAME_FUNC_OFFSET(14472, glVertexAttrib4sNV, glVertexAttrib4sNV, NULL, 833), + NAME_FUNC_OFFSET(14491, glVertexAttrib4svNV, glVertexAttrib4svNV, NULL, 834), + NAME_FUNC_OFFSET(14511, glVertexAttrib4ubNV, glVertexAttrib4ubNV, NULL, 835), + NAME_FUNC_OFFSET(14531, glVertexAttrib4ubvNV, glVertexAttrib4ubvNV, NULL, 836), + NAME_FUNC_OFFSET(14552, glVertexAttribPointerNV, glVertexAttribPointerNV, NULL, 837), + NAME_FUNC_OFFSET(14576, glVertexAttribs1dvNV, glVertexAttribs1dvNV, NULL, 838), + NAME_FUNC_OFFSET(14597, glVertexAttribs1fvNV, glVertexAttribs1fvNV, NULL, 839), + NAME_FUNC_OFFSET(14618, glVertexAttribs1svNV, glVertexAttribs1svNV, NULL, 840), + NAME_FUNC_OFFSET(14639, glVertexAttribs2dvNV, glVertexAttribs2dvNV, NULL, 841), + NAME_FUNC_OFFSET(14660, glVertexAttribs2fvNV, glVertexAttribs2fvNV, NULL, 842), + NAME_FUNC_OFFSET(14681, glVertexAttribs2svNV, glVertexAttribs2svNV, NULL, 843), + NAME_FUNC_OFFSET(14702, glVertexAttribs3dvNV, glVertexAttribs3dvNV, NULL, 844), + NAME_FUNC_OFFSET(14723, glVertexAttribs3fvNV, glVertexAttribs3fvNV, NULL, 845), + NAME_FUNC_OFFSET(14744, glVertexAttribs3svNV, glVertexAttribs3svNV, NULL, 846), + NAME_FUNC_OFFSET(14765, glVertexAttribs4dvNV, glVertexAttribs4dvNV, NULL, 847), + NAME_FUNC_OFFSET(14786, glVertexAttribs4fvNV, glVertexAttribs4fvNV, NULL, 848), + NAME_FUNC_OFFSET(14807, glVertexAttribs4svNV, glVertexAttribs4svNV, NULL, 849), + NAME_FUNC_OFFSET(14828, glVertexAttribs4ubvNV, glVertexAttribs4ubvNV, NULL, 850), + NAME_FUNC_OFFSET(14850, glGetTexBumpParameterfvATI, glGetTexBumpParameterfvATI, NULL, 851), + NAME_FUNC_OFFSET(14877, glGetTexBumpParameterivATI, glGetTexBumpParameterivATI, NULL, 852), + NAME_FUNC_OFFSET(14904, glTexBumpParameterfvATI, glTexBumpParameterfvATI, NULL, 853), + NAME_FUNC_OFFSET(14928, glTexBumpParameterivATI, glTexBumpParameterivATI, NULL, 854), + NAME_FUNC_OFFSET(14952, glAlphaFragmentOp1ATI, glAlphaFragmentOp1ATI, NULL, 855), + NAME_FUNC_OFFSET(14974, glAlphaFragmentOp2ATI, glAlphaFragmentOp2ATI, NULL, 856), + NAME_FUNC_OFFSET(14996, glAlphaFragmentOp3ATI, glAlphaFragmentOp3ATI, NULL, 857), + NAME_FUNC_OFFSET(15018, glBeginFragmentShaderATI, glBeginFragmentShaderATI, NULL, 858), + NAME_FUNC_OFFSET(15043, glBindFragmentShaderATI, glBindFragmentShaderATI, NULL, 859), + NAME_FUNC_OFFSET(15067, glColorFragmentOp1ATI, glColorFragmentOp1ATI, NULL, 860), + NAME_FUNC_OFFSET(15089, glColorFragmentOp2ATI, glColorFragmentOp2ATI, NULL, 861), + NAME_FUNC_OFFSET(15111, glColorFragmentOp3ATI, glColorFragmentOp3ATI, NULL, 862), + NAME_FUNC_OFFSET(15133, glDeleteFragmentShaderATI, glDeleteFragmentShaderATI, NULL, 863), + NAME_FUNC_OFFSET(15159, glEndFragmentShaderATI, glEndFragmentShaderATI, NULL, 864), + NAME_FUNC_OFFSET(15182, glGenFragmentShadersATI, glGenFragmentShadersATI, NULL, 865), + NAME_FUNC_OFFSET(15206, glPassTexCoordATI, glPassTexCoordATI, NULL, 866), + NAME_FUNC_OFFSET(15224, glSampleMapATI, glSampleMapATI, NULL, 867), + NAME_FUNC_OFFSET(15239, glSetFragmentShaderConstantATI, glSetFragmentShaderConstantATI, NULL, 868), + NAME_FUNC_OFFSET(15270, glPointParameteriNV, glPointParameteriNV, NULL, 869), + NAME_FUNC_OFFSET(15290, glPointParameterivNV, glPointParameterivNV, NULL, 870), + NAME_FUNC_OFFSET(15311, gl_dispatch_stub_871, gl_dispatch_stub_871, NULL, 871), NAME_FUNC_OFFSET(15334, gl_dispatch_stub_872, gl_dispatch_stub_872, NULL, 872), NAME_FUNC_OFFSET(15357, gl_dispatch_stub_873, gl_dispatch_stub_873, NULL, 873), - NAME_FUNC_OFFSET(15378, glGetProgramNamedParameterdvNV, glGetProgramNamedParameterdvNV, NULL, 874), - NAME_FUNC_OFFSET(15409, glGetProgramNamedParameterfvNV, glGetProgramNamedParameterfvNV, NULL, 875), - NAME_FUNC_OFFSET(15440, glProgramNamedParameter4dNV, glProgramNamedParameter4dNV, NULL, 876), - NAME_FUNC_OFFSET(15468, glProgramNamedParameter4dvNV, glProgramNamedParameter4dvNV, NULL, 877), - NAME_FUNC_OFFSET(15497, glProgramNamedParameter4fNV, glProgramNamedParameter4fNV, NULL, 878), - NAME_FUNC_OFFSET(15525, glProgramNamedParameter4fvNV, glProgramNamedParameter4fvNV, NULL, 879), - NAME_FUNC_OFFSET(15554, glPrimitiveRestartIndexNV, glPrimitiveRestartIndexNV, NULL, 880), - NAME_FUNC_OFFSET(15580, glPrimitiveRestartNV, glPrimitiveRestartNV, NULL, 881), - NAME_FUNC_OFFSET(15601, gl_dispatch_stub_882, gl_dispatch_stub_882, NULL, 882), - NAME_FUNC_OFFSET(15618, gl_dispatch_stub_883, gl_dispatch_stub_883, NULL, 883), - NAME_FUNC_OFFSET(15645, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 884), - NAME_FUNC_OFFSET(15666, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 885), - NAME_FUNC_OFFSET(15688, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, 886), - NAME_FUNC_OFFSET(15716, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, 887), - NAME_FUNC_OFFSET(15740, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, 888), - NAME_FUNC_OFFSET(15765, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, 889), - NAME_FUNC_OFFSET(15794, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, 890), - NAME_FUNC_OFFSET(15820, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, 891), - NAME_FUNC_OFFSET(15846, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, 892), - NAME_FUNC_OFFSET(15872, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, 893), - NAME_FUNC_OFFSET(15893, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, 894), - NAME_FUNC_OFFSET(15915, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, 895), - NAME_FUNC_OFFSET(15935, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, 896), - NAME_FUNC_OFFSET(15976, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, 897), - NAME_FUNC_OFFSET(16008, glIsFramebufferEXT, glIsFramebufferEXT, NULL, 898), - NAME_FUNC_OFFSET(16027, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, 899), - NAME_FUNC_OFFSET(16047, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, 900), - NAME_FUNC_OFFSET(16072, gl_dispatch_stub_901, gl_dispatch_stub_901, NULL, 901), - NAME_FUNC_OFFSET(16093, gl_dispatch_stub_902, gl_dispatch_stub_902, NULL, 902), - NAME_FUNC_OFFSET(16117, gl_dispatch_stub_903, gl_dispatch_stub_903, NULL, 903), - NAME_FUNC_OFFSET(16147, glBindFragDataLocationEXT, glBindFragDataLocationEXT, NULL, 904), - NAME_FUNC_OFFSET(16173, glGetFragDataLocationEXT, glGetFragDataLocationEXT, NULL, 905), - NAME_FUNC_OFFSET(16198, glGetUniformuivEXT, glGetUniformuivEXT, NULL, 906), - NAME_FUNC_OFFSET(16217, glGetVertexAttribIivEXT, glGetVertexAttribIivEXT, NULL, 907), - NAME_FUNC_OFFSET(16241, glGetVertexAttribIuivEXT, glGetVertexAttribIuivEXT, NULL, 908), - NAME_FUNC_OFFSET(16266, glUniform1uiEXT, glUniform1uiEXT, NULL, 909), - NAME_FUNC_OFFSET(16282, glUniform1uivEXT, glUniform1uivEXT, NULL, 910), - NAME_FUNC_OFFSET(16299, glUniform2uiEXT, glUniform2uiEXT, NULL, 911), - NAME_FUNC_OFFSET(16315, glUniform2uivEXT, glUniform2uivEXT, NULL, 912), - NAME_FUNC_OFFSET(16332, glUniform3uiEXT, glUniform3uiEXT, NULL, 913), - NAME_FUNC_OFFSET(16348, glUniform3uivEXT, glUniform3uivEXT, NULL, 914), - NAME_FUNC_OFFSET(16365, glUniform4uiEXT, glUniform4uiEXT, NULL, 915), - NAME_FUNC_OFFSET(16381, glUniform4uivEXT, glUniform4uivEXT, NULL, 916), - NAME_FUNC_OFFSET(16398, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 917), - NAME_FUNC_OFFSET(16419, glVertexAttribI1ivEXT, glVertexAttribI1ivEXT, NULL, 918), - NAME_FUNC_OFFSET(16441, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 919), - NAME_FUNC_OFFSET(16463, glVertexAttribI1uivEXT, glVertexAttribI1uivEXT, NULL, 920), - NAME_FUNC_OFFSET(16486, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 921), - NAME_FUNC_OFFSET(16507, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 922), - NAME_FUNC_OFFSET(16529, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 923), - NAME_FUNC_OFFSET(16551, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 924), - NAME_FUNC_OFFSET(16574, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 925), - NAME_FUNC_OFFSET(16595, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 926), - NAME_FUNC_OFFSET(16617, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 927), - NAME_FUNC_OFFSET(16639, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 928), - NAME_FUNC_OFFSET(16662, glVertexAttribI4bvEXT, glVertexAttribI4bvEXT, NULL, 929), - NAME_FUNC_OFFSET(16684, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 930), - NAME_FUNC_OFFSET(16705, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 931), - NAME_FUNC_OFFSET(16727, glVertexAttribI4svEXT, glVertexAttribI4svEXT, NULL, 932), - NAME_FUNC_OFFSET(16749, glVertexAttribI4ubvEXT, glVertexAttribI4ubvEXT, NULL, 933), - NAME_FUNC_OFFSET(16772, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 934), - NAME_FUNC_OFFSET(16794, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 935), - NAME_FUNC_OFFSET(16817, glVertexAttribI4usvEXT, glVertexAttribI4usvEXT, NULL, 936), - NAME_FUNC_OFFSET(16840, glVertexAttribIPointerEXT, glVertexAttribIPointerEXT, NULL, 937), - NAME_FUNC_OFFSET(16866, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 938), - NAME_FUNC_OFFSET(16895, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, 939), - NAME_FUNC_OFFSET(16917, glDisableIndexedEXT, glDisableIndexedEXT, NULL, 940), - NAME_FUNC_OFFSET(16937, glEnableIndexedEXT, glEnableIndexedEXT, NULL, 941), - NAME_FUNC_OFFSET(16956, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, 942), - NAME_FUNC_OFFSET(16980, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, 943), - NAME_FUNC_OFFSET(17004, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, 944), - NAME_FUNC_OFFSET(17026, glClearColorIiEXT, glClearColorIiEXT, NULL, 945), - NAME_FUNC_OFFSET(17044, glClearColorIuiEXT, glClearColorIuiEXT, NULL, 946), - NAME_FUNC_OFFSET(17063, glGetTexParameterIivEXT, glGetTexParameterIivEXT, NULL, 947), - NAME_FUNC_OFFSET(17087, glGetTexParameterIuivEXT, glGetTexParameterIuivEXT, NULL, 948), - NAME_FUNC_OFFSET(17112, glTexParameterIivEXT, glTexParameterIivEXT, NULL, 949), - NAME_FUNC_OFFSET(17133, glTexParameterIuivEXT, glTexParameterIuivEXT, NULL, 950), - NAME_FUNC_OFFSET(17155, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, 951), - NAME_FUNC_OFFSET(17182, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, 952), - NAME_FUNC_OFFSET(17207, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, 953), - NAME_FUNC_OFFSET(17235, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, 954), - NAME_FUNC_OFFSET(17255, glBindBufferOffsetEXT, glBindBufferOffsetEXT, NULL, 955), - NAME_FUNC_OFFSET(17277, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, 956), - NAME_FUNC_OFFSET(17298, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, 957), - NAME_FUNC_OFFSET(17324, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, 958), - NAME_FUNC_OFFSET(17357, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, 959), - NAME_FUNC_OFFSET(17388, glProvokingVertexEXT, glProvokingVertexEXT, NULL, 960), - NAME_FUNC_OFFSET(17409, gl_dispatch_stub_961, gl_dispatch_stub_961, NULL, 961), - NAME_FUNC_OFFSET(17440, gl_dispatch_stub_962, gl_dispatch_stub_962, NULL, 962), - NAME_FUNC_OFFSET(17460, glGetObjectParameterivAPPLE, glGetObjectParameterivAPPLE, NULL, 963), - NAME_FUNC_OFFSET(17488, glObjectPurgeableAPPLE, glObjectPurgeableAPPLE, NULL, 964), - NAME_FUNC_OFFSET(17511, glObjectUnpurgeableAPPLE, glObjectUnpurgeableAPPLE, NULL, 965), - NAME_FUNC_OFFSET(17536, glActiveProgramEXT, glActiveProgramEXT, NULL, 966), - NAME_FUNC_OFFSET(17555, glCreateShaderProgramEXT, glCreateShaderProgramEXT, NULL, 967), - NAME_FUNC_OFFSET(17580, glUseShaderProgramEXT, glUseShaderProgramEXT, NULL, 968), - NAME_FUNC_OFFSET(17602, glTextureBarrierNV, glTextureBarrierNV, NULL, 969), - NAME_FUNC_OFFSET(17621, gl_dispatch_stub_970, gl_dispatch_stub_970, NULL, 970), - NAME_FUNC_OFFSET(17646, gl_dispatch_stub_971, gl_dispatch_stub_971, NULL, 971), - NAME_FUNC_OFFSET(17675, gl_dispatch_stub_972, gl_dispatch_stub_972, NULL, 972), - NAME_FUNC_OFFSET(17706, gl_dispatch_stub_973, gl_dispatch_stub_973, NULL, 973), - NAME_FUNC_OFFSET(17730, gl_dispatch_stub_974, gl_dispatch_stub_974, NULL, 974), - NAME_FUNC_OFFSET(17755, glEGLImageTargetRenderbufferStorageOES, glEGLImageTargetRenderbufferStorageOES, NULL, 975), - NAME_FUNC_OFFSET(17794, glEGLImageTargetTexture2DOES, glEGLImageTargetTexture2DOES, NULL, 976), - NAME_FUNC_OFFSET(17823, glArrayElement, glArrayElement, NULL, 306), - NAME_FUNC_OFFSET(17841, glBindTexture, glBindTexture, NULL, 307), - NAME_FUNC_OFFSET(17858, glDrawArrays, glDrawArrays, NULL, 310), - NAME_FUNC_OFFSET(17874, glAreTexturesResident, glAreTexturesResidentEXT, glAreTexturesResidentEXT, 322), - NAME_FUNC_OFFSET(17899, glCopyTexImage1D, glCopyTexImage1D, NULL, 323), - NAME_FUNC_OFFSET(17919, glCopyTexImage2D, glCopyTexImage2D, NULL, 324), - NAME_FUNC_OFFSET(17939, glCopyTexSubImage1D, glCopyTexSubImage1D, NULL, 325), - NAME_FUNC_OFFSET(17962, glCopyTexSubImage2D, glCopyTexSubImage2D, NULL, 326), - NAME_FUNC_OFFSET(17985, glDeleteTextures, glDeleteTexturesEXT, glDeleteTexturesEXT, 327), - NAME_FUNC_OFFSET(18005, glGenTextures, glGenTexturesEXT, glGenTexturesEXT, 328), - NAME_FUNC_OFFSET(18022, glGetPointerv, glGetPointerv, NULL, 329), - NAME_FUNC_OFFSET(18039, glIsTexture, glIsTextureEXT, glIsTextureEXT, 330), - NAME_FUNC_OFFSET(18054, glPrioritizeTextures, glPrioritizeTextures, NULL, 331), - NAME_FUNC_OFFSET(18078, glTexSubImage1D, glTexSubImage1D, NULL, 332), - NAME_FUNC_OFFSET(18097, glTexSubImage2D, glTexSubImage2D, NULL, 333), - NAME_FUNC_OFFSET(18116, glBlendColor, glBlendColor, NULL, 336), - NAME_FUNC_OFFSET(18132, glBlendEquation, glBlendEquation, NULL, 337), - NAME_FUNC_OFFSET(18151, glDrawRangeElements, glDrawRangeElements, NULL, 338), - NAME_FUNC_OFFSET(18174, glColorTable, glColorTable, NULL, 339), - NAME_FUNC_OFFSET(18190, glColorTable, glColorTable, NULL, 339), - NAME_FUNC_OFFSET(18206, glColorTableParameterfv, glColorTableParameterfv, NULL, 340), - NAME_FUNC_OFFSET(18233, glColorTableParameteriv, glColorTableParameteriv, NULL, 341), - NAME_FUNC_OFFSET(18260, glCopyColorTable, glCopyColorTable, NULL, 342), - NAME_FUNC_OFFSET(18280, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343), - NAME_FUNC_OFFSET(18299, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343), - NAME_FUNC_OFFSET(18318, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344), - NAME_FUNC_OFFSET(18348, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344), - NAME_FUNC_OFFSET(18378, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345), - NAME_FUNC_OFFSET(18408, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345), - NAME_FUNC_OFFSET(18438, glColorSubTable, glColorSubTable, NULL, 346), - NAME_FUNC_OFFSET(18457, glCopyColorSubTable, glCopyColorSubTable, NULL, 347), - NAME_FUNC_OFFSET(18480, glConvolutionFilter1D, glConvolutionFilter1D, NULL, 348), - NAME_FUNC_OFFSET(18505, glConvolutionFilter2D, glConvolutionFilter2D, NULL, 349), - NAME_FUNC_OFFSET(18530, glConvolutionParameterf, glConvolutionParameterf, NULL, 350), - NAME_FUNC_OFFSET(18557, glConvolutionParameterfv, glConvolutionParameterfv, NULL, 351), - NAME_FUNC_OFFSET(18585, glConvolutionParameteri, glConvolutionParameteri, NULL, 352), - NAME_FUNC_OFFSET(18612, glConvolutionParameteriv, glConvolutionParameteriv, NULL, 353), - NAME_FUNC_OFFSET(18640, glCopyConvolutionFilter1D, glCopyConvolutionFilter1D, NULL, 354), - NAME_FUNC_OFFSET(18669, glCopyConvolutionFilter2D, glCopyConvolutionFilter2D, NULL, 355), - NAME_FUNC_OFFSET(18698, glGetConvolutionFilter, gl_dispatch_stub_356, gl_dispatch_stub_356, 356), - NAME_FUNC_OFFSET(18724, glGetConvolutionParameterfv, gl_dispatch_stub_357, gl_dispatch_stub_357, 357), - NAME_FUNC_OFFSET(18755, glGetConvolutionParameteriv, gl_dispatch_stub_358, gl_dispatch_stub_358, 358), - NAME_FUNC_OFFSET(18786, glGetSeparableFilter, gl_dispatch_stub_359, gl_dispatch_stub_359, 359), - NAME_FUNC_OFFSET(18810, glSeparableFilter2D, glSeparableFilter2D, NULL, 360), - NAME_FUNC_OFFSET(18833, glGetHistogram, gl_dispatch_stub_361, gl_dispatch_stub_361, 361), - NAME_FUNC_OFFSET(18851, glGetHistogramParameterfv, gl_dispatch_stub_362, gl_dispatch_stub_362, 362), - NAME_FUNC_OFFSET(18880, glGetHistogramParameteriv, gl_dispatch_stub_363, gl_dispatch_stub_363, 363), - NAME_FUNC_OFFSET(18909, glGetMinmax, gl_dispatch_stub_364, gl_dispatch_stub_364, 364), - NAME_FUNC_OFFSET(18924, glGetMinmaxParameterfv, gl_dispatch_stub_365, gl_dispatch_stub_365, 365), - NAME_FUNC_OFFSET(18950, glGetMinmaxParameteriv, gl_dispatch_stub_366, gl_dispatch_stub_366, 366), - NAME_FUNC_OFFSET(18976, glHistogram, glHistogram, NULL, 367), - NAME_FUNC_OFFSET(18991, glMinmax, glMinmax, NULL, 368), - NAME_FUNC_OFFSET(19003, glResetHistogram, glResetHistogram, NULL, 369), - NAME_FUNC_OFFSET(19023, glResetMinmax, glResetMinmax, NULL, 370), - NAME_FUNC_OFFSET(19040, glTexImage3D, glTexImage3D, NULL, 371), - NAME_FUNC_OFFSET(19056, glTexSubImage3D, glTexSubImage3D, NULL, 372), - NAME_FUNC_OFFSET(19075, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373), - NAME_FUNC_OFFSET(19098, glActiveTextureARB, glActiveTextureARB, NULL, 374), - NAME_FUNC_OFFSET(19114, glClientActiveTextureARB, glClientActiveTextureARB, NULL, 375), - NAME_FUNC_OFFSET(19136, glMultiTexCoord1dARB, glMultiTexCoord1dARB, NULL, 376), - NAME_FUNC_OFFSET(19154, glMultiTexCoord1dvARB, glMultiTexCoord1dvARB, NULL, 377), - NAME_FUNC_OFFSET(19173, glMultiTexCoord1fARB, glMultiTexCoord1fARB, NULL, 378), - NAME_FUNC_OFFSET(19191, glMultiTexCoord1fvARB, glMultiTexCoord1fvARB, NULL, 379), - NAME_FUNC_OFFSET(19210, glMultiTexCoord1iARB, glMultiTexCoord1iARB, NULL, 380), - NAME_FUNC_OFFSET(19228, glMultiTexCoord1ivARB, glMultiTexCoord1ivARB, NULL, 381), - NAME_FUNC_OFFSET(19247, glMultiTexCoord1sARB, glMultiTexCoord1sARB, NULL, 382), - NAME_FUNC_OFFSET(19265, glMultiTexCoord1svARB, glMultiTexCoord1svARB, NULL, 383), - NAME_FUNC_OFFSET(19284, glMultiTexCoord2dARB, glMultiTexCoord2dARB, NULL, 384), - NAME_FUNC_OFFSET(19302, glMultiTexCoord2dvARB, glMultiTexCoord2dvARB, NULL, 385), - NAME_FUNC_OFFSET(19321, glMultiTexCoord2fARB, glMultiTexCoord2fARB, NULL, 386), - NAME_FUNC_OFFSET(19339, glMultiTexCoord2fvARB, glMultiTexCoord2fvARB, NULL, 387), - NAME_FUNC_OFFSET(19358, glMultiTexCoord2iARB, glMultiTexCoord2iARB, NULL, 388), - NAME_FUNC_OFFSET(19376, glMultiTexCoord2ivARB, glMultiTexCoord2ivARB, NULL, 389), - NAME_FUNC_OFFSET(19395, glMultiTexCoord2sARB, glMultiTexCoord2sARB, NULL, 390), - NAME_FUNC_OFFSET(19413, glMultiTexCoord2svARB, glMultiTexCoord2svARB, NULL, 391), - NAME_FUNC_OFFSET(19432, glMultiTexCoord3dARB, glMultiTexCoord3dARB, NULL, 392), - NAME_FUNC_OFFSET(19450, glMultiTexCoord3dvARB, glMultiTexCoord3dvARB, NULL, 393), - NAME_FUNC_OFFSET(19469, glMultiTexCoord3fARB, glMultiTexCoord3fARB, NULL, 394), - NAME_FUNC_OFFSET(19487, glMultiTexCoord3fvARB, glMultiTexCoord3fvARB, NULL, 395), - NAME_FUNC_OFFSET(19506, glMultiTexCoord3iARB, glMultiTexCoord3iARB, NULL, 396), - NAME_FUNC_OFFSET(19524, glMultiTexCoord3ivARB, glMultiTexCoord3ivARB, NULL, 397), - NAME_FUNC_OFFSET(19543, glMultiTexCoord3sARB, glMultiTexCoord3sARB, NULL, 398), - NAME_FUNC_OFFSET(19561, glMultiTexCoord3svARB, glMultiTexCoord3svARB, NULL, 399), - NAME_FUNC_OFFSET(19580, glMultiTexCoord4dARB, glMultiTexCoord4dARB, NULL, 400), - NAME_FUNC_OFFSET(19598, glMultiTexCoord4dvARB, glMultiTexCoord4dvARB, NULL, 401), - NAME_FUNC_OFFSET(19617, glMultiTexCoord4fARB, glMultiTexCoord4fARB, NULL, 402), - NAME_FUNC_OFFSET(19635, glMultiTexCoord4fvARB, glMultiTexCoord4fvARB, NULL, 403), - NAME_FUNC_OFFSET(19654, glMultiTexCoord4iARB, glMultiTexCoord4iARB, NULL, 404), - NAME_FUNC_OFFSET(19672, glMultiTexCoord4ivARB, glMultiTexCoord4ivARB, NULL, 405), - NAME_FUNC_OFFSET(19691, glMultiTexCoord4sARB, glMultiTexCoord4sARB, NULL, 406), - NAME_FUNC_OFFSET(19709, glMultiTexCoord4svARB, glMultiTexCoord4svARB, NULL, 407), - NAME_FUNC_OFFSET(19728, glStencilOpSeparate, glStencilOpSeparate, NULL, 423), - NAME_FUNC_OFFSET(19751, glLoadTransposeMatrixdARB, glLoadTransposeMatrixdARB, NULL, 441), - NAME_FUNC_OFFSET(19774, glLoadTransposeMatrixfARB, glLoadTransposeMatrixfARB, NULL, 442), - NAME_FUNC_OFFSET(19797, glMultTransposeMatrixdARB, glMultTransposeMatrixdARB, NULL, 443), - NAME_FUNC_OFFSET(19820, glMultTransposeMatrixfARB, glMultTransposeMatrixfARB, NULL, 444), - NAME_FUNC_OFFSET(19843, glSampleCoverageARB, glSampleCoverageARB, NULL, 445), - NAME_FUNC_OFFSET(19860, glCompressedTexImage1DARB, glCompressedTexImage1DARB, NULL, 446), - NAME_FUNC_OFFSET(19883, glCompressedTexImage2DARB, glCompressedTexImage2DARB, NULL, 447), - NAME_FUNC_OFFSET(19906, glCompressedTexImage3DARB, glCompressedTexImage3DARB, NULL, 448), - NAME_FUNC_OFFSET(19929, glCompressedTexSubImage1DARB, glCompressedTexSubImage1DARB, NULL, 449), - NAME_FUNC_OFFSET(19955, glCompressedTexSubImage2DARB, glCompressedTexSubImage2DARB, NULL, 450), - NAME_FUNC_OFFSET(19981, glCompressedTexSubImage3DARB, glCompressedTexSubImage3DARB, NULL, 451), - NAME_FUNC_OFFSET(20007, glGetCompressedTexImageARB, glGetCompressedTexImageARB, NULL, 452), - NAME_FUNC_OFFSET(20031, glDisableVertexAttribArrayARB, glDisableVertexAttribArrayARB, NULL, 453), - NAME_FUNC_OFFSET(20058, glEnableVertexAttribArrayARB, glEnableVertexAttribArrayARB, NULL, 454), - NAME_FUNC_OFFSET(20084, glGetVertexAttribdvARB, glGetVertexAttribdvARB, NULL, 461), - NAME_FUNC_OFFSET(20104, glGetVertexAttribfvARB, glGetVertexAttribfvARB, NULL, 462), - NAME_FUNC_OFFSET(20124, glGetVertexAttribivARB, glGetVertexAttribivARB, NULL, 463), - NAME_FUNC_OFFSET(20144, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, 464), - NAME_FUNC_OFFSET(20167, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, 465), - NAME_FUNC_OFFSET(20191, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, 466), - NAME_FUNC_OFFSET(20214, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, 467), - NAME_FUNC_OFFSET(20238, glVertexAttrib1dARB, glVertexAttrib1dARB, NULL, 473), - NAME_FUNC_OFFSET(20255, glVertexAttrib1dvARB, glVertexAttrib1dvARB, NULL, 474), - NAME_FUNC_OFFSET(20273, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, 475), - NAME_FUNC_OFFSET(20290, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, 476), - NAME_FUNC_OFFSET(20308, glVertexAttrib1sARB, glVertexAttrib1sARB, NULL, 477), - NAME_FUNC_OFFSET(20325, glVertexAttrib1svARB, glVertexAttrib1svARB, NULL, 478), - NAME_FUNC_OFFSET(20343, glVertexAttrib2dARB, glVertexAttrib2dARB, NULL, 479), - NAME_FUNC_OFFSET(20360, glVertexAttrib2dvARB, glVertexAttrib2dvARB, NULL, 480), - NAME_FUNC_OFFSET(20378, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, 481), - NAME_FUNC_OFFSET(20395, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, 482), - NAME_FUNC_OFFSET(20413, glVertexAttrib2sARB, glVertexAttrib2sARB, NULL, 483), - NAME_FUNC_OFFSET(20430, glVertexAttrib2svARB, glVertexAttrib2svARB, NULL, 484), - NAME_FUNC_OFFSET(20448, glVertexAttrib3dARB, glVertexAttrib3dARB, NULL, 485), - NAME_FUNC_OFFSET(20465, glVertexAttrib3dvARB, glVertexAttrib3dvARB, NULL, 486), - NAME_FUNC_OFFSET(20483, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, 487), - NAME_FUNC_OFFSET(20500, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, 488), - NAME_FUNC_OFFSET(20518, glVertexAttrib3sARB, glVertexAttrib3sARB, NULL, 489), - NAME_FUNC_OFFSET(20535, glVertexAttrib3svARB, glVertexAttrib3svARB, NULL, 490), - NAME_FUNC_OFFSET(20553, glVertexAttrib4NbvARB, glVertexAttrib4NbvARB, NULL, 491), - NAME_FUNC_OFFSET(20572, glVertexAttrib4NivARB, glVertexAttrib4NivARB, NULL, 492), - NAME_FUNC_OFFSET(20591, glVertexAttrib4NsvARB, glVertexAttrib4NsvARB, NULL, 493), - NAME_FUNC_OFFSET(20610, glVertexAttrib4NubARB, glVertexAttrib4NubARB, NULL, 494), - NAME_FUNC_OFFSET(20629, glVertexAttrib4NubvARB, glVertexAttrib4NubvARB, NULL, 495), - NAME_FUNC_OFFSET(20649, glVertexAttrib4NuivARB, glVertexAttrib4NuivARB, NULL, 496), - NAME_FUNC_OFFSET(20669, glVertexAttrib4NusvARB, glVertexAttrib4NusvARB, NULL, 497), - NAME_FUNC_OFFSET(20689, glVertexAttrib4bvARB, glVertexAttrib4bvARB, NULL, 498), - NAME_FUNC_OFFSET(20707, glVertexAttrib4dARB, glVertexAttrib4dARB, NULL, 499), - NAME_FUNC_OFFSET(20724, glVertexAttrib4dvARB, glVertexAttrib4dvARB, NULL, 500), - NAME_FUNC_OFFSET(20742, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, 501), - NAME_FUNC_OFFSET(20759, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, 502), - NAME_FUNC_OFFSET(20777, glVertexAttrib4ivARB, glVertexAttrib4ivARB, NULL, 503), - NAME_FUNC_OFFSET(20795, glVertexAttrib4sARB, glVertexAttrib4sARB, NULL, 504), - NAME_FUNC_OFFSET(20812, glVertexAttrib4svARB, glVertexAttrib4svARB, NULL, 505), - NAME_FUNC_OFFSET(20830, glVertexAttrib4ubvARB, glVertexAttrib4ubvARB, NULL, 506), - NAME_FUNC_OFFSET(20849, glVertexAttrib4uivARB, glVertexAttrib4uivARB, NULL, 507), - NAME_FUNC_OFFSET(20868, glVertexAttrib4usvARB, glVertexAttrib4usvARB, NULL, 508), - NAME_FUNC_OFFSET(20887, glVertexAttribPointerARB, glVertexAttribPointerARB, NULL, 509), - NAME_FUNC_OFFSET(20909, glBindBufferARB, glBindBufferARB, NULL, 510), - NAME_FUNC_OFFSET(20922, glBufferDataARB, glBufferDataARB, NULL, 511), - NAME_FUNC_OFFSET(20935, glBufferSubDataARB, glBufferSubDataARB, NULL, 512), - NAME_FUNC_OFFSET(20951, glDeleteBuffersARB, glDeleteBuffersARB, NULL, 513), - NAME_FUNC_OFFSET(20967, glGenBuffersARB, glGenBuffersARB, NULL, 514), - NAME_FUNC_OFFSET(20980, glGetBufferParameterivARB, glGetBufferParameterivARB, NULL, 515), - NAME_FUNC_OFFSET(21003, glGetBufferPointervARB, glGetBufferPointervARB, NULL, 516), - NAME_FUNC_OFFSET(21023, glGetBufferSubDataARB, glGetBufferSubDataARB, NULL, 517), - NAME_FUNC_OFFSET(21042, glIsBufferARB, glIsBufferARB, NULL, 518), - NAME_FUNC_OFFSET(21053, glMapBufferARB, glMapBufferARB, NULL, 519), - NAME_FUNC_OFFSET(21065, glUnmapBufferARB, glUnmapBufferARB, NULL, 520), - NAME_FUNC_OFFSET(21079, glBeginQueryARB, glBeginQueryARB, NULL, 521), - NAME_FUNC_OFFSET(21092, glDeleteQueriesARB, glDeleteQueriesARB, NULL, 522), - NAME_FUNC_OFFSET(21108, glEndQueryARB, glEndQueryARB, NULL, 523), - NAME_FUNC_OFFSET(21119, glGenQueriesARB, glGenQueriesARB, NULL, 524), - NAME_FUNC_OFFSET(21132, glGetQueryObjectivARB, glGetQueryObjectivARB, NULL, 525), - NAME_FUNC_OFFSET(21151, glGetQueryObjectuivARB, glGetQueryObjectuivARB, NULL, 526), - NAME_FUNC_OFFSET(21171, glGetQueryivARB, glGetQueryivARB, NULL, 527), - NAME_FUNC_OFFSET(21184, glIsQueryARB, glIsQueryARB, NULL, 528), - NAME_FUNC_OFFSET(21194, glCompileShaderARB, glCompileShaderARB, NULL, 530), - NAME_FUNC_OFFSET(21210, glGetActiveUniformARB, glGetActiveUniformARB, NULL, 535), - NAME_FUNC_OFFSET(21229, glGetShaderSourceARB, glGetShaderSourceARB, NULL, 541), - NAME_FUNC_OFFSET(21247, glGetUniformLocationARB, glGetUniformLocationARB, NULL, 542), - NAME_FUNC_OFFSET(21268, glGetUniformfvARB, glGetUniformfvARB, NULL, 543), - NAME_FUNC_OFFSET(21283, glGetUniformivARB, glGetUniformivARB, NULL, 544), - NAME_FUNC_OFFSET(21298, glLinkProgramARB, glLinkProgramARB, NULL, 545), - NAME_FUNC_OFFSET(21312, glShaderSourceARB, glShaderSourceARB, NULL, 546), - NAME_FUNC_OFFSET(21327, glUniform1fARB, glUniform1fARB, NULL, 547), - NAME_FUNC_OFFSET(21339, glUniform1fvARB, glUniform1fvARB, NULL, 548), - NAME_FUNC_OFFSET(21352, glUniform1iARB, glUniform1iARB, NULL, 549), - NAME_FUNC_OFFSET(21364, glUniform1ivARB, glUniform1ivARB, NULL, 550), - NAME_FUNC_OFFSET(21377, glUniform2fARB, glUniform2fARB, NULL, 551), - NAME_FUNC_OFFSET(21389, glUniform2fvARB, glUniform2fvARB, NULL, 552), - NAME_FUNC_OFFSET(21402, glUniform2iARB, glUniform2iARB, NULL, 553), - NAME_FUNC_OFFSET(21414, glUniform2ivARB, glUniform2ivARB, NULL, 554), - NAME_FUNC_OFFSET(21427, glUniform3fARB, glUniform3fARB, NULL, 555), - NAME_FUNC_OFFSET(21439, glUniform3fvARB, glUniform3fvARB, NULL, 556), - NAME_FUNC_OFFSET(21452, glUniform3iARB, glUniform3iARB, NULL, 557), - NAME_FUNC_OFFSET(21464, glUniform3ivARB, glUniform3ivARB, NULL, 558), - NAME_FUNC_OFFSET(21477, glUniform4fARB, glUniform4fARB, NULL, 559), - NAME_FUNC_OFFSET(21489, glUniform4fvARB, glUniform4fvARB, NULL, 560), - NAME_FUNC_OFFSET(21502, glUniform4iARB, glUniform4iARB, NULL, 561), - NAME_FUNC_OFFSET(21514, glUniform4ivARB, glUniform4ivARB, NULL, 562), - NAME_FUNC_OFFSET(21527, glUniformMatrix2fvARB, glUniformMatrix2fvARB, NULL, 563), - NAME_FUNC_OFFSET(21546, glUniformMatrix3fvARB, glUniformMatrix3fvARB, NULL, 564), - NAME_FUNC_OFFSET(21565, glUniformMatrix4fvARB, glUniformMatrix4fvARB, NULL, 565), - NAME_FUNC_OFFSET(21584, glUseProgramObjectARB, glUseProgramObjectARB, NULL, 566), - NAME_FUNC_OFFSET(21597, glValidateProgramARB, glValidateProgramARB, NULL, 567), - NAME_FUNC_OFFSET(21615, glBindAttribLocationARB, glBindAttribLocationARB, NULL, 568), - NAME_FUNC_OFFSET(21636, glGetActiveAttribARB, glGetActiveAttribARB, NULL, 569), - NAME_FUNC_OFFSET(21654, glGetAttribLocationARB, glGetAttribLocationARB, NULL, 570), - NAME_FUNC_OFFSET(21674, glDrawBuffersARB, glDrawBuffersARB, NULL, 571), - NAME_FUNC_OFFSET(21688, glDrawBuffersARB, glDrawBuffersARB, NULL, 571), - NAME_FUNC_OFFSET(21705, glDrawBuffersARB, glDrawBuffersARB, NULL, 571), - NAME_FUNC_OFFSET(21721, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 573), - NAME_FUNC_OFFSET(21746, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 573), - NAME_FUNC_OFFSET(21768, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 574), - NAME_FUNC_OFFSET(21795, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 574), - NAME_FUNC_OFFSET(21819, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, 575), - NAME_FUNC_OFFSET(21855, glBlendEquationSeparateiARB, glBlendEquationSeparateiARB, NULL, 597), - NAME_FUNC_OFFSET(21889, glBlendEquationiARB, glBlendEquationiARB, NULL, 598), - NAME_FUNC_OFFSET(21915, glBlendFuncSeparateiARB, glBlendFuncSeparateiARB, NULL, 599), - NAME_FUNC_OFFSET(21945, glBlendFunciARB, glBlendFunciARB, NULL, 600), - NAME_FUNC_OFFSET(21967, gl_dispatch_stub_702, gl_dispatch_stub_702, NULL, 702), - NAME_FUNC_OFFSET(21983, gl_dispatch_stub_703, gl_dispatch_stub_703, NULL, 703), - NAME_FUNC_OFFSET(22002, glPointParameterfEXT, glPointParameterfEXT, NULL, 710), - NAME_FUNC_OFFSET(22020, glPointParameterfEXT, glPointParameterfEXT, NULL, 710), - NAME_FUNC_OFFSET(22041, glPointParameterfEXT, glPointParameterfEXT, NULL, 710), - NAME_FUNC_OFFSET(22063, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 711), - NAME_FUNC_OFFSET(22082, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 711), - NAME_FUNC_OFFSET(22104, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 711), - NAME_FUNC_OFFSET(22127, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, 714), - NAME_FUNC_OFFSET(22146, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, 715), - NAME_FUNC_OFFSET(22166, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, 716), - NAME_FUNC_OFFSET(22185, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, 717), - NAME_FUNC_OFFSET(22205, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 718), - NAME_FUNC_OFFSET(22224, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 719), - NAME_FUNC_OFFSET(22244, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, 720), - NAME_FUNC_OFFSET(22263, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, 721), - NAME_FUNC_OFFSET(22283, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, 722), - NAME_FUNC_OFFSET(22302, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, 723), - NAME_FUNC_OFFSET(22322, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, 724), - NAME_FUNC_OFFSET(22342, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, 725), - NAME_FUNC_OFFSET(22363, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, 726), - NAME_FUNC_OFFSET(22383, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, 727), - NAME_FUNC_OFFSET(22404, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, 728), - NAME_FUNC_OFFSET(22424, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, 729), - NAME_FUNC_OFFSET(22445, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, 730), - NAME_FUNC_OFFSET(22469, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, 731), - NAME_FUNC_OFFSET(22487, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 732), - NAME_FUNC_OFFSET(22507, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, 733), - NAME_FUNC_OFFSET(22525, glFogCoorddEXT, glFogCoorddEXT, NULL, 734), - NAME_FUNC_OFFSET(22537, glFogCoorddvEXT, glFogCoorddvEXT, NULL, 735), - NAME_FUNC_OFFSET(22550, glFogCoordfEXT, glFogCoordfEXT, NULL, 736), - NAME_FUNC_OFFSET(22562, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 737), - NAME_FUNC_OFFSET(22575, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 739), - NAME_FUNC_OFFSET(22595, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 739), - NAME_FUNC_OFFSET(22619, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 756), - NAME_FUNC_OFFSET(22633, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 756), - NAME_FUNC_OFFSET(22650, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 757), - NAME_FUNC_OFFSET(22665, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 757), - NAME_FUNC_OFFSET(22683, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 758), - NAME_FUNC_OFFSET(22697, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 758), - NAME_FUNC_OFFSET(22714, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 759), - NAME_FUNC_OFFSET(22729, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 759), - NAME_FUNC_OFFSET(22747, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 760), - NAME_FUNC_OFFSET(22761, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 760), - NAME_FUNC_OFFSET(22778, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 761), - NAME_FUNC_OFFSET(22793, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 761), - NAME_FUNC_OFFSET(22811, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 762), - NAME_FUNC_OFFSET(22825, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 762), - NAME_FUNC_OFFSET(22842, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 763), - NAME_FUNC_OFFSET(22857, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 763), - NAME_FUNC_OFFSET(22875, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 764), - NAME_FUNC_OFFSET(22889, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 764), - NAME_FUNC_OFFSET(22906, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 765), - NAME_FUNC_OFFSET(22921, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 765), - NAME_FUNC_OFFSET(22939, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 766), - NAME_FUNC_OFFSET(22953, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 766), - NAME_FUNC_OFFSET(22970, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 767), - NAME_FUNC_OFFSET(22985, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 767), - NAME_FUNC_OFFSET(23003, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 768), - NAME_FUNC_OFFSET(23017, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 768), - NAME_FUNC_OFFSET(23034, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 769), - NAME_FUNC_OFFSET(23049, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 769), - NAME_FUNC_OFFSET(23067, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 770), - NAME_FUNC_OFFSET(23081, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 770), - NAME_FUNC_OFFSET(23098, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 771), - NAME_FUNC_OFFSET(23113, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 771), - NAME_FUNC_OFFSET(23131, glBindProgramNV, glBindProgramNV, NULL, 790), - NAME_FUNC_OFFSET(23148, glDeleteProgramsNV, glDeleteProgramsNV, NULL, 791), - NAME_FUNC_OFFSET(23168, glGenProgramsNV, glGenProgramsNV, NULL, 793), - NAME_FUNC_OFFSET(23185, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 799), - NAME_FUNC_OFFSET(23211, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 799), - NAME_FUNC_OFFSET(23240, glIsProgramNV, glIsProgramNV, NULL, 803), - NAME_FUNC_OFFSET(23255, glPointParameteriNV, glPointParameteriNV, NULL, 867), - NAME_FUNC_OFFSET(23273, glPointParameterivNV, glPointParameterivNV, NULL, 868), - NAME_FUNC_OFFSET(23292, gl_dispatch_stub_871, gl_dispatch_stub_871, NULL, 871), - NAME_FUNC_OFFSET(23313, gl_dispatch_stub_873, gl_dispatch_stub_873, NULL, 873), - NAME_FUNC_OFFSET(23329, glPrimitiveRestartIndexNV, glPrimitiveRestartIndexNV, NULL, 880), - NAME_FUNC_OFFSET(23353, gl_dispatch_stub_883, gl_dispatch_stub_883, NULL, 883), - NAME_FUNC_OFFSET(23377, gl_dispatch_stub_883, gl_dispatch_stub_883, NULL, 883), - NAME_FUNC_OFFSET(23404, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 884), - NAME_FUNC_OFFSET(23422, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 885), - NAME_FUNC_OFFSET(23441, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, 886), - NAME_FUNC_OFFSET(23466, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, 887), - NAME_FUNC_OFFSET(23487, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, 888), - NAME_FUNC_OFFSET(23509, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, 889), - NAME_FUNC_OFFSET(23535, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, 890), - NAME_FUNC_OFFSET(23558, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, 891), - NAME_FUNC_OFFSET(23581, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, 892), - NAME_FUNC_OFFSET(23604, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, 893), - NAME_FUNC_OFFSET(23622, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, 894), - NAME_FUNC_OFFSET(23641, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, 895), - NAME_FUNC_OFFSET(23658, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, 896), - NAME_FUNC_OFFSET(23696, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, 897), - NAME_FUNC_OFFSET(23725, glIsFramebufferEXT, glIsFramebufferEXT, NULL, 898), - NAME_FUNC_OFFSET(23741, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, 899), - NAME_FUNC_OFFSET(23758, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, 900), - NAME_FUNC_OFFSET(23780, gl_dispatch_stub_901, gl_dispatch_stub_901, NULL, 901), - NAME_FUNC_OFFSET(23798, glBindFragDataLocationEXT, glBindFragDataLocationEXT, NULL, 904), - NAME_FUNC_OFFSET(23821, glGetFragDataLocationEXT, glGetFragDataLocationEXT, NULL, 905), - NAME_FUNC_OFFSET(23843, glGetUniformuivEXT, glGetUniformuivEXT, NULL, 906), - NAME_FUNC_OFFSET(23859, glGetVertexAttribIivEXT, glGetVertexAttribIivEXT, NULL, 907), - NAME_FUNC_OFFSET(23880, glGetVertexAttribIuivEXT, glGetVertexAttribIuivEXT, NULL, 908), - NAME_FUNC_OFFSET(23902, glUniform1uiEXT, glUniform1uiEXT, NULL, 909), - NAME_FUNC_OFFSET(23915, glUniform1uivEXT, glUniform1uivEXT, NULL, 910), - NAME_FUNC_OFFSET(23929, glUniform2uiEXT, glUniform2uiEXT, NULL, 911), - NAME_FUNC_OFFSET(23942, glUniform2uivEXT, glUniform2uivEXT, NULL, 912), - NAME_FUNC_OFFSET(23956, glUniform3uiEXT, glUniform3uiEXT, NULL, 913), - NAME_FUNC_OFFSET(23969, glUniform3uivEXT, glUniform3uivEXT, NULL, 914), - NAME_FUNC_OFFSET(23983, glUniform4uiEXT, glUniform4uiEXT, NULL, 915), - NAME_FUNC_OFFSET(23996, glUniform4uivEXT, glUniform4uivEXT, NULL, 916), - NAME_FUNC_OFFSET(24010, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 917), - NAME_FUNC_OFFSET(24028, glVertexAttribI1ivEXT, glVertexAttribI1ivEXT, NULL, 918), - NAME_FUNC_OFFSET(24047, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 919), - NAME_FUNC_OFFSET(24066, glVertexAttribI1uivEXT, glVertexAttribI1uivEXT, NULL, 920), - NAME_FUNC_OFFSET(24086, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 921), - NAME_FUNC_OFFSET(24104, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 922), - NAME_FUNC_OFFSET(24123, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 923), - NAME_FUNC_OFFSET(24142, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 924), - NAME_FUNC_OFFSET(24162, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 925), - NAME_FUNC_OFFSET(24180, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 926), - NAME_FUNC_OFFSET(24199, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 927), - NAME_FUNC_OFFSET(24218, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 928), - NAME_FUNC_OFFSET(24238, glVertexAttribI4bvEXT, glVertexAttribI4bvEXT, NULL, 929), - NAME_FUNC_OFFSET(24257, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 930), - NAME_FUNC_OFFSET(24275, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 931), - NAME_FUNC_OFFSET(24294, glVertexAttribI4svEXT, glVertexAttribI4svEXT, NULL, 932), - NAME_FUNC_OFFSET(24313, glVertexAttribI4ubvEXT, glVertexAttribI4ubvEXT, NULL, 933), - NAME_FUNC_OFFSET(24333, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 934), - NAME_FUNC_OFFSET(24352, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 935), - NAME_FUNC_OFFSET(24372, glVertexAttribI4usvEXT, glVertexAttribI4usvEXT, NULL, 936), - NAME_FUNC_OFFSET(24392, glVertexAttribIPointerEXT, glVertexAttribIPointerEXT, NULL, 937), - NAME_FUNC_OFFSET(24415, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 938), - NAME_FUNC_OFFSET(24441, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 938), - NAME_FUNC_OFFSET(24470, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, 939), - NAME_FUNC_OFFSET(24483, glDisableIndexedEXT, glDisableIndexedEXT, NULL, 940), - NAME_FUNC_OFFSET(24494, glEnableIndexedEXT, glEnableIndexedEXT, NULL, 941), - NAME_FUNC_OFFSET(24504, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, 942), - NAME_FUNC_OFFSET(24520, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, 943), - NAME_FUNC_OFFSET(24536, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, 944), - NAME_FUNC_OFFSET(24549, glGetTexParameterIivEXT, glGetTexParameterIivEXT, NULL, 947), - NAME_FUNC_OFFSET(24570, glGetTexParameterIuivEXT, glGetTexParameterIuivEXT, NULL, 948), - NAME_FUNC_OFFSET(24592, glTexParameterIivEXT, glTexParameterIivEXT, NULL, 949), - NAME_FUNC_OFFSET(24610, glTexParameterIuivEXT, glTexParameterIuivEXT, NULL, 950), - NAME_FUNC_OFFSET(24629, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, 951), - NAME_FUNC_OFFSET(24654, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, 952), - NAME_FUNC_OFFSET(24677, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, 953), - NAME_FUNC_OFFSET(24702, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, 954), - NAME_FUNC_OFFSET(24719, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, 956), - NAME_FUNC_OFFSET(24737, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, 957), - NAME_FUNC_OFFSET(24760, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, 958), - NAME_FUNC_OFFSET(24790, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, 959), - NAME_FUNC_OFFSET(24818, glProvokingVertexEXT, glProvokingVertexEXT, NULL, 960), + NAME_FUNC_OFFSET(15383, gl_dispatch_stub_874, gl_dispatch_stub_874, NULL, 874), + NAME_FUNC_OFFSET(15406, gl_dispatch_stub_875, gl_dispatch_stub_875, NULL, 875), + NAME_FUNC_OFFSET(15427, glGetProgramNamedParameterdvNV, glGetProgramNamedParameterdvNV, NULL, 876), + NAME_FUNC_OFFSET(15458, glGetProgramNamedParameterfvNV, glGetProgramNamedParameterfvNV, NULL, 877), + NAME_FUNC_OFFSET(15489, glProgramNamedParameter4dNV, glProgramNamedParameter4dNV, NULL, 878), + NAME_FUNC_OFFSET(15517, glProgramNamedParameter4dvNV, glProgramNamedParameter4dvNV, NULL, 879), + NAME_FUNC_OFFSET(15546, glProgramNamedParameter4fNV, glProgramNamedParameter4fNV, NULL, 880), + NAME_FUNC_OFFSET(15574, glProgramNamedParameter4fvNV, glProgramNamedParameter4fvNV, NULL, 881), + NAME_FUNC_OFFSET(15603, glPrimitiveRestartIndexNV, glPrimitiveRestartIndexNV, NULL, 882), + NAME_FUNC_OFFSET(15629, glPrimitiveRestartNV, glPrimitiveRestartNV, NULL, 883), + NAME_FUNC_OFFSET(15650, gl_dispatch_stub_884, gl_dispatch_stub_884, NULL, 884), + NAME_FUNC_OFFSET(15667, gl_dispatch_stub_885, gl_dispatch_stub_885, NULL, 885), + NAME_FUNC_OFFSET(15694, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 886), + NAME_FUNC_OFFSET(15715, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 887), + NAME_FUNC_OFFSET(15737, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, 888), + NAME_FUNC_OFFSET(15765, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, 889), + NAME_FUNC_OFFSET(15789, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, 890), + NAME_FUNC_OFFSET(15814, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, 891), + NAME_FUNC_OFFSET(15843, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, 892), + NAME_FUNC_OFFSET(15869, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, 893), + NAME_FUNC_OFFSET(15895, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, 894), + NAME_FUNC_OFFSET(15921, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, 895), + NAME_FUNC_OFFSET(15942, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, 896), + NAME_FUNC_OFFSET(15964, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, 897), + NAME_FUNC_OFFSET(15984, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, 898), + NAME_FUNC_OFFSET(16025, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, 899), + NAME_FUNC_OFFSET(16057, glIsFramebufferEXT, glIsFramebufferEXT, NULL, 900), + NAME_FUNC_OFFSET(16076, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, 901), + NAME_FUNC_OFFSET(16096, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, 902), + NAME_FUNC_OFFSET(16121, gl_dispatch_stub_903, gl_dispatch_stub_903, NULL, 903), + NAME_FUNC_OFFSET(16142, gl_dispatch_stub_904, gl_dispatch_stub_904, NULL, 904), + NAME_FUNC_OFFSET(16166, gl_dispatch_stub_905, gl_dispatch_stub_905, NULL, 905), + NAME_FUNC_OFFSET(16196, glBindFragDataLocationEXT, glBindFragDataLocationEXT, NULL, 906), + NAME_FUNC_OFFSET(16222, glGetFragDataLocationEXT, glGetFragDataLocationEXT, NULL, 907), + NAME_FUNC_OFFSET(16247, glGetUniformuivEXT, glGetUniformuivEXT, NULL, 908), + NAME_FUNC_OFFSET(16266, glGetVertexAttribIivEXT, glGetVertexAttribIivEXT, NULL, 909), + NAME_FUNC_OFFSET(16290, glGetVertexAttribIuivEXT, glGetVertexAttribIuivEXT, NULL, 910), + NAME_FUNC_OFFSET(16315, glUniform1uiEXT, glUniform1uiEXT, NULL, 911), + NAME_FUNC_OFFSET(16331, glUniform1uivEXT, glUniform1uivEXT, NULL, 912), + NAME_FUNC_OFFSET(16348, glUniform2uiEXT, glUniform2uiEXT, NULL, 913), + NAME_FUNC_OFFSET(16364, glUniform2uivEXT, glUniform2uivEXT, NULL, 914), + NAME_FUNC_OFFSET(16381, glUniform3uiEXT, glUniform3uiEXT, NULL, 915), + NAME_FUNC_OFFSET(16397, glUniform3uivEXT, glUniform3uivEXT, NULL, 916), + NAME_FUNC_OFFSET(16414, glUniform4uiEXT, glUniform4uiEXT, NULL, 917), + NAME_FUNC_OFFSET(16430, glUniform4uivEXT, glUniform4uivEXT, NULL, 918), + NAME_FUNC_OFFSET(16447, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 919), + NAME_FUNC_OFFSET(16468, glVertexAttribI1ivEXT, glVertexAttribI1ivEXT, NULL, 920), + NAME_FUNC_OFFSET(16490, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 921), + NAME_FUNC_OFFSET(16512, glVertexAttribI1uivEXT, glVertexAttribI1uivEXT, NULL, 922), + NAME_FUNC_OFFSET(16535, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 923), + NAME_FUNC_OFFSET(16556, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 924), + NAME_FUNC_OFFSET(16578, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 925), + NAME_FUNC_OFFSET(16600, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 926), + NAME_FUNC_OFFSET(16623, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 927), + NAME_FUNC_OFFSET(16644, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 928), + NAME_FUNC_OFFSET(16666, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 929), + NAME_FUNC_OFFSET(16688, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 930), + NAME_FUNC_OFFSET(16711, glVertexAttribI4bvEXT, glVertexAttribI4bvEXT, NULL, 931), + NAME_FUNC_OFFSET(16733, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 932), + NAME_FUNC_OFFSET(16754, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 933), + NAME_FUNC_OFFSET(16776, glVertexAttribI4svEXT, glVertexAttribI4svEXT, NULL, 934), + NAME_FUNC_OFFSET(16798, glVertexAttribI4ubvEXT, glVertexAttribI4ubvEXT, NULL, 935), + NAME_FUNC_OFFSET(16821, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 936), + NAME_FUNC_OFFSET(16843, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 937), + NAME_FUNC_OFFSET(16866, glVertexAttribI4usvEXT, glVertexAttribI4usvEXT, NULL, 938), + NAME_FUNC_OFFSET(16889, glVertexAttribIPointerEXT, glVertexAttribIPointerEXT, NULL, 939), + NAME_FUNC_OFFSET(16915, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 940), + NAME_FUNC_OFFSET(16944, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, 941), + NAME_FUNC_OFFSET(16966, glDisableIndexedEXT, glDisableIndexedEXT, NULL, 942), + NAME_FUNC_OFFSET(16986, glEnableIndexedEXT, glEnableIndexedEXT, NULL, 943), + NAME_FUNC_OFFSET(17005, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, 944), + NAME_FUNC_OFFSET(17029, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, 945), + NAME_FUNC_OFFSET(17053, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, 946), + NAME_FUNC_OFFSET(17075, glClearColorIiEXT, glClearColorIiEXT, NULL, 947), + NAME_FUNC_OFFSET(17093, glClearColorIuiEXT, glClearColorIuiEXT, NULL, 948), + NAME_FUNC_OFFSET(17112, glGetTexParameterIivEXT, glGetTexParameterIivEXT, NULL, 949), + NAME_FUNC_OFFSET(17136, glGetTexParameterIuivEXT, glGetTexParameterIuivEXT, NULL, 950), + NAME_FUNC_OFFSET(17161, glTexParameterIivEXT, glTexParameterIivEXT, NULL, 951), + NAME_FUNC_OFFSET(17182, glTexParameterIuivEXT, glTexParameterIuivEXT, NULL, 952), + NAME_FUNC_OFFSET(17204, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, 953), + NAME_FUNC_OFFSET(17231, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, 954), + NAME_FUNC_OFFSET(17256, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, 955), + NAME_FUNC_OFFSET(17284, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, 956), + NAME_FUNC_OFFSET(17304, glBindBufferOffsetEXT, glBindBufferOffsetEXT, NULL, 957), + NAME_FUNC_OFFSET(17326, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, 958), + NAME_FUNC_OFFSET(17347, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, 959), + NAME_FUNC_OFFSET(17373, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, 960), + NAME_FUNC_OFFSET(17406, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, 961), + NAME_FUNC_OFFSET(17437, glProvokingVertexEXT, glProvokingVertexEXT, NULL, 962), + NAME_FUNC_OFFSET(17458, gl_dispatch_stub_963, gl_dispatch_stub_963, NULL, 963), + NAME_FUNC_OFFSET(17489, gl_dispatch_stub_964, gl_dispatch_stub_964, NULL, 964), + NAME_FUNC_OFFSET(17509, glGetObjectParameterivAPPLE, glGetObjectParameterivAPPLE, NULL, 965), + NAME_FUNC_OFFSET(17537, glObjectPurgeableAPPLE, glObjectPurgeableAPPLE, NULL, 966), + NAME_FUNC_OFFSET(17560, glObjectUnpurgeableAPPLE, glObjectUnpurgeableAPPLE, NULL, 967), + NAME_FUNC_OFFSET(17585, glActiveProgramEXT, glActiveProgramEXT, NULL, 968), + NAME_FUNC_OFFSET(17604, glCreateShaderProgramEXT, glCreateShaderProgramEXT, NULL, 969), + NAME_FUNC_OFFSET(17629, glUseShaderProgramEXT, glUseShaderProgramEXT, NULL, 970), + NAME_FUNC_OFFSET(17651, glTextureBarrierNV, glTextureBarrierNV, NULL, 971), + NAME_FUNC_OFFSET(17670, gl_dispatch_stub_972, gl_dispatch_stub_972, NULL, 972), + NAME_FUNC_OFFSET(17695, gl_dispatch_stub_973, gl_dispatch_stub_973, NULL, 973), + NAME_FUNC_OFFSET(17724, gl_dispatch_stub_974, gl_dispatch_stub_974, NULL, 974), + NAME_FUNC_OFFSET(17755, gl_dispatch_stub_975, gl_dispatch_stub_975, NULL, 975), + NAME_FUNC_OFFSET(17779, gl_dispatch_stub_976, gl_dispatch_stub_976, NULL, 976), + NAME_FUNC_OFFSET(17804, glEGLImageTargetRenderbufferStorageOES, glEGLImageTargetRenderbufferStorageOES, NULL, 977), + NAME_FUNC_OFFSET(17843, glEGLImageTargetTexture2DOES, glEGLImageTargetTexture2DOES, NULL, 978), + NAME_FUNC_OFFSET(17872, glArrayElement, glArrayElement, NULL, 306), + NAME_FUNC_OFFSET(17890, glBindTexture, glBindTexture, NULL, 307), + NAME_FUNC_OFFSET(17907, glDrawArrays, glDrawArrays, NULL, 310), + NAME_FUNC_OFFSET(17923, glAreTexturesResident, glAreTexturesResidentEXT, glAreTexturesResidentEXT, 322), + NAME_FUNC_OFFSET(17948, glCopyTexImage1D, glCopyTexImage1D, NULL, 323), + NAME_FUNC_OFFSET(17968, glCopyTexImage2D, glCopyTexImage2D, NULL, 324), + NAME_FUNC_OFFSET(17988, glCopyTexSubImage1D, glCopyTexSubImage1D, NULL, 325), + NAME_FUNC_OFFSET(18011, glCopyTexSubImage2D, glCopyTexSubImage2D, NULL, 326), + NAME_FUNC_OFFSET(18034, glDeleteTextures, glDeleteTexturesEXT, glDeleteTexturesEXT, 327), + NAME_FUNC_OFFSET(18054, glGenTextures, glGenTexturesEXT, glGenTexturesEXT, 328), + NAME_FUNC_OFFSET(18071, glGetPointerv, glGetPointerv, NULL, 329), + NAME_FUNC_OFFSET(18088, glIsTexture, glIsTextureEXT, glIsTextureEXT, 330), + NAME_FUNC_OFFSET(18103, glPrioritizeTextures, glPrioritizeTextures, NULL, 331), + NAME_FUNC_OFFSET(18127, glTexSubImage1D, glTexSubImage1D, NULL, 332), + NAME_FUNC_OFFSET(18146, glTexSubImage2D, glTexSubImage2D, NULL, 333), + NAME_FUNC_OFFSET(18165, glBlendColor, glBlendColor, NULL, 336), + NAME_FUNC_OFFSET(18181, glBlendEquation, glBlendEquation, NULL, 337), + NAME_FUNC_OFFSET(18200, glDrawRangeElements, glDrawRangeElements, NULL, 338), + NAME_FUNC_OFFSET(18223, glColorTable, glColorTable, NULL, 339), + NAME_FUNC_OFFSET(18239, glColorTable, glColorTable, NULL, 339), + NAME_FUNC_OFFSET(18255, glColorTableParameterfv, glColorTableParameterfv, NULL, 340), + NAME_FUNC_OFFSET(18282, glColorTableParameteriv, glColorTableParameteriv, NULL, 341), + NAME_FUNC_OFFSET(18309, glCopyColorTable, glCopyColorTable, NULL, 342), + NAME_FUNC_OFFSET(18329, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343), + NAME_FUNC_OFFSET(18348, glGetColorTable, glGetColorTableEXT, glGetColorTableEXT, 343), + NAME_FUNC_OFFSET(18367, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344), + NAME_FUNC_OFFSET(18397, glGetColorTableParameterfv, glGetColorTableParameterfvEXT, glGetColorTableParameterfvEXT, 344), + NAME_FUNC_OFFSET(18427, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345), + NAME_FUNC_OFFSET(18457, glGetColorTableParameteriv, glGetColorTableParameterivEXT, glGetColorTableParameterivEXT, 345), + NAME_FUNC_OFFSET(18487, glColorSubTable, glColorSubTable, NULL, 346), + NAME_FUNC_OFFSET(18506, glCopyColorSubTable, glCopyColorSubTable, NULL, 347), + NAME_FUNC_OFFSET(18529, glConvolutionFilter1D, glConvolutionFilter1D, NULL, 348), + NAME_FUNC_OFFSET(18554, glConvolutionFilter2D, glConvolutionFilter2D, NULL, 349), + NAME_FUNC_OFFSET(18579, glConvolutionParameterf, glConvolutionParameterf, NULL, 350), + NAME_FUNC_OFFSET(18606, glConvolutionParameterfv, glConvolutionParameterfv, NULL, 351), + NAME_FUNC_OFFSET(18634, glConvolutionParameteri, glConvolutionParameteri, NULL, 352), + NAME_FUNC_OFFSET(18661, glConvolutionParameteriv, glConvolutionParameteriv, NULL, 353), + NAME_FUNC_OFFSET(18689, glCopyConvolutionFilter1D, glCopyConvolutionFilter1D, NULL, 354), + NAME_FUNC_OFFSET(18718, glCopyConvolutionFilter2D, glCopyConvolutionFilter2D, NULL, 355), + NAME_FUNC_OFFSET(18747, glGetConvolutionFilter, gl_dispatch_stub_356, gl_dispatch_stub_356, 356), + NAME_FUNC_OFFSET(18773, glGetConvolutionParameterfv, gl_dispatch_stub_357, gl_dispatch_stub_357, 357), + NAME_FUNC_OFFSET(18804, glGetConvolutionParameteriv, gl_dispatch_stub_358, gl_dispatch_stub_358, 358), + NAME_FUNC_OFFSET(18835, glGetSeparableFilter, gl_dispatch_stub_359, gl_dispatch_stub_359, 359), + NAME_FUNC_OFFSET(18859, glSeparableFilter2D, glSeparableFilter2D, NULL, 360), + NAME_FUNC_OFFSET(18882, glGetHistogram, gl_dispatch_stub_361, gl_dispatch_stub_361, 361), + NAME_FUNC_OFFSET(18900, glGetHistogramParameterfv, gl_dispatch_stub_362, gl_dispatch_stub_362, 362), + NAME_FUNC_OFFSET(18929, glGetHistogramParameteriv, gl_dispatch_stub_363, gl_dispatch_stub_363, 363), + NAME_FUNC_OFFSET(18958, glGetMinmax, gl_dispatch_stub_364, gl_dispatch_stub_364, 364), + NAME_FUNC_OFFSET(18973, glGetMinmaxParameterfv, gl_dispatch_stub_365, gl_dispatch_stub_365, 365), + NAME_FUNC_OFFSET(18999, glGetMinmaxParameteriv, gl_dispatch_stub_366, gl_dispatch_stub_366, 366), + NAME_FUNC_OFFSET(19025, glHistogram, glHistogram, NULL, 367), + NAME_FUNC_OFFSET(19040, glMinmax, glMinmax, NULL, 368), + NAME_FUNC_OFFSET(19052, glResetHistogram, glResetHistogram, NULL, 369), + NAME_FUNC_OFFSET(19072, glResetMinmax, glResetMinmax, NULL, 370), + NAME_FUNC_OFFSET(19089, glTexImage3D, glTexImage3D, NULL, 371), + NAME_FUNC_OFFSET(19105, glTexSubImage3D, glTexSubImage3D, NULL, 372), + NAME_FUNC_OFFSET(19124, glCopyTexSubImage3D, glCopyTexSubImage3D, NULL, 373), + NAME_FUNC_OFFSET(19147, glActiveTextureARB, glActiveTextureARB, NULL, 374), + NAME_FUNC_OFFSET(19163, glClientActiveTextureARB, glClientActiveTextureARB, NULL, 375), + NAME_FUNC_OFFSET(19185, glMultiTexCoord1dARB, glMultiTexCoord1dARB, NULL, 376), + NAME_FUNC_OFFSET(19203, glMultiTexCoord1dvARB, glMultiTexCoord1dvARB, NULL, 377), + NAME_FUNC_OFFSET(19222, glMultiTexCoord1fARB, glMultiTexCoord1fARB, NULL, 378), + NAME_FUNC_OFFSET(19240, glMultiTexCoord1fvARB, glMultiTexCoord1fvARB, NULL, 379), + NAME_FUNC_OFFSET(19259, glMultiTexCoord1iARB, glMultiTexCoord1iARB, NULL, 380), + NAME_FUNC_OFFSET(19277, glMultiTexCoord1ivARB, glMultiTexCoord1ivARB, NULL, 381), + NAME_FUNC_OFFSET(19296, glMultiTexCoord1sARB, glMultiTexCoord1sARB, NULL, 382), + NAME_FUNC_OFFSET(19314, glMultiTexCoord1svARB, glMultiTexCoord1svARB, NULL, 383), + NAME_FUNC_OFFSET(19333, glMultiTexCoord2dARB, glMultiTexCoord2dARB, NULL, 384), + NAME_FUNC_OFFSET(19351, glMultiTexCoord2dvARB, glMultiTexCoord2dvARB, NULL, 385), + NAME_FUNC_OFFSET(19370, glMultiTexCoord2fARB, glMultiTexCoord2fARB, NULL, 386), + NAME_FUNC_OFFSET(19388, glMultiTexCoord2fvARB, glMultiTexCoord2fvARB, NULL, 387), + NAME_FUNC_OFFSET(19407, glMultiTexCoord2iARB, glMultiTexCoord2iARB, NULL, 388), + NAME_FUNC_OFFSET(19425, glMultiTexCoord2ivARB, glMultiTexCoord2ivARB, NULL, 389), + NAME_FUNC_OFFSET(19444, glMultiTexCoord2sARB, glMultiTexCoord2sARB, NULL, 390), + NAME_FUNC_OFFSET(19462, glMultiTexCoord2svARB, glMultiTexCoord2svARB, NULL, 391), + NAME_FUNC_OFFSET(19481, glMultiTexCoord3dARB, glMultiTexCoord3dARB, NULL, 392), + NAME_FUNC_OFFSET(19499, glMultiTexCoord3dvARB, glMultiTexCoord3dvARB, NULL, 393), + NAME_FUNC_OFFSET(19518, glMultiTexCoord3fARB, glMultiTexCoord3fARB, NULL, 394), + NAME_FUNC_OFFSET(19536, glMultiTexCoord3fvARB, glMultiTexCoord3fvARB, NULL, 395), + NAME_FUNC_OFFSET(19555, glMultiTexCoord3iARB, glMultiTexCoord3iARB, NULL, 396), + NAME_FUNC_OFFSET(19573, glMultiTexCoord3ivARB, glMultiTexCoord3ivARB, NULL, 397), + NAME_FUNC_OFFSET(19592, glMultiTexCoord3sARB, glMultiTexCoord3sARB, NULL, 398), + NAME_FUNC_OFFSET(19610, glMultiTexCoord3svARB, glMultiTexCoord3svARB, NULL, 399), + NAME_FUNC_OFFSET(19629, glMultiTexCoord4dARB, glMultiTexCoord4dARB, NULL, 400), + NAME_FUNC_OFFSET(19647, glMultiTexCoord4dvARB, glMultiTexCoord4dvARB, NULL, 401), + NAME_FUNC_OFFSET(19666, glMultiTexCoord4fARB, glMultiTexCoord4fARB, NULL, 402), + NAME_FUNC_OFFSET(19684, glMultiTexCoord4fvARB, glMultiTexCoord4fvARB, NULL, 403), + NAME_FUNC_OFFSET(19703, glMultiTexCoord4iARB, glMultiTexCoord4iARB, NULL, 404), + NAME_FUNC_OFFSET(19721, glMultiTexCoord4ivARB, glMultiTexCoord4ivARB, NULL, 405), + NAME_FUNC_OFFSET(19740, glMultiTexCoord4sARB, glMultiTexCoord4sARB, NULL, 406), + NAME_FUNC_OFFSET(19758, glMultiTexCoord4svARB, glMultiTexCoord4svARB, NULL, 407), + NAME_FUNC_OFFSET(19777, glStencilOpSeparate, glStencilOpSeparate, NULL, 423), + NAME_FUNC_OFFSET(19800, glLoadTransposeMatrixdARB, glLoadTransposeMatrixdARB, NULL, 441), + NAME_FUNC_OFFSET(19823, glLoadTransposeMatrixfARB, glLoadTransposeMatrixfARB, NULL, 442), + NAME_FUNC_OFFSET(19846, glMultTransposeMatrixdARB, glMultTransposeMatrixdARB, NULL, 443), + NAME_FUNC_OFFSET(19869, glMultTransposeMatrixfARB, glMultTransposeMatrixfARB, NULL, 444), + NAME_FUNC_OFFSET(19892, glSampleCoverageARB, glSampleCoverageARB, NULL, 445), + NAME_FUNC_OFFSET(19909, glCompressedTexImage1DARB, glCompressedTexImage1DARB, NULL, 446), + NAME_FUNC_OFFSET(19932, glCompressedTexImage2DARB, glCompressedTexImage2DARB, NULL, 447), + NAME_FUNC_OFFSET(19955, glCompressedTexImage3DARB, glCompressedTexImage3DARB, NULL, 448), + NAME_FUNC_OFFSET(19978, glCompressedTexSubImage1DARB, glCompressedTexSubImage1DARB, NULL, 449), + NAME_FUNC_OFFSET(20004, glCompressedTexSubImage2DARB, glCompressedTexSubImage2DARB, NULL, 450), + NAME_FUNC_OFFSET(20030, glCompressedTexSubImage3DARB, glCompressedTexSubImage3DARB, NULL, 451), + NAME_FUNC_OFFSET(20056, glGetCompressedTexImageARB, glGetCompressedTexImageARB, NULL, 452), + NAME_FUNC_OFFSET(20080, glDisableVertexAttribArrayARB, glDisableVertexAttribArrayARB, NULL, 453), + NAME_FUNC_OFFSET(20107, glEnableVertexAttribArrayARB, glEnableVertexAttribArrayARB, NULL, 454), + NAME_FUNC_OFFSET(20133, glGetVertexAttribdvARB, glGetVertexAttribdvARB, NULL, 461), + NAME_FUNC_OFFSET(20153, glGetVertexAttribfvARB, glGetVertexAttribfvARB, NULL, 462), + NAME_FUNC_OFFSET(20173, glGetVertexAttribivARB, glGetVertexAttribivARB, NULL, 463), + NAME_FUNC_OFFSET(20193, glProgramEnvParameter4dARB, glProgramEnvParameter4dARB, NULL, 464), + NAME_FUNC_OFFSET(20216, glProgramEnvParameter4dvARB, glProgramEnvParameter4dvARB, NULL, 465), + NAME_FUNC_OFFSET(20240, glProgramEnvParameter4fARB, glProgramEnvParameter4fARB, NULL, 466), + NAME_FUNC_OFFSET(20263, glProgramEnvParameter4fvARB, glProgramEnvParameter4fvARB, NULL, 467), + NAME_FUNC_OFFSET(20287, glVertexAttrib1dARB, glVertexAttrib1dARB, NULL, 473), + NAME_FUNC_OFFSET(20304, glVertexAttrib1dvARB, glVertexAttrib1dvARB, NULL, 474), + NAME_FUNC_OFFSET(20322, glVertexAttrib1fARB, glVertexAttrib1fARB, NULL, 475), + NAME_FUNC_OFFSET(20339, glVertexAttrib1fvARB, glVertexAttrib1fvARB, NULL, 476), + NAME_FUNC_OFFSET(20357, glVertexAttrib1sARB, glVertexAttrib1sARB, NULL, 477), + NAME_FUNC_OFFSET(20374, glVertexAttrib1svARB, glVertexAttrib1svARB, NULL, 478), + NAME_FUNC_OFFSET(20392, glVertexAttrib2dARB, glVertexAttrib2dARB, NULL, 479), + NAME_FUNC_OFFSET(20409, glVertexAttrib2dvARB, glVertexAttrib2dvARB, NULL, 480), + NAME_FUNC_OFFSET(20427, glVertexAttrib2fARB, glVertexAttrib2fARB, NULL, 481), + NAME_FUNC_OFFSET(20444, glVertexAttrib2fvARB, glVertexAttrib2fvARB, NULL, 482), + NAME_FUNC_OFFSET(20462, glVertexAttrib2sARB, glVertexAttrib2sARB, NULL, 483), + NAME_FUNC_OFFSET(20479, glVertexAttrib2svARB, glVertexAttrib2svARB, NULL, 484), + NAME_FUNC_OFFSET(20497, glVertexAttrib3dARB, glVertexAttrib3dARB, NULL, 485), + NAME_FUNC_OFFSET(20514, glVertexAttrib3dvARB, glVertexAttrib3dvARB, NULL, 486), + NAME_FUNC_OFFSET(20532, glVertexAttrib3fARB, glVertexAttrib3fARB, NULL, 487), + NAME_FUNC_OFFSET(20549, glVertexAttrib3fvARB, glVertexAttrib3fvARB, NULL, 488), + NAME_FUNC_OFFSET(20567, glVertexAttrib3sARB, glVertexAttrib3sARB, NULL, 489), + NAME_FUNC_OFFSET(20584, glVertexAttrib3svARB, glVertexAttrib3svARB, NULL, 490), + NAME_FUNC_OFFSET(20602, glVertexAttrib4NbvARB, glVertexAttrib4NbvARB, NULL, 491), + NAME_FUNC_OFFSET(20621, glVertexAttrib4NivARB, glVertexAttrib4NivARB, NULL, 492), + NAME_FUNC_OFFSET(20640, glVertexAttrib4NsvARB, glVertexAttrib4NsvARB, NULL, 493), + NAME_FUNC_OFFSET(20659, glVertexAttrib4NubARB, glVertexAttrib4NubARB, NULL, 494), + NAME_FUNC_OFFSET(20678, glVertexAttrib4NubvARB, glVertexAttrib4NubvARB, NULL, 495), + NAME_FUNC_OFFSET(20698, glVertexAttrib4NuivARB, glVertexAttrib4NuivARB, NULL, 496), + NAME_FUNC_OFFSET(20718, glVertexAttrib4NusvARB, glVertexAttrib4NusvARB, NULL, 497), + NAME_FUNC_OFFSET(20738, glVertexAttrib4bvARB, glVertexAttrib4bvARB, NULL, 498), + NAME_FUNC_OFFSET(20756, glVertexAttrib4dARB, glVertexAttrib4dARB, NULL, 499), + NAME_FUNC_OFFSET(20773, glVertexAttrib4dvARB, glVertexAttrib4dvARB, NULL, 500), + NAME_FUNC_OFFSET(20791, glVertexAttrib4fARB, glVertexAttrib4fARB, NULL, 501), + NAME_FUNC_OFFSET(20808, glVertexAttrib4fvARB, glVertexAttrib4fvARB, NULL, 502), + NAME_FUNC_OFFSET(20826, glVertexAttrib4ivARB, glVertexAttrib4ivARB, NULL, 503), + NAME_FUNC_OFFSET(20844, glVertexAttrib4sARB, glVertexAttrib4sARB, NULL, 504), + NAME_FUNC_OFFSET(20861, glVertexAttrib4svARB, glVertexAttrib4svARB, NULL, 505), + NAME_FUNC_OFFSET(20879, glVertexAttrib4ubvARB, glVertexAttrib4ubvARB, NULL, 506), + NAME_FUNC_OFFSET(20898, glVertexAttrib4uivARB, glVertexAttrib4uivARB, NULL, 507), + NAME_FUNC_OFFSET(20917, glVertexAttrib4usvARB, glVertexAttrib4usvARB, NULL, 508), + NAME_FUNC_OFFSET(20936, glVertexAttribPointerARB, glVertexAttribPointerARB, NULL, 509), + NAME_FUNC_OFFSET(20958, glBindBufferARB, glBindBufferARB, NULL, 510), + NAME_FUNC_OFFSET(20971, glBufferDataARB, glBufferDataARB, NULL, 511), + NAME_FUNC_OFFSET(20984, glBufferSubDataARB, glBufferSubDataARB, NULL, 512), + NAME_FUNC_OFFSET(21000, glDeleteBuffersARB, glDeleteBuffersARB, NULL, 513), + NAME_FUNC_OFFSET(21016, glGenBuffersARB, glGenBuffersARB, NULL, 514), + NAME_FUNC_OFFSET(21029, glGetBufferParameterivARB, glGetBufferParameterivARB, NULL, 515), + NAME_FUNC_OFFSET(21052, glGetBufferPointervARB, glGetBufferPointervARB, NULL, 516), + NAME_FUNC_OFFSET(21072, glGetBufferSubDataARB, glGetBufferSubDataARB, NULL, 517), + NAME_FUNC_OFFSET(21091, glIsBufferARB, glIsBufferARB, NULL, 518), + NAME_FUNC_OFFSET(21102, glMapBufferARB, glMapBufferARB, NULL, 519), + NAME_FUNC_OFFSET(21114, glUnmapBufferARB, glUnmapBufferARB, NULL, 520), + NAME_FUNC_OFFSET(21128, glBeginQueryARB, glBeginQueryARB, NULL, 521), + NAME_FUNC_OFFSET(21141, glDeleteQueriesARB, glDeleteQueriesARB, NULL, 522), + NAME_FUNC_OFFSET(21157, glEndQueryARB, glEndQueryARB, NULL, 523), + NAME_FUNC_OFFSET(21168, glGenQueriesARB, glGenQueriesARB, NULL, 524), + NAME_FUNC_OFFSET(21181, glGetQueryObjectivARB, glGetQueryObjectivARB, NULL, 525), + NAME_FUNC_OFFSET(21200, glGetQueryObjectuivARB, glGetQueryObjectuivARB, NULL, 526), + NAME_FUNC_OFFSET(21220, glGetQueryivARB, glGetQueryivARB, NULL, 527), + NAME_FUNC_OFFSET(21233, glIsQueryARB, glIsQueryARB, NULL, 528), + NAME_FUNC_OFFSET(21243, glCompileShaderARB, glCompileShaderARB, NULL, 530), + NAME_FUNC_OFFSET(21259, glGetActiveUniformARB, glGetActiveUniformARB, NULL, 535), + NAME_FUNC_OFFSET(21278, glGetShaderSourceARB, glGetShaderSourceARB, NULL, 541), + NAME_FUNC_OFFSET(21296, glGetUniformLocationARB, glGetUniformLocationARB, NULL, 542), + NAME_FUNC_OFFSET(21317, glGetUniformfvARB, glGetUniformfvARB, NULL, 543), + NAME_FUNC_OFFSET(21332, glGetUniformivARB, glGetUniformivARB, NULL, 544), + NAME_FUNC_OFFSET(21347, glLinkProgramARB, glLinkProgramARB, NULL, 545), + NAME_FUNC_OFFSET(21361, glShaderSourceARB, glShaderSourceARB, NULL, 546), + NAME_FUNC_OFFSET(21376, glUniform1fARB, glUniform1fARB, NULL, 547), + NAME_FUNC_OFFSET(21388, glUniform1fvARB, glUniform1fvARB, NULL, 548), + NAME_FUNC_OFFSET(21401, glUniform1iARB, glUniform1iARB, NULL, 549), + NAME_FUNC_OFFSET(21413, glUniform1ivARB, glUniform1ivARB, NULL, 550), + NAME_FUNC_OFFSET(21426, glUniform2fARB, glUniform2fARB, NULL, 551), + NAME_FUNC_OFFSET(21438, glUniform2fvARB, glUniform2fvARB, NULL, 552), + NAME_FUNC_OFFSET(21451, glUniform2iARB, glUniform2iARB, NULL, 553), + NAME_FUNC_OFFSET(21463, glUniform2ivARB, glUniform2ivARB, NULL, 554), + NAME_FUNC_OFFSET(21476, glUniform3fARB, glUniform3fARB, NULL, 555), + NAME_FUNC_OFFSET(21488, glUniform3fvARB, glUniform3fvARB, NULL, 556), + NAME_FUNC_OFFSET(21501, glUniform3iARB, glUniform3iARB, NULL, 557), + NAME_FUNC_OFFSET(21513, glUniform3ivARB, glUniform3ivARB, NULL, 558), + NAME_FUNC_OFFSET(21526, glUniform4fARB, glUniform4fARB, NULL, 559), + NAME_FUNC_OFFSET(21538, glUniform4fvARB, glUniform4fvARB, NULL, 560), + NAME_FUNC_OFFSET(21551, glUniform4iARB, glUniform4iARB, NULL, 561), + NAME_FUNC_OFFSET(21563, glUniform4ivARB, glUniform4ivARB, NULL, 562), + NAME_FUNC_OFFSET(21576, glUniformMatrix2fvARB, glUniformMatrix2fvARB, NULL, 563), + NAME_FUNC_OFFSET(21595, glUniformMatrix3fvARB, glUniformMatrix3fvARB, NULL, 564), + NAME_FUNC_OFFSET(21614, glUniformMatrix4fvARB, glUniformMatrix4fvARB, NULL, 565), + NAME_FUNC_OFFSET(21633, glUseProgramObjectARB, glUseProgramObjectARB, NULL, 566), + NAME_FUNC_OFFSET(21646, glValidateProgramARB, glValidateProgramARB, NULL, 567), + NAME_FUNC_OFFSET(21664, glBindAttribLocationARB, glBindAttribLocationARB, NULL, 568), + NAME_FUNC_OFFSET(21685, glGetActiveAttribARB, glGetActiveAttribARB, NULL, 569), + NAME_FUNC_OFFSET(21703, glGetAttribLocationARB, glGetAttribLocationARB, NULL, 570), + NAME_FUNC_OFFSET(21723, glDrawBuffersARB, glDrawBuffersARB, NULL, 571), + NAME_FUNC_OFFSET(21737, glDrawBuffersARB, glDrawBuffersARB, NULL, 571), + NAME_FUNC_OFFSET(21754, glDrawBuffersARB, glDrawBuffersARB, NULL, 571), + NAME_FUNC_OFFSET(21770, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 573), + NAME_FUNC_OFFSET(21795, glDrawArraysInstancedARB, glDrawArraysInstancedARB, NULL, 573), + NAME_FUNC_OFFSET(21817, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 574), + NAME_FUNC_OFFSET(21844, glDrawElementsInstancedARB, glDrawElementsInstancedARB, NULL, 574), + NAME_FUNC_OFFSET(21868, glRenderbufferStorageMultisample, glRenderbufferStorageMultisample, NULL, 575), + NAME_FUNC_OFFSET(21904, glBlendEquationSeparateiARB, glBlendEquationSeparateiARB, NULL, 597), + NAME_FUNC_OFFSET(21938, glBlendEquationiARB, glBlendEquationiARB, NULL, 598), + NAME_FUNC_OFFSET(21964, glBlendFuncSeparateiARB, glBlendFuncSeparateiARB, NULL, 599), + NAME_FUNC_OFFSET(21994, glBlendFunciARB, glBlendFunciARB, NULL, 600), + NAME_FUNC_OFFSET(22016, gl_dispatch_stub_704, gl_dispatch_stub_704, NULL, 704), + NAME_FUNC_OFFSET(22032, gl_dispatch_stub_705, gl_dispatch_stub_705, NULL, 705), + NAME_FUNC_OFFSET(22051, glPointParameterfEXT, glPointParameterfEXT, NULL, 712), + NAME_FUNC_OFFSET(22069, glPointParameterfEXT, glPointParameterfEXT, NULL, 712), + NAME_FUNC_OFFSET(22090, glPointParameterfEXT, glPointParameterfEXT, NULL, 712), + NAME_FUNC_OFFSET(22112, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 713), + NAME_FUNC_OFFSET(22131, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 713), + NAME_FUNC_OFFSET(22153, glPointParameterfvEXT, glPointParameterfvEXT, NULL, 713), + NAME_FUNC_OFFSET(22176, glSecondaryColor3bEXT, glSecondaryColor3bEXT, NULL, 716), + NAME_FUNC_OFFSET(22195, glSecondaryColor3bvEXT, glSecondaryColor3bvEXT, NULL, 717), + NAME_FUNC_OFFSET(22215, glSecondaryColor3dEXT, glSecondaryColor3dEXT, NULL, 718), + NAME_FUNC_OFFSET(22234, glSecondaryColor3dvEXT, glSecondaryColor3dvEXT, NULL, 719), + NAME_FUNC_OFFSET(22254, glSecondaryColor3fEXT, glSecondaryColor3fEXT, NULL, 720), + NAME_FUNC_OFFSET(22273, glSecondaryColor3fvEXT, glSecondaryColor3fvEXT, NULL, 721), + NAME_FUNC_OFFSET(22293, glSecondaryColor3iEXT, glSecondaryColor3iEXT, NULL, 722), + NAME_FUNC_OFFSET(22312, glSecondaryColor3ivEXT, glSecondaryColor3ivEXT, NULL, 723), + NAME_FUNC_OFFSET(22332, glSecondaryColor3sEXT, glSecondaryColor3sEXT, NULL, 724), + NAME_FUNC_OFFSET(22351, glSecondaryColor3svEXT, glSecondaryColor3svEXT, NULL, 725), + NAME_FUNC_OFFSET(22371, glSecondaryColor3ubEXT, glSecondaryColor3ubEXT, NULL, 726), + NAME_FUNC_OFFSET(22391, glSecondaryColor3ubvEXT, glSecondaryColor3ubvEXT, NULL, 727), + NAME_FUNC_OFFSET(22412, glSecondaryColor3uiEXT, glSecondaryColor3uiEXT, NULL, 728), + NAME_FUNC_OFFSET(22432, glSecondaryColor3uivEXT, glSecondaryColor3uivEXT, NULL, 729), + NAME_FUNC_OFFSET(22453, glSecondaryColor3usEXT, glSecondaryColor3usEXT, NULL, 730), + NAME_FUNC_OFFSET(22473, glSecondaryColor3usvEXT, glSecondaryColor3usvEXT, NULL, 731), + NAME_FUNC_OFFSET(22494, glSecondaryColorPointerEXT, glSecondaryColorPointerEXT, NULL, 732), + NAME_FUNC_OFFSET(22518, glMultiDrawArraysEXT, glMultiDrawArraysEXT, NULL, 733), + NAME_FUNC_OFFSET(22536, glMultiDrawElementsEXT, glMultiDrawElementsEXT, NULL, 734), + NAME_FUNC_OFFSET(22556, glFogCoordPointerEXT, glFogCoordPointerEXT, NULL, 735), + NAME_FUNC_OFFSET(22574, glFogCoorddEXT, glFogCoorddEXT, NULL, 736), + NAME_FUNC_OFFSET(22586, glFogCoorddvEXT, glFogCoorddvEXT, NULL, 737), + NAME_FUNC_OFFSET(22599, glFogCoordfEXT, glFogCoordfEXT, NULL, 738), + NAME_FUNC_OFFSET(22611, glFogCoordfvEXT, glFogCoordfvEXT, NULL, 739), + NAME_FUNC_OFFSET(22624, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 741), + NAME_FUNC_OFFSET(22644, glBlendFuncSeparateEXT, glBlendFuncSeparateEXT, NULL, 741), + NAME_FUNC_OFFSET(22668, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 758), + NAME_FUNC_OFFSET(22682, glWindowPos2dMESA, glWindowPos2dMESA, NULL, 758), + NAME_FUNC_OFFSET(22699, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 759), + NAME_FUNC_OFFSET(22714, glWindowPos2dvMESA, glWindowPos2dvMESA, NULL, 759), + NAME_FUNC_OFFSET(22732, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 760), + NAME_FUNC_OFFSET(22746, glWindowPos2fMESA, glWindowPos2fMESA, NULL, 760), + NAME_FUNC_OFFSET(22763, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 761), + NAME_FUNC_OFFSET(22778, glWindowPos2fvMESA, glWindowPos2fvMESA, NULL, 761), + NAME_FUNC_OFFSET(22796, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 762), + NAME_FUNC_OFFSET(22810, glWindowPos2iMESA, glWindowPos2iMESA, NULL, 762), + NAME_FUNC_OFFSET(22827, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 763), + NAME_FUNC_OFFSET(22842, glWindowPos2ivMESA, glWindowPos2ivMESA, NULL, 763), + NAME_FUNC_OFFSET(22860, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 764), + NAME_FUNC_OFFSET(22874, glWindowPos2sMESA, glWindowPos2sMESA, NULL, 764), + NAME_FUNC_OFFSET(22891, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 765), + NAME_FUNC_OFFSET(22906, glWindowPos2svMESA, glWindowPos2svMESA, NULL, 765), + NAME_FUNC_OFFSET(22924, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 766), + NAME_FUNC_OFFSET(22938, glWindowPos3dMESA, glWindowPos3dMESA, NULL, 766), + NAME_FUNC_OFFSET(22955, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 767), + NAME_FUNC_OFFSET(22970, glWindowPos3dvMESA, glWindowPos3dvMESA, NULL, 767), + NAME_FUNC_OFFSET(22988, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 768), + NAME_FUNC_OFFSET(23002, glWindowPos3fMESA, glWindowPos3fMESA, NULL, 768), + NAME_FUNC_OFFSET(23019, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 769), + NAME_FUNC_OFFSET(23034, glWindowPos3fvMESA, glWindowPos3fvMESA, NULL, 769), + NAME_FUNC_OFFSET(23052, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 770), + NAME_FUNC_OFFSET(23066, glWindowPos3iMESA, glWindowPos3iMESA, NULL, 770), + NAME_FUNC_OFFSET(23083, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 771), + NAME_FUNC_OFFSET(23098, glWindowPos3ivMESA, glWindowPos3ivMESA, NULL, 771), + NAME_FUNC_OFFSET(23116, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 772), + NAME_FUNC_OFFSET(23130, glWindowPos3sMESA, glWindowPos3sMESA, NULL, 772), + NAME_FUNC_OFFSET(23147, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 773), + NAME_FUNC_OFFSET(23162, glWindowPos3svMESA, glWindowPos3svMESA, NULL, 773), + NAME_FUNC_OFFSET(23180, glBindProgramNV, glBindProgramNV, NULL, 792), + NAME_FUNC_OFFSET(23197, glDeleteProgramsNV, glDeleteProgramsNV, NULL, 793), + NAME_FUNC_OFFSET(23217, glGenProgramsNV, glGenProgramsNV, NULL, 795), + NAME_FUNC_OFFSET(23234, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 801), + NAME_FUNC_OFFSET(23260, glGetVertexAttribPointervNV, glGetVertexAttribPointervNV, NULL, 801), + NAME_FUNC_OFFSET(23289, glIsProgramNV, glIsProgramNV, NULL, 805), + NAME_FUNC_OFFSET(23304, glPointParameteriNV, glPointParameteriNV, NULL, 869), + NAME_FUNC_OFFSET(23322, glPointParameterivNV, glPointParameterivNV, NULL, 870), + NAME_FUNC_OFFSET(23341, gl_dispatch_stub_873, gl_dispatch_stub_873, NULL, 873), + NAME_FUNC_OFFSET(23362, gl_dispatch_stub_875, gl_dispatch_stub_875, NULL, 875), + NAME_FUNC_OFFSET(23378, glPrimitiveRestartIndexNV, glPrimitiveRestartIndexNV, NULL, 882), + NAME_FUNC_OFFSET(23402, gl_dispatch_stub_885, gl_dispatch_stub_885, NULL, 885), + NAME_FUNC_OFFSET(23426, gl_dispatch_stub_885, gl_dispatch_stub_885, NULL, 885), + NAME_FUNC_OFFSET(23453, glBindFramebufferEXT, glBindFramebufferEXT, NULL, 886), + NAME_FUNC_OFFSET(23471, glBindRenderbufferEXT, glBindRenderbufferEXT, NULL, 887), + NAME_FUNC_OFFSET(23490, glCheckFramebufferStatusEXT, glCheckFramebufferStatusEXT, NULL, 888), + NAME_FUNC_OFFSET(23515, glDeleteFramebuffersEXT, glDeleteFramebuffersEXT, NULL, 889), + NAME_FUNC_OFFSET(23536, glDeleteRenderbuffersEXT, glDeleteRenderbuffersEXT, NULL, 890), + NAME_FUNC_OFFSET(23558, glFramebufferRenderbufferEXT, glFramebufferRenderbufferEXT, NULL, 891), + NAME_FUNC_OFFSET(23584, glFramebufferTexture1DEXT, glFramebufferTexture1DEXT, NULL, 892), + NAME_FUNC_OFFSET(23607, glFramebufferTexture2DEXT, glFramebufferTexture2DEXT, NULL, 893), + NAME_FUNC_OFFSET(23630, glFramebufferTexture3DEXT, glFramebufferTexture3DEXT, NULL, 894), + NAME_FUNC_OFFSET(23653, glGenFramebuffersEXT, glGenFramebuffersEXT, NULL, 895), + NAME_FUNC_OFFSET(23671, glGenRenderbuffersEXT, glGenRenderbuffersEXT, NULL, 896), + NAME_FUNC_OFFSET(23690, glGenerateMipmapEXT, glGenerateMipmapEXT, NULL, 897), + NAME_FUNC_OFFSET(23707, glGetFramebufferAttachmentParameterivEXT, glGetFramebufferAttachmentParameterivEXT, NULL, 898), + NAME_FUNC_OFFSET(23745, glGetRenderbufferParameterivEXT, glGetRenderbufferParameterivEXT, NULL, 899), + NAME_FUNC_OFFSET(23774, glIsFramebufferEXT, glIsFramebufferEXT, NULL, 900), + NAME_FUNC_OFFSET(23790, glIsRenderbufferEXT, glIsRenderbufferEXT, NULL, 901), + NAME_FUNC_OFFSET(23807, glRenderbufferStorageEXT, glRenderbufferStorageEXT, NULL, 902), + NAME_FUNC_OFFSET(23829, gl_dispatch_stub_903, gl_dispatch_stub_903, NULL, 903), + NAME_FUNC_OFFSET(23847, glBindFragDataLocationEXT, glBindFragDataLocationEXT, NULL, 906), + NAME_FUNC_OFFSET(23870, glGetFragDataLocationEXT, glGetFragDataLocationEXT, NULL, 907), + NAME_FUNC_OFFSET(23892, glGetUniformuivEXT, glGetUniformuivEXT, NULL, 908), + NAME_FUNC_OFFSET(23908, glGetVertexAttribIivEXT, glGetVertexAttribIivEXT, NULL, 909), + NAME_FUNC_OFFSET(23929, glGetVertexAttribIuivEXT, glGetVertexAttribIuivEXT, NULL, 910), + NAME_FUNC_OFFSET(23951, glUniform1uiEXT, glUniform1uiEXT, NULL, 911), + NAME_FUNC_OFFSET(23964, glUniform1uivEXT, glUniform1uivEXT, NULL, 912), + NAME_FUNC_OFFSET(23978, glUniform2uiEXT, glUniform2uiEXT, NULL, 913), + NAME_FUNC_OFFSET(23991, glUniform2uivEXT, glUniform2uivEXT, NULL, 914), + NAME_FUNC_OFFSET(24005, glUniform3uiEXT, glUniform3uiEXT, NULL, 915), + NAME_FUNC_OFFSET(24018, glUniform3uivEXT, glUniform3uivEXT, NULL, 916), + NAME_FUNC_OFFSET(24032, glUniform4uiEXT, glUniform4uiEXT, NULL, 917), + NAME_FUNC_OFFSET(24045, glUniform4uivEXT, glUniform4uivEXT, NULL, 918), + NAME_FUNC_OFFSET(24059, glVertexAttribI1iEXT, glVertexAttribI1iEXT, NULL, 919), + NAME_FUNC_OFFSET(24077, glVertexAttribI1ivEXT, glVertexAttribI1ivEXT, NULL, 920), + NAME_FUNC_OFFSET(24096, glVertexAttribI1uiEXT, glVertexAttribI1uiEXT, NULL, 921), + NAME_FUNC_OFFSET(24115, glVertexAttribI1uivEXT, glVertexAttribI1uivEXT, NULL, 922), + NAME_FUNC_OFFSET(24135, glVertexAttribI2iEXT, glVertexAttribI2iEXT, NULL, 923), + NAME_FUNC_OFFSET(24153, glVertexAttribI2ivEXT, glVertexAttribI2ivEXT, NULL, 924), + NAME_FUNC_OFFSET(24172, glVertexAttribI2uiEXT, glVertexAttribI2uiEXT, NULL, 925), + NAME_FUNC_OFFSET(24191, glVertexAttribI2uivEXT, glVertexAttribI2uivEXT, NULL, 926), + NAME_FUNC_OFFSET(24211, glVertexAttribI3iEXT, glVertexAttribI3iEXT, NULL, 927), + NAME_FUNC_OFFSET(24229, glVertexAttribI3ivEXT, glVertexAttribI3ivEXT, NULL, 928), + NAME_FUNC_OFFSET(24248, glVertexAttribI3uiEXT, glVertexAttribI3uiEXT, NULL, 929), + NAME_FUNC_OFFSET(24267, glVertexAttribI3uivEXT, glVertexAttribI3uivEXT, NULL, 930), + NAME_FUNC_OFFSET(24287, glVertexAttribI4bvEXT, glVertexAttribI4bvEXT, NULL, 931), + NAME_FUNC_OFFSET(24306, glVertexAttribI4iEXT, glVertexAttribI4iEXT, NULL, 932), + NAME_FUNC_OFFSET(24324, glVertexAttribI4ivEXT, glVertexAttribI4ivEXT, NULL, 933), + NAME_FUNC_OFFSET(24343, glVertexAttribI4svEXT, glVertexAttribI4svEXT, NULL, 934), + NAME_FUNC_OFFSET(24362, glVertexAttribI4ubvEXT, glVertexAttribI4ubvEXT, NULL, 935), + NAME_FUNC_OFFSET(24382, glVertexAttribI4uiEXT, glVertexAttribI4uiEXT, NULL, 936), + NAME_FUNC_OFFSET(24401, glVertexAttribI4uivEXT, glVertexAttribI4uivEXT, NULL, 937), + NAME_FUNC_OFFSET(24421, glVertexAttribI4usvEXT, glVertexAttribI4usvEXT, NULL, 938), + NAME_FUNC_OFFSET(24441, glVertexAttribIPointerEXT, glVertexAttribIPointerEXT, NULL, 939), + NAME_FUNC_OFFSET(24464, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 940), + NAME_FUNC_OFFSET(24490, glFramebufferTextureLayerEXT, glFramebufferTextureLayerEXT, NULL, 940), + NAME_FUNC_OFFSET(24519, glColorMaskIndexedEXT, glColorMaskIndexedEXT, NULL, 941), + NAME_FUNC_OFFSET(24532, glDisableIndexedEXT, glDisableIndexedEXT, NULL, 942), + NAME_FUNC_OFFSET(24543, glEnableIndexedEXT, glEnableIndexedEXT, NULL, 943), + NAME_FUNC_OFFSET(24553, glGetBooleanIndexedvEXT, glGetBooleanIndexedvEXT, NULL, 944), + NAME_FUNC_OFFSET(24569, glGetIntegerIndexedvEXT, glGetIntegerIndexedvEXT, NULL, 945), + NAME_FUNC_OFFSET(24585, glIsEnabledIndexedEXT, glIsEnabledIndexedEXT, NULL, 946), + NAME_FUNC_OFFSET(24598, glGetTexParameterIivEXT, glGetTexParameterIivEXT, NULL, 949), + NAME_FUNC_OFFSET(24619, glGetTexParameterIuivEXT, glGetTexParameterIuivEXT, NULL, 950), + NAME_FUNC_OFFSET(24641, glTexParameterIivEXT, glTexParameterIivEXT, NULL, 951), + NAME_FUNC_OFFSET(24659, glTexParameterIuivEXT, glTexParameterIuivEXT, NULL, 952), + NAME_FUNC_OFFSET(24678, glBeginConditionalRenderNV, glBeginConditionalRenderNV, NULL, 953), + NAME_FUNC_OFFSET(24703, glEndConditionalRenderNV, glEndConditionalRenderNV, NULL, 954), + NAME_FUNC_OFFSET(24726, glBeginTransformFeedbackEXT, glBeginTransformFeedbackEXT, NULL, 955), + NAME_FUNC_OFFSET(24751, glBindBufferBaseEXT, glBindBufferBaseEXT, NULL, 956), + NAME_FUNC_OFFSET(24768, glBindBufferRangeEXT, glBindBufferRangeEXT, NULL, 958), + NAME_FUNC_OFFSET(24786, glEndTransformFeedbackEXT, glEndTransformFeedbackEXT, NULL, 959), + NAME_FUNC_OFFSET(24809, glGetTransformFeedbackVaryingEXT, glGetTransformFeedbackVaryingEXT, NULL, 960), + NAME_FUNC_OFFSET(24839, glTransformFeedbackVaryingsEXT, glTransformFeedbackVaryingsEXT, NULL, 961), + NAME_FUNC_OFFSET(24867, glProvokingVertexEXT, glProvokingVertexEXT, NULL, 962), NAME_FUNC_OFFSET(-1, NULL, NULL, NULL, 0) }; diff --git a/src/mesa/main/dispatch.h b/src/mesa/main/dispatch.h index 6ae69f77056..e5b05b7b5d8 100644 --- a/src/mesa/main/dispatch.h +++ b/src/mesa/main/dispatch.h @@ -63,7 +63,7 @@ } while(0) /* total number of offsets below */ -#define _gloffset_COUNT 977 +#define _gloffset_COUNT 979 #define _gloffset_NewList 0 #define _gloffset_EndList 1 @@ -669,386 +669,388 @@ #define _gloffset_BlendEquationiARB 598 #define _gloffset_BlendFuncSeparateiARB 599 #define _gloffset_BlendFunciARB 600 -#define _gloffset_BindSampler 601 -#define _gloffset_DeleteSamplers 602 -#define _gloffset_GenSamplers 603 -#define _gloffset_GetSamplerParameterIiv 604 -#define _gloffset_GetSamplerParameterIuiv 605 -#define _gloffset_GetSamplerParameterfv 606 -#define _gloffset_GetSamplerParameteriv 607 -#define _gloffset_IsSampler 608 -#define _gloffset_SamplerParameterIiv 609 -#define _gloffset_SamplerParameterIuiv 610 -#define _gloffset_SamplerParameterf 611 -#define _gloffset_SamplerParameterfv 612 -#define _gloffset_SamplerParameteri 613 -#define _gloffset_SamplerParameteriv 614 -#define _gloffset_ColorP3ui 615 -#define _gloffset_ColorP3uiv 616 -#define _gloffset_ColorP4ui 617 -#define _gloffset_ColorP4uiv 618 -#define _gloffset_MultiTexCoordP1ui 619 -#define _gloffset_MultiTexCoordP1uiv 620 -#define _gloffset_MultiTexCoordP2ui 621 -#define _gloffset_MultiTexCoordP2uiv 622 -#define _gloffset_MultiTexCoordP3ui 623 -#define _gloffset_MultiTexCoordP3uiv 624 -#define _gloffset_MultiTexCoordP4ui 625 -#define _gloffset_MultiTexCoordP4uiv 626 -#define _gloffset_NormalP3ui 627 -#define _gloffset_NormalP3uiv 628 -#define _gloffset_SecondaryColorP3ui 629 -#define _gloffset_SecondaryColorP3uiv 630 -#define _gloffset_TexCoordP1ui 631 -#define _gloffset_TexCoordP1uiv 632 -#define _gloffset_TexCoordP2ui 633 -#define _gloffset_TexCoordP2uiv 634 -#define _gloffset_TexCoordP3ui 635 -#define _gloffset_TexCoordP3uiv 636 -#define _gloffset_TexCoordP4ui 637 -#define _gloffset_TexCoordP4uiv 638 -#define _gloffset_VertexAttribP1ui 639 -#define _gloffset_VertexAttribP1uiv 640 -#define _gloffset_VertexAttribP2ui 641 -#define _gloffset_VertexAttribP2uiv 642 -#define _gloffset_VertexAttribP3ui 643 -#define _gloffset_VertexAttribP3uiv 644 -#define _gloffset_VertexAttribP4ui 645 -#define _gloffset_VertexAttribP4uiv 646 -#define _gloffset_VertexP2ui 647 -#define _gloffset_VertexP2uiv 648 -#define _gloffset_VertexP3ui 649 -#define _gloffset_VertexP3uiv 650 -#define _gloffset_VertexP4ui 651 -#define _gloffset_VertexP4uiv 652 -#define _gloffset_BindTransformFeedback 653 -#define _gloffset_DeleteTransformFeedbacks 654 -#define _gloffset_DrawTransformFeedback 655 -#define _gloffset_GenTransformFeedbacks 656 -#define _gloffset_IsTransformFeedback 657 -#define _gloffset_PauseTransformFeedback 658 -#define _gloffset_ResumeTransformFeedback 659 -#define _gloffset_ClearDepthf 660 -#define _gloffset_DepthRangef 661 -#define _gloffset_GetShaderPrecisionFormat 662 -#define _gloffset_ReleaseShaderCompiler 663 -#define _gloffset_ShaderBinary 664 -#define _gloffset_DebugMessageCallbackARB 665 -#define _gloffset_DebugMessageControlARB 666 -#define _gloffset_DebugMessageInsertARB 667 -#define _gloffset_GetDebugMessageLogARB 668 -#define _gloffset_GetGraphicsResetStatusARB 669 -#define _gloffset_GetnColorTableARB 670 -#define _gloffset_GetnCompressedTexImageARB 671 -#define _gloffset_GetnConvolutionFilterARB 672 -#define _gloffset_GetnHistogramARB 673 -#define _gloffset_GetnMapdvARB 674 -#define _gloffset_GetnMapfvARB 675 -#define _gloffset_GetnMapivARB 676 -#define _gloffset_GetnMinmaxARB 677 -#define _gloffset_GetnPixelMapfvARB 678 -#define _gloffset_GetnPixelMapuivARB 679 -#define _gloffset_GetnPixelMapusvARB 680 -#define _gloffset_GetnPolygonStippleARB 681 -#define _gloffset_GetnSeparableFilterARB 682 -#define _gloffset_GetnTexImageARB 683 -#define _gloffset_GetnUniformdvARB 684 -#define _gloffset_GetnUniformfvARB 685 -#define _gloffset_GetnUniformivARB 686 -#define _gloffset_GetnUniformuivARB 687 -#define _gloffset_ReadnPixelsARB 688 -#define _gloffset_TexStorage1D 689 -#define _gloffset_TexStorage2D 690 -#define _gloffset_TexStorage3D 691 -#define _gloffset_TextureStorage1DEXT 692 -#define _gloffset_TextureStorage2DEXT 693 -#define _gloffset_TextureStorage3DEXT 694 -#define _gloffset_PolygonOffsetEXT 695 -#define _gloffset_GetPixelTexGenParameterfvSGIS 696 -#define _gloffset_GetPixelTexGenParameterivSGIS 697 -#define _gloffset_PixelTexGenParameterfSGIS 698 -#define _gloffset_PixelTexGenParameterfvSGIS 699 -#define _gloffset_PixelTexGenParameteriSGIS 700 -#define _gloffset_PixelTexGenParameterivSGIS 701 -#define _gloffset_SampleMaskSGIS 702 -#define _gloffset_SamplePatternSGIS 703 -#define _gloffset_ColorPointerEXT 704 -#define _gloffset_EdgeFlagPointerEXT 705 -#define _gloffset_IndexPointerEXT 706 -#define _gloffset_NormalPointerEXT 707 -#define _gloffset_TexCoordPointerEXT 708 -#define _gloffset_VertexPointerEXT 709 -#define _gloffset_PointParameterfEXT 710 -#define _gloffset_PointParameterfvEXT 711 -#define _gloffset_LockArraysEXT 712 -#define _gloffset_UnlockArraysEXT 713 -#define _gloffset_SecondaryColor3bEXT 714 -#define _gloffset_SecondaryColor3bvEXT 715 -#define _gloffset_SecondaryColor3dEXT 716 -#define _gloffset_SecondaryColor3dvEXT 717 -#define _gloffset_SecondaryColor3fEXT 718 -#define _gloffset_SecondaryColor3fvEXT 719 -#define _gloffset_SecondaryColor3iEXT 720 -#define _gloffset_SecondaryColor3ivEXT 721 -#define _gloffset_SecondaryColor3sEXT 722 -#define _gloffset_SecondaryColor3svEXT 723 -#define _gloffset_SecondaryColor3ubEXT 724 -#define _gloffset_SecondaryColor3ubvEXT 725 -#define _gloffset_SecondaryColor3uiEXT 726 -#define _gloffset_SecondaryColor3uivEXT 727 -#define _gloffset_SecondaryColor3usEXT 728 -#define _gloffset_SecondaryColor3usvEXT 729 -#define _gloffset_SecondaryColorPointerEXT 730 -#define _gloffset_MultiDrawArraysEXT 731 -#define _gloffset_MultiDrawElementsEXT 732 -#define _gloffset_FogCoordPointerEXT 733 -#define _gloffset_FogCoorddEXT 734 -#define _gloffset_FogCoorddvEXT 735 -#define _gloffset_FogCoordfEXT 736 -#define _gloffset_FogCoordfvEXT 737 -#define _gloffset_PixelTexGenSGIX 738 -#define _gloffset_BlendFuncSeparateEXT 739 -#define _gloffset_FlushVertexArrayRangeNV 740 -#define _gloffset_VertexArrayRangeNV 741 -#define _gloffset_CombinerInputNV 742 -#define _gloffset_CombinerOutputNV 743 -#define _gloffset_CombinerParameterfNV 744 -#define _gloffset_CombinerParameterfvNV 745 -#define _gloffset_CombinerParameteriNV 746 -#define _gloffset_CombinerParameterivNV 747 -#define _gloffset_FinalCombinerInputNV 748 -#define _gloffset_GetCombinerInputParameterfvNV 749 -#define _gloffset_GetCombinerInputParameterivNV 750 -#define _gloffset_GetCombinerOutputParameterfvNV 751 -#define _gloffset_GetCombinerOutputParameterivNV 752 -#define _gloffset_GetFinalCombinerInputParameterfvNV 753 -#define _gloffset_GetFinalCombinerInputParameterivNV 754 -#define _gloffset_ResizeBuffersMESA 755 -#define _gloffset_WindowPos2dMESA 756 -#define _gloffset_WindowPos2dvMESA 757 -#define _gloffset_WindowPos2fMESA 758 -#define _gloffset_WindowPos2fvMESA 759 -#define _gloffset_WindowPos2iMESA 760 -#define _gloffset_WindowPos2ivMESA 761 -#define _gloffset_WindowPos2sMESA 762 -#define _gloffset_WindowPos2svMESA 763 -#define _gloffset_WindowPos3dMESA 764 -#define _gloffset_WindowPos3dvMESA 765 -#define _gloffset_WindowPos3fMESA 766 -#define _gloffset_WindowPos3fvMESA 767 -#define _gloffset_WindowPos3iMESA 768 -#define _gloffset_WindowPos3ivMESA 769 -#define _gloffset_WindowPos3sMESA 770 -#define _gloffset_WindowPos3svMESA 771 -#define _gloffset_WindowPos4dMESA 772 -#define _gloffset_WindowPos4dvMESA 773 -#define _gloffset_WindowPos4fMESA 774 -#define _gloffset_WindowPos4fvMESA 775 -#define _gloffset_WindowPos4iMESA 776 -#define _gloffset_WindowPos4ivMESA 777 -#define _gloffset_WindowPos4sMESA 778 -#define _gloffset_WindowPos4svMESA 779 -#define _gloffset_MultiModeDrawArraysIBM 780 -#define _gloffset_MultiModeDrawElementsIBM 781 -#define _gloffset_DeleteFencesNV 782 -#define _gloffset_FinishFenceNV 783 -#define _gloffset_GenFencesNV 784 -#define _gloffset_GetFenceivNV 785 -#define _gloffset_IsFenceNV 786 -#define _gloffset_SetFenceNV 787 -#define _gloffset_TestFenceNV 788 -#define _gloffset_AreProgramsResidentNV 789 -#define _gloffset_BindProgramNV 790 -#define _gloffset_DeleteProgramsNV 791 -#define _gloffset_ExecuteProgramNV 792 -#define _gloffset_GenProgramsNV 793 -#define _gloffset_GetProgramParameterdvNV 794 -#define _gloffset_GetProgramParameterfvNV 795 -#define _gloffset_GetProgramStringNV 796 -#define _gloffset_GetProgramivNV 797 -#define _gloffset_GetTrackMatrixivNV 798 -#define _gloffset_GetVertexAttribPointervNV 799 -#define _gloffset_GetVertexAttribdvNV 800 -#define _gloffset_GetVertexAttribfvNV 801 -#define _gloffset_GetVertexAttribivNV 802 -#define _gloffset_IsProgramNV 803 -#define _gloffset_LoadProgramNV 804 -#define _gloffset_ProgramParameters4dvNV 805 -#define _gloffset_ProgramParameters4fvNV 806 -#define _gloffset_RequestResidentProgramsNV 807 -#define _gloffset_TrackMatrixNV 808 -#define _gloffset_VertexAttrib1dNV 809 -#define _gloffset_VertexAttrib1dvNV 810 -#define _gloffset_VertexAttrib1fNV 811 -#define _gloffset_VertexAttrib1fvNV 812 -#define _gloffset_VertexAttrib1sNV 813 -#define _gloffset_VertexAttrib1svNV 814 -#define _gloffset_VertexAttrib2dNV 815 -#define _gloffset_VertexAttrib2dvNV 816 -#define _gloffset_VertexAttrib2fNV 817 -#define _gloffset_VertexAttrib2fvNV 818 -#define _gloffset_VertexAttrib2sNV 819 -#define _gloffset_VertexAttrib2svNV 820 -#define _gloffset_VertexAttrib3dNV 821 -#define _gloffset_VertexAttrib3dvNV 822 -#define _gloffset_VertexAttrib3fNV 823 -#define _gloffset_VertexAttrib3fvNV 824 -#define _gloffset_VertexAttrib3sNV 825 -#define _gloffset_VertexAttrib3svNV 826 -#define _gloffset_VertexAttrib4dNV 827 -#define _gloffset_VertexAttrib4dvNV 828 -#define _gloffset_VertexAttrib4fNV 829 -#define _gloffset_VertexAttrib4fvNV 830 -#define _gloffset_VertexAttrib4sNV 831 -#define _gloffset_VertexAttrib4svNV 832 -#define _gloffset_VertexAttrib4ubNV 833 -#define _gloffset_VertexAttrib4ubvNV 834 -#define _gloffset_VertexAttribPointerNV 835 -#define _gloffset_VertexAttribs1dvNV 836 -#define _gloffset_VertexAttribs1fvNV 837 -#define _gloffset_VertexAttribs1svNV 838 -#define _gloffset_VertexAttribs2dvNV 839 -#define _gloffset_VertexAttribs2fvNV 840 -#define _gloffset_VertexAttribs2svNV 841 -#define _gloffset_VertexAttribs3dvNV 842 -#define _gloffset_VertexAttribs3fvNV 843 -#define _gloffset_VertexAttribs3svNV 844 -#define _gloffset_VertexAttribs4dvNV 845 -#define _gloffset_VertexAttribs4fvNV 846 -#define _gloffset_VertexAttribs4svNV 847 -#define _gloffset_VertexAttribs4ubvNV 848 -#define _gloffset_GetTexBumpParameterfvATI 849 -#define _gloffset_GetTexBumpParameterivATI 850 -#define _gloffset_TexBumpParameterfvATI 851 -#define _gloffset_TexBumpParameterivATI 852 -#define _gloffset_AlphaFragmentOp1ATI 853 -#define _gloffset_AlphaFragmentOp2ATI 854 -#define _gloffset_AlphaFragmentOp3ATI 855 -#define _gloffset_BeginFragmentShaderATI 856 -#define _gloffset_BindFragmentShaderATI 857 -#define _gloffset_ColorFragmentOp1ATI 858 -#define _gloffset_ColorFragmentOp2ATI 859 -#define _gloffset_ColorFragmentOp3ATI 860 -#define _gloffset_DeleteFragmentShaderATI 861 -#define _gloffset_EndFragmentShaderATI 862 -#define _gloffset_GenFragmentShadersATI 863 -#define _gloffset_PassTexCoordATI 864 -#define _gloffset_SampleMapATI 865 -#define _gloffset_SetFragmentShaderConstantATI 866 -#define _gloffset_PointParameteriNV 867 -#define _gloffset_PointParameterivNV 868 -#define _gloffset_ActiveStencilFaceEXT 869 -#define _gloffset_BindVertexArrayAPPLE 870 -#define _gloffset_DeleteVertexArraysAPPLE 871 -#define _gloffset_GenVertexArraysAPPLE 872 -#define _gloffset_IsVertexArrayAPPLE 873 -#define _gloffset_GetProgramNamedParameterdvNV 874 -#define _gloffset_GetProgramNamedParameterfvNV 875 -#define _gloffset_ProgramNamedParameter4dNV 876 -#define _gloffset_ProgramNamedParameter4dvNV 877 -#define _gloffset_ProgramNamedParameter4fNV 878 -#define _gloffset_ProgramNamedParameter4fvNV 879 -#define _gloffset_PrimitiveRestartIndexNV 880 -#define _gloffset_PrimitiveRestartNV 881 -#define _gloffset_DepthBoundsEXT 882 -#define _gloffset_BlendEquationSeparateEXT 883 -#define _gloffset_BindFramebufferEXT 884 -#define _gloffset_BindRenderbufferEXT 885 -#define _gloffset_CheckFramebufferStatusEXT 886 -#define _gloffset_DeleteFramebuffersEXT 887 -#define _gloffset_DeleteRenderbuffersEXT 888 -#define _gloffset_FramebufferRenderbufferEXT 889 -#define _gloffset_FramebufferTexture1DEXT 890 -#define _gloffset_FramebufferTexture2DEXT 891 -#define _gloffset_FramebufferTexture3DEXT 892 -#define _gloffset_GenFramebuffersEXT 893 -#define _gloffset_GenRenderbuffersEXT 894 -#define _gloffset_GenerateMipmapEXT 895 -#define _gloffset_GetFramebufferAttachmentParameterivEXT 896 -#define _gloffset_GetRenderbufferParameterivEXT 897 -#define _gloffset_IsFramebufferEXT 898 -#define _gloffset_IsRenderbufferEXT 899 -#define _gloffset_RenderbufferStorageEXT 900 -#define _gloffset_BlitFramebufferEXT 901 -#define _gloffset_BufferParameteriAPPLE 902 -#define _gloffset_FlushMappedBufferRangeAPPLE 903 -#define _gloffset_BindFragDataLocationEXT 904 -#define _gloffset_GetFragDataLocationEXT 905 -#define _gloffset_GetUniformuivEXT 906 -#define _gloffset_GetVertexAttribIivEXT 907 -#define _gloffset_GetVertexAttribIuivEXT 908 -#define _gloffset_Uniform1uiEXT 909 -#define _gloffset_Uniform1uivEXT 910 -#define _gloffset_Uniform2uiEXT 911 -#define _gloffset_Uniform2uivEXT 912 -#define _gloffset_Uniform3uiEXT 913 -#define _gloffset_Uniform3uivEXT 914 -#define _gloffset_Uniform4uiEXT 915 -#define _gloffset_Uniform4uivEXT 916 -#define _gloffset_VertexAttribI1iEXT 917 -#define _gloffset_VertexAttribI1ivEXT 918 -#define _gloffset_VertexAttribI1uiEXT 919 -#define _gloffset_VertexAttribI1uivEXT 920 -#define _gloffset_VertexAttribI2iEXT 921 -#define _gloffset_VertexAttribI2ivEXT 922 -#define _gloffset_VertexAttribI2uiEXT 923 -#define _gloffset_VertexAttribI2uivEXT 924 -#define _gloffset_VertexAttribI3iEXT 925 -#define _gloffset_VertexAttribI3ivEXT 926 -#define _gloffset_VertexAttribI3uiEXT 927 -#define _gloffset_VertexAttribI3uivEXT 928 -#define _gloffset_VertexAttribI4bvEXT 929 -#define _gloffset_VertexAttribI4iEXT 930 -#define _gloffset_VertexAttribI4ivEXT 931 -#define _gloffset_VertexAttribI4svEXT 932 -#define _gloffset_VertexAttribI4ubvEXT 933 -#define _gloffset_VertexAttribI4uiEXT 934 -#define _gloffset_VertexAttribI4uivEXT 935 -#define _gloffset_VertexAttribI4usvEXT 936 -#define _gloffset_VertexAttribIPointerEXT 937 -#define _gloffset_FramebufferTextureLayerEXT 938 -#define _gloffset_ColorMaskIndexedEXT 939 -#define _gloffset_DisableIndexedEXT 940 -#define _gloffset_EnableIndexedEXT 941 -#define _gloffset_GetBooleanIndexedvEXT 942 -#define _gloffset_GetIntegerIndexedvEXT 943 -#define _gloffset_IsEnabledIndexedEXT 944 -#define _gloffset_ClearColorIiEXT 945 -#define _gloffset_ClearColorIuiEXT 946 -#define _gloffset_GetTexParameterIivEXT 947 -#define _gloffset_GetTexParameterIuivEXT 948 -#define _gloffset_TexParameterIivEXT 949 -#define _gloffset_TexParameterIuivEXT 950 -#define _gloffset_BeginConditionalRenderNV 951 -#define _gloffset_EndConditionalRenderNV 952 -#define _gloffset_BeginTransformFeedbackEXT 953 -#define _gloffset_BindBufferBaseEXT 954 -#define _gloffset_BindBufferOffsetEXT 955 -#define _gloffset_BindBufferRangeEXT 956 -#define _gloffset_EndTransformFeedbackEXT 957 -#define _gloffset_GetTransformFeedbackVaryingEXT 958 -#define _gloffset_TransformFeedbackVaryingsEXT 959 -#define _gloffset_ProvokingVertexEXT 960 -#define _gloffset_GetTexParameterPointervAPPLE 961 -#define _gloffset_TextureRangeAPPLE 962 -#define _gloffset_GetObjectParameterivAPPLE 963 -#define _gloffset_ObjectPurgeableAPPLE 964 -#define _gloffset_ObjectUnpurgeableAPPLE 965 -#define _gloffset_ActiveProgramEXT 966 -#define _gloffset_CreateShaderProgramEXT 967 -#define _gloffset_UseShaderProgramEXT 968 -#define _gloffset_TextureBarrierNV 969 -#define _gloffset_StencilFuncSeparateATI 970 -#define _gloffset_ProgramEnvParameters4fvEXT 971 -#define _gloffset_ProgramLocalParameters4fvEXT 972 -#define _gloffset_GetQueryObjecti64vEXT 973 -#define _gloffset_GetQueryObjectui64vEXT 974 -#define _gloffset_EGLImageTargetRenderbufferStorageOES 975 -#define _gloffset_EGLImageTargetTexture2DOES 976 +#define _gloffset_BindFragDataLocationIndexed 601 +#define _gloffset_GetFragDataIndex 602 +#define _gloffset_BindSampler 603 +#define _gloffset_DeleteSamplers 604 +#define _gloffset_GenSamplers 605 +#define _gloffset_GetSamplerParameterIiv 606 +#define _gloffset_GetSamplerParameterIuiv 607 +#define _gloffset_GetSamplerParameterfv 608 +#define _gloffset_GetSamplerParameteriv 609 +#define _gloffset_IsSampler 610 +#define _gloffset_SamplerParameterIiv 611 +#define _gloffset_SamplerParameterIuiv 612 +#define _gloffset_SamplerParameterf 613 +#define _gloffset_SamplerParameterfv 614 +#define _gloffset_SamplerParameteri 615 +#define _gloffset_SamplerParameteriv 616 +#define _gloffset_ColorP3ui 617 +#define _gloffset_ColorP3uiv 618 +#define _gloffset_ColorP4ui 619 +#define _gloffset_ColorP4uiv 620 +#define _gloffset_MultiTexCoordP1ui 621 +#define _gloffset_MultiTexCoordP1uiv 622 +#define _gloffset_MultiTexCoordP2ui 623 +#define _gloffset_MultiTexCoordP2uiv 624 +#define _gloffset_MultiTexCoordP3ui 625 +#define _gloffset_MultiTexCoordP3uiv 626 +#define _gloffset_MultiTexCoordP4ui 627 +#define _gloffset_MultiTexCoordP4uiv 628 +#define _gloffset_NormalP3ui 629 +#define _gloffset_NormalP3uiv 630 +#define _gloffset_SecondaryColorP3ui 631 +#define _gloffset_SecondaryColorP3uiv 632 +#define _gloffset_TexCoordP1ui 633 +#define _gloffset_TexCoordP1uiv 634 +#define _gloffset_TexCoordP2ui 635 +#define _gloffset_TexCoordP2uiv 636 +#define _gloffset_TexCoordP3ui 637 +#define _gloffset_TexCoordP3uiv 638 +#define _gloffset_TexCoordP4ui 639 +#define _gloffset_TexCoordP4uiv 640 +#define _gloffset_VertexAttribP1ui 641 +#define _gloffset_VertexAttribP1uiv 642 +#define _gloffset_VertexAttribP2ui 643 +#define _gloffset_VertexAttribP2uiv 644 +#define _gloffset_VertexAttribP3ui 645 +#define _gloffset_VertexAttribP3uiv 646 +#define _gloffset_VertexAttribP4ui 647 +#define _gloffset_VertexAttribP4uiv 648 +#define _gloffset_VertexP2ui 649 +#define _gloffset_VertexP2uiv 650 +#define _gloffset_VertexP3ui 651 +#define _gloffset_VertexP3uiv 652 +#define _gloffset_VertexP4ui 653 +#define _gloffset_VertexP4uiv 654 +#define _gloffset_BindTransformFeedback 655 +#define _gloffset_DeleteTransformFeedbacks 656 +#define _gloffset_DrawTransformFeedback 657 +#define _gloffset_GenTransformFeedbacks 658 +#define _gloffset_IsTransformFeedback 659 +#define _gloffset_PauseTransformFeedback 660 +#define _gloffset_ResumeTransformFeedback 661 +#define _gloffset_ClearDepthf 662 +#define _gloffset_DepthRangef 663 +#define _gloffset_GetShaderPrecisionFormat 664 +#define _gloffset_ReleaseShaderCompiler 665 +#define _gloffset_ShaderBinary 666 +#define _gloffset_DebugMessageCallbackARB 667 +#define _gloffset_DebugMessageControlARB 668 +#define _gloffset_DebugMessageInsertARB 669 +#define _gloffset_GetDebugMessageLogARB 670 +#define _gloffset_GetGraphicsResetStatusARB 671 +#define _gloffset_GetnColorTableARB 672 +#define _gloffset_GetnCompressedTexImageARB 673 +#define _gloffset_GetnConvolutionFilterARB 674 +#define _gloffset_GetnHistogramARB 675 +#define _gloffset_GetnMapdvARB 676 +#define _gloffset_GetnMapfvARB 677 +#define _gloffset_GetnMapivARB 678 +#define _gloffset_GetnMinmaxARB 679 +#define _gloffset_GetnPixelMapfvARB 680 +#define _gloffset_GetnPixelMapuivARB 681 +#define _gloffset_GetnPixelMapusvARB 682 +#define _gloffset_GetnPolygonStippleARB 683 +#define _gloffset_GetnSeparableFilterARB 684 +#define _gloffset_GetnTexImageARB 685 +#define _gloffset_GetnUniformdvARB 686 +#define _gloffset_GetnUniformfvARB 687 +#define _gloffset_GetnUniformivARB 688 +#define _gloffset_GetnUniformuivARB 689 +#define _gloffset_ReadnPixelsARB 690 +#define _gloffset_TexStorage1D 691 +#define _gloffset_TexStorage2D 692 +#define _gloffset_TexStorage3D 693 +#define _gloffset_TextureStorage1DEXT 694 +#define _gloffset_TextureStorage2DEXT 695 +#define _gloffset_TextureStorage3DEXT 696 +#define _gloffset_PolygonOffsetEXT 697 +#define _gloffset_GetPixelTexGenParameterfvSGIS 698 +#define _gloffset_GetPixelTexGenParameterivSGIS 699 +#define _gloffset_PixelTexGenParameterfSGIS 700 +#define _gloffset_PixelTexGenParameterfvSGIS 701 +#define _gloffset_PixelTexGenParameteriSGIS 702 +#define _gloffset_PixelTexGenParameterivSGIS 703 +#define _gloffset_SampleMaskSGIS 704 +#define _gloffset_SamplePatternSGIS 705 +#define _gloffset_ColorPointerEXT 706 +#define _gloffset_EdgeFlagPointerEXT 707 +#define _gloffset_IndexPointerEXT 708 +#define _gloffset_NormalPointerEXT 709 +#define _gloffset_TexCoordPointerEXT 710 +#define _gloffset_VertexPointerEXT 711 +#define _gloffset_PointParameterfEXT 712 +#define _gloffset_PointParameterfvEXT 713 +#define _gloffset_LockArraysEXT 714 +#define _gloffset_UnlockArraysEXT 715 +#define _gloffset_SecondaryColor3bEXT 716 +#define _gloffset_SecondaryColor3bvEXT 717 +#define _gloffset_SecondaryColor3dEXT 718 +#define _gloffset_SecondaryColor3dvEXT 719 +#define _gloffset_SecondaryColor3fEXT 720 +#define _gloffset_SecondaryColor3fvEXT 721 +#define _gloffset_SecondaryColor3iEXT 722 +#define _gloffset_SecondaryColor3ivEXT 723 +#define _gloffset_SecondaryColor3sEXT 724 +#define _gloffset_SecondaryColor3svEXT 725 +#define _gloffset_SecondaryColor3ubEXT 726 +#define _gloffset_SecondaryColor3ubvEXT 727 +#define _gloffset_SecondaryColor3uiEXT 728 +#define _gloffset_SecondaryColor3uivEXT 729 +#define _gloffset_SecondaryColor3usEXT 730 +#define _gloffset_SecondaryColor3usvEXT 731 +#define _gloffset_SecondaryColorPointerEXT 732 +#define _gloffset_MultiDrawArraysEXT 733 +#define _gloffset_MultiDrawElementsEXT 734 +#define _gloffset_FogCoordPointerEXT 735 +#define _gloffset_FogCoorddEXT 736 +#define _gloffset_FogCoorddvEXT 737 +#define _gloffset_FogCoordfEXT 738 +#define _gloffset_FogCoordfvEXT 739 +#define _gloffset_PixelTexGenSGIX 740 +#define _gloffset_BlendFuncSeparateEXT 741 +#define _gloffset_FlushVertexArrayRangeNV 742 +#define _gloffset_VertexArrayRangeNV 743 +#define _gloffset_CombinerInputNV 744 +#define _gloffset_CombinerOutputNV 745 +#define _gloffset_CombinerParameterfNV 746 +#define _gloffset_CombinerParameterfvNV 747 +#define _gloffset_CombinerParameteriNV 748 +#define _gloffset_CombinerParameterivNV 749 +#define _gloffset_FinalCombinerInputNV 750 +#define _gloffset_GetCombinerInputParameterfvNV 751 +#define _gloffset_GetCombinerInputParameterivNV 752 +#define _gloffset_GetCombinerOutputParameterfvNV 753 +#define _gloffset_GetCombinerOutputParameterivNV 754 +#define _gloffset_GetFinalCombinerInputParameterfvNV 755 +#define _gloffset_GetFinalCombinerInputParameterivNV 756 +#define _gloffset_ResizeBuffersMESA 757 +#define _gloffset_WindowPos2dMESA 758 +#define _gloffset_WindowPos2dvMESA 759 +#define _gloffset_WindowPos2fMESA 760 +#define _gloffset_WindowPos2fvMESA 761 +#define _gloffset_WindowPos2iMESA 762 +#define _gloffset_WindowPos2ivMESA 763 +#define _gloffset_WindowPos2sMESA 764 +#define _gloffset_WindowPos2svMESA 765 +#define _gloffset_WindowPos3dMESA 766 +#define _gloffset_WindowPos3dvMESA 767 +#define _gloffset_WindowPos3fMESA 768 +#define _gloffset_WindowPos3fvMESA 769 +#define _gloffset_WindowPos3iMESA 770 +#define _gloffset_WindowPos3ivMESA 771 +#define _gloffset_WindowPos3sMESA 772 +#define _gloffset_WindowPos3svMESA 773 +#define _gloffset_WindowPos4dMESA 774 +#define _gloffset_WindowPos4dvMESA 775 +#define _gloffset_WindowPos4fMESA 776 +#define _gloffset_WindowPos4fvMESA 777 +#define _gloffset_WindowPos4iMESA 778 +#define _gloffset_WindowPos4ivMESA 779 +#define _gloffset_WindowPos4sMESA 780 +#define _gloffset_WindowPos4svMESA 781 +#define _gloffset_MultiModeDrawArraysIBM 782 +#define _gloffset_MultiModeDrawElementsIBM 783 +#define _gloffset_DeleteFencesNV 784 +#define _gloffset_FinishFenceNV 785 +#define _gloffset_GenFencesNV 786 +#define _gloffset_GetFenceivNV 787 +#define _gloffset_IsFenceNV 788 +#define _gloffset_SetFenceNV 789 +#define _gloffset_TestFenceNV 790 +#define _gloffset_AreProgramsResidentNV 791 +#define _gloffset_BindProgramNV 792 +#define _gloffset_DeleteProgramsNV 793 +#define _gloffset_ExecuteProgramNV 794 +#define _gloffset_GenProgramsNV 795 +#define _gloffset_GetProgramParameterdvNV 796 +#define _gloffset_GetProgramParameterfvNV 797 +#define _gloffset_GetProgramStringNV 798 +#define _gloffset_GetProgramivNV 799 +#define _gloffset_GetTrackMatrixivNV 800 +#define _gloffset_GetVertexAttribPointervNV 801 +#define _gloffset_GetVertexAttribdvNV 802 +#define _gloffset_GetVertexAttribfvNV 803 +#define _gloffset_GetVertexAttribivNV 804 +#define _gloffset_IsProgramNV 805 +#define _gloffset_LoadProgramNV 806 +#define _gloffset_ProgramParameters4dvNV 807 +#define _gloffset_ProgramParameters4fvNV 808 +#define _gloffset_RequestResidentProgramsNV 809 +#define _gloffset_TrackMatrixNV 810 +#define _gloffset_VertexAttrib1dNV 811 +#define _gloffset_VertexAttrib1dvNV 812 +#define _gloffset_VertexAttrib1fNV 813 +#define _gloffset_VertexAttrib1fvNV 814 +#define _gloffset_VertexAttrib1sNV 815 +#define _gloffset_VertexAttrib1svNV 816 +#define _gloffset_VertexAttrib2dNV 817 +#define _gloffset_VertexAttrib2dvNV 818 +#define _gloffset_VertexAttrib2fNV 819 +#define _gloffset_VertexAttrib2fvNV 820 +#define _gloffset_VertexAttrib2sNV 821 +#define _gloffset_VertexAttrib2svNV 822 +#define _gloffset_VertexAttrib3dNV 823 +#define _gloffset_VertexAttrib3dvNV 824 +#define _gloffset_VertexAttrib3fNV 825 +#define _gloffset_VertexAttrib3fvNV 826 +#define _gloffset_VertexAttrib3sNV 827 +#define _gloffset_VertexAttrib3svNV 828 +#define _gloffset_VertexAttrib4dNV 829 +#define _gloffset_VertexAttrib4dvNV 830 +#define _gloffset_VertexAttrib4fNV 831 +#define _gloffset_VertexAttrib4fvNV 832 +#define _gloffset_VertexAttrib4sNV 833 +#define _gloffset_VertexAttrib4svNV 834 +#define _gloffset_VertexAttrib4ubNV 835 +#define _gloffset_VertexAttrib4ubvNV 836 +#define _gloffset_VertexAttribPointerNV 837 +#define _gloffset_VertexAttribs1dvNV 838 +#define _gloffset_VertexAttribs1fvNV 839 +#define _gloffset_VertexAttribs1svNV 840 +#define _gloffset_VertexAttribs2dvNV 841 +#define _gloffset_VertexAttribs2fvNV 842 +#define _gloffset_VertexAttribs2svNV 843 +#define _gloffset_VertexAttribs3dvNV 844 +#define _gloffset_VertexAttribs3fvNV 845 +#define _gloffset_VertexAttribs3svNV 846 +#define _gloffset_VertexAttribs4dvNV 847 +#define _gloffset_VertexAttribs4fvNV 848 +#define _gloffset_VertexAttribs4svNV 849 +#define _gloffset_VertexAttribs4ubvNV 850 +#define _gloffset_GetTexBumpParameterfvATI 851 +#define _gloffset_GetTexBumpParameterivATI 852 +#define _gloffset_TexBumpParameterfvATI 853 +#define _gloffset_TexBumpParameterivATI 854 +#define _gloffset_AlphaFragmentOp1ATI 855 +#define _gloffset_AlphaFragmentOp2ATI 856 +#define _gloffset_AlphaFragmentOp3ATI 857 +#define _gloffset_BeginFragmentShaderATI 858 +#define _gloffset_BindFragmentShaderATI 859 +#define _gloffset_ColorFragmentOp1ATI 860 +#define _gloffset_ColorFragmentOp2ATI 861 +#define _gloffset_ColorFragmentOp3ATI 862 +#define _gloffset_DeleteFragmentShaderATI 863 +#define _gloffset_EndFragmentShaderATI 864 +#define _gloffset_GenFragmentShadersATI 865 +#define _gloffset_PassTexCoordATI 866 +#define _gloffset_SampleMapATI 867 +#define _gloffset_SetFragmentShaderConstantATI 868 +#define _gloffset_PointParameteriNV 869 +#define _gloffset_PointParameterivNV 870 +#define _gloffset_ActiveStencilFaceEXT 871 +#define _gloffset_BindVertexArrayAPPLE 872 +#define _gloffset_DeleteVertexArraysAPPLE 873 +#define _gloffset_GenVertexArraysAPPLE 874 +#define _gloffset_IsVertexArrayAPPLE 875 +#define _gloffset_GetProgramNamedParameterdvNV 876 +#define _gloffset_GetProgramNamedParameterfvNV 877 +#define _gloffset_ProgramNamedParameter4dNV 878 +#define _gloffset_ProgramNamedParameter4dvNV 879 +#define _gloffset_ProgramNamedParameter4fNV 880 +#define _gloffset_ProgramNamedParameter4fvNV 881 +#define _gloffset_PrimitiveRestartIndexNV 882 +#define _gloffset_PrimitiveRestartNV 883 +#define _gloffset_DepthBoundsEXT 884 +#define _gloffset_BlendEquationSeparateEXT 885 +#define _gloffset_BindFramebufferEXT 886 +#define _gloffset_BindRenderbufferEXT 887 +#define _gloffset_CheckFramebufferStatusEXT 888 +#define _gloffset_DeleteFramebuffersEXT 889 +#define _gloffset_DeleteRenderbuffersEXT 890 +#define _gloffset_FramebufferRenderbufferEXT 891 +#define _gloffset_FramebufferTexture1DEXT 892 +#define _gloffset_FramebufferTexture2DEXT 893 +#define _gloffset_FramebufferTexture3DEXT 894 +#define _gloffset_GenFramebuffersEXT 895 +#define _gloffset_GenRenderbuffersEXT 896 +#define _gloffset_GenerateMipmapEXT 897 +#define _gloffset_GetFramebufferAttachmentParameterivEXT 898 +#define _gloffset_GetRenderbufferParameterivEXT 899 +#define _gloffset_IsFramebufferEXT 900 +#define _gloffset_IsRenderbufferEXT 901 +#define _gloffset_RenderbufferStorageEXT 902 +#define _gloffset_BlitFramebufferEXT 903 +#define _gloffset_BufferParameteriAPPLE 904 +#define _gloffset_FlushMappedBufferRangeAPPLE 905 +#define _gloffset_BindFragDataLocationEXT 906 +#define _gloffset_GetFragDataLocationEXT 907 +#define _gloffset_GetUniformuivEXT 908 +#define _gloffset_GetVertexAttribIivEXT 909 +#define _gloffset_GetVertexAttribIuivEXT 910 +#define _gloffset_Uniform1uiEXT 911 +#define _gloffset_Uniform1uivEXT 912 +#define _gloffset_Uniform2uiEXT 913 +#define _gloffset_Uniform2uivEXT 914 +#define _gloffset_Uniform3uiEXT 915 +#define _gloffset_Uniform3uivEXT 916 +#define _gloffset_Uniform4uiEXT 917 +#define _gloffset_Uniform4uivEXT 918 +#define _gloffset_VertexAttribI1iEXT 919 +#define _gloffset_VertexAttribI1ivEXT 920 +#define _gloffset_VertexAttribI1uiEXT 921 +#define _gloffset_VertexAttribI1uivEXT 922 +#define _gloffset_VertexAttribI2iEXT 923 +#define _gloffset_VertexAttribI2ivEXT 924 +#define _gloffset_VertexAttribI2uiEXT 925 +#define _gloffset_VertexAttribI2uivEXT 926 +#define _gloffset_VertexAttribI3iEXT 927 +#define _gloffset_VertexAttribI3ivEXT 928 +#define _gloffset_VertexAttribI3uiEXT 929 +#define _gloffset_VertexAttribI3uivEXT 930 +#define _gloffset_VertexAttribI4bvEXT 931 +#define _gloffset_VertexAttribI4iEXT 932 +#define _gloffset_VertexAttribI4ivEXT 933 +#define _gloffset_VertexAttribI4svEXT 934 +#define _gloffset_VertexAttribI4ubvEXT 935 +#define _gloffset_VertexAttribI4uiEXT 936 +#define _gloffset_VertexAttribI4uivEXT 937 +#define _gloffset_VertexAttribI4usvEXT 938 +#define _gloffset_VertexAttribIPointerEXT 939 +#define _gloffset_FramebufferTextureLayerEXT 940 +#define _gloffset_ColorMaskIndexedEXT 941 +#define _gloffset_DisableIndexedEXT 942 +#define _gloffset_EnableIndexedEXT 943 +#define _gloffset_GetBooleanIndexedvEXT 944 +#define _gloffset_GetIntegerIndexedvEXT 945 +#define _gloffset_IsEnabledIndexedEXT 946 +#define _gloffset_ClearColorIiEXT 947 +#define _gloffset_ClearColorIuiEXT 948 +#define _gloffset_GetTexParameterIivEXT 949 +#define _gloffset_GetTexParameterIuivEXT 950 +#define _gloffset_TexParameterIivEXT 951 +#define _gloffset_TexParameterIuivEXT 952 +#define _gloffset_BeginConditionalRenderNV 953 +#define _gloffset_EndConditionalRenderNV 954 +#define _gloffset_BeginTransformFeedbackEXT 955 +#define _gloffset_BindBufferBaseEXT 956 +#define _gloffset_BindBufferOffsetEXT 957 +#define _gloffset_BindBufferRangeEXT 958 +#define _gloffset_EndTransformFeedbackEXT 959 +#define _gloffset_GetTransformFeedbackVaryingEXT 960 +#define _gloffset_TransformFeedbackVaryingsEXT 961 +#define _gloffset_ProvokingVertexEXT 962 +#define _gloffset_GetTexParameterPointervAPPLE 963 +#define _gloffset_TextureRangeAPPLE 964 +#define _gloffset_GetObjectParameterivAPPLE 965 +#define _gloffset_ObjectPurgeableAPPLE 966 +#define _gloffset_ObjectUnpurgeableAPPLE 967 +#define _gloffset_ActiveProgramEXT 968 +#define _gloffset_CreateShaderProgramEXT 969 +#define _gloffset_UseShaderProgramEXT 970 +#define _gloffset_TextureBarrierNV 971 +#define _gloffset_StencilFuncSeparateATI 972 +#define _gloffset_ProgramEnvParameters4fvEXT 973 +#define _gloffset_ProgramLocalParameters4fvEXT 974 +#define _gloffset_GetQueryObjecti64vEXT 975 +#define _gloffset_GetQueryObjectui64vEXT 976 +#define _gloffset_EGLImageTargetRenderbufferStorageOES 977 +#define _gloffset_EGLImageTargetTexture2DOES 978 #else /* !FEATURE_remap_table */ -#define driDispatchRemapTable_size 569 +#define driDispatchRemapTable_size 571 extern int driDispatchRemapTable[ driDispatchRemapTable_size ]; #define AttachShader_remap_index 0 @@ -1244,382 +1246,384 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ]; #define BlendEquationiARB_remap_index 190 #define BlendFuncSeparateiARB_remap_index 191 #define BlendFunciARB_remap_index 192 -#define BindSampler_remap_index 193 -#define DeleteSamplers_remap_index 194 -#define GenSamplers_remap_index 195 -#define GetSamplerParameterIiv_remap_index 196 -#define GetSamplerParameterIuiv_remap_index 197 -#define GetSamplerParameterfv_remap_index 198 -#define GetSamplerParameteriv_remap_index 199 -#define IsSampler_remap_index 200 -#define SamplerParameterIiv_remap_index 201 -#define SamplerParameterIuiv_remap_index 202 -#define SamplerParameterf_remap_index 203 -#define SamplerParameterfv_remap_index 204 -#define SamplerParameteri_remap_index 205 -#define SamplerParameteriv_remap_index 206 -#define ColorP3ui_remap_index 207 -#define ColorP3uiv_remap_index 208 -#define ColorP4ui_remap_index 209 -#define ColorP4uiv_remap_index 210 -#define MultiTexCoordP1ui_remap_index 211 -#define MultiTexCoordP1uiv_remap_index 212 -#define MultiTexCoordP2ui_remap_index 213 -#define MultiTexCoordP2uiv_remap_index 214 -#define MultiTexCoordP3ui_remap_index 215 -#define MultiTexCoordP3uiv_remap_index 216 -#define MultiTexCoordP4ui_remap_index 217 -#define MultiTexCoordP4uiv_remap_index 218 -#define NormalP3ui_remap_index 219 -#define NormalP3uiv_remap_index 220 -#define SecondaryColorP3ui_remap_index 221 -#define SecondaryColorP3uiv_remap_index 222 -#define TexCoordP1ui_remap_index 223 -#define TexCoordP1uiv_remap_index 224 -#define TexCoordP2ui_remap_index 225 -#define TexCoordP2uiv_remap_index 226 -#define TexCoordP3ui_remap_index 227 -#define TexCoordP3uiv_remap_index 228 -#define TexCoordP4ui_remap_index 229 -#define TexCoordP4uiv_remap_index 230 -#define VertexAttribP1ui_remap_index 231 -#define VertexAttribP1uiv_remap_index 232 -#define VertexAttribP2ui_remap_index 233 -#define VertexAttribP2uiv_remap_index 234 -#define VertexAttribP3ui_remap_index 235 -#define VertexAttribP3uiv_remap_index 236 -#define VertexAttribP4ui_remap_index 237 -#define VertexAttribP4uiv_remap_index 238 -#define VertexP2ui_remap_index 239 -#define VertexP2uiv_remap_index 240 -#define VertexP3ui_remap_index 241 -#define VertexP3uiv_remap_index 242 -#define VertexP4ui_remap_index 243 -#define VertexP4uiv_remap_index 244 -#define BindTransformFeedback_remap_index 245 -#define DeleteTransformFeedbacks_remap_index 246 -#define DrawTransformFeedback_remap_index 247 -#define GenTransformFeedbacks_remap_index 248 -#define IsTransformFeedback_remap_index 249 -#define PauseTransformFeedback_remap_index 250 -#define ResumeTransformFeedback_remap_index 251 -#define ClearDepthf_remap_index 252 -#define DepthRangef_remap_index 253 -#define GetShaderPrecisionFormat_remap_index 254 -#define ReleaseShaderCompiler_remap_index 255 -#define ShaderBinary_remap_index 256 -#define DebugMessageCallbackARB_remap_index 257 -#define DebugMessageControlARB_remap_index 258 -#define DebugMessageInsertARB_remap_index 259 -#define GetDebugMessageLogARB_remap_index 260 -#define GetGraphicsResetStatusARB_remap_index 261 -#define GetnColorTableARB_remap_index 262 -#define GetnCompressedTexImageARB_remap_index 263 -#define GetnConvolutionFilterARB_remap_index 264 -#define GetnHistogramARB_remap_index 265 -#define GetnMapdvARB_remap_index 266 -#define GetnMapfvARB_remap_index 267 -#define GetnMapivARB_remap_index 268 -#define GetnMinmaxARB_remap_index 269 -#define GetnPixelMapfvARB_remap_index 270 -#define GetnPixelMapuivARB_remap_index 271 -#define GetnPixelMapusvARB_remap_index 272 -#define GetnPolygonStippleARB_remap_index 273 -#define GetnSeparableFilterARB_remap_index 274 -#define GetnTexImageARB_remap_index 275 -#define GetnUniformdvARB_remap_index 276 -#define GetnUniformfvARB_remap_index 277 -#define GetnUniformivARB_remap_index 278 -#define GetnUniformuivARB_remap_index 279 -#define ReadnPixelsARB_remap_index 280 -#define TexStorage1D_remap_index 281 -#define TexStorage2D_remap_index 282 -#define TexStorage3D_remap_index 283 -#define TextureStorage1DEXT_remap_index 284 -#define TextureStorage2DEXT_remap_index 285 -#define TextureStorage3DEXT_remap_index 286 -#define PolygonOffsetEXT_remap_index 287 -#define GetPixelTexGenParameterfvSGIS_remap_index 288 -#define GetPixelTexGenParameterivSGIS_remap_index 289 -#define PixelTexGenParameterfSGIS_remap_index 290 -#define PixelTexGenParameterfvSGIS_remap_index 291 -#define PixelTexGenParameteriSGIS_remap_index 292 -#define PixelTexGenParameterivSGIS_remap_index 293 -#define SampleMaskSGIS_remap_index 294 -#define SamplePatternSGIS_remap_index 295 -#define ColorPointerEXT_remap_index 296 -#define EdgeFlagPointerEXT_remap_index 297 -#define IndexPointerEXT_remap_index 298 -#define NormalPointerEXT_remap_index 299 -#define TexCoordPointerEXT_remap_index 300 -#define VertexPointerEXT_remap_index 301 -#define PointParameterfEXT_remap_index 302 -#define PointParameterfvEXT_remap_index 303 -#define LockArraysEXT_remap_index 304 -#define UnlockArraysEXT_remap_index 305 -#define SecondaryColor3bEXT_remap_index 306 -#define SecondaryColor3bvEXT_remap_index 307 -#define SecondaryColor3dEXT_remap_index 308 -#define SecondaryColor3dvEXT_remap_index 309 -#define SecondaryColor3fEXT_remap_index 310 -#define SecondaryColor3fvEXT_remap_index 311 -#define SecondaryColor3iEXT_remap_index 312 -#define SecondaryColor3ivEXT_remap_index 313 -#define SecondaryColor3sEXT_remap_index 314 -#define SecondaryColor3svEXT_remap_index 315 -#define SecondaryColor3ubEXT_remap_index 316 -#define SecondaryColor3ubvEXT_remap_index 317 -#define SecondaryColor3uiEXT_remap_index 318 -#define SecondaryColor3uivEXT_remap_index 319 -#define SecondaryColor3usEXT_remap_index 320 -#define SecondaryColor3usvEXT_remap_index 321 -#define SecondaryColorPointerEXT_remap_index 322 -#define MultiDrawArraysEXT_remap_index 323 -#define MultiDrawElementsEXT_remap_index 324 -#define FogCoordPointerEXT_remap_index 325 -#define FogCoorddEXT_remap_index 326 -#define FogCoorddvEXT_remap_index 327 -#define FogCoordfEXT_remap_index 328 -#define FogCoordfvEXT_remap_index 329 -#define PixelTexGenSGIX_remap_index 330 -#define BlendFuncSeparateEXT_remap_index 331 -#define FlushVertexArrayRangeNV_remap_index 332 -#define VertexArrayRangeNV_remap_index 333 -#define CombinerInputNV_remap_index 334 -#define CombinerOutputNV_remap_index 335 -#define CombinerParameterfNV_remap_index 336 -#define CombinerParameterfvNV_remap_index 337 -#define CombinerParameteriNV_remap_index 338 -#define CombinerParameterivNV_remap_index 339 -#define FinalCombinerInputNV_remap_index 340 -#define GetCombinerInputParameterfvNV_remap_index 341 -#define GetCombinerInputParameterivNV_remap_index 342 -#define GetCombinerOutputParameterfvNV_remap_index 343 -#define GetCombinerOutputParameterivNV_remap_index 344 -#define GetFinalCombinerInputParameterfvNV_remap_index 345 -#define GetFinalCombinerInputParameterivNV_remap_index 346 -#define ResizeBuffersMESA_remap_index 347 -#define WindowPos2dMESA_remap_index 348 -#define WindowPos2dvMESA_remap_index 349 -#define WindowPos2fMESA_remap_index 350 -#define WindowPos2fvMESA_remap_index 351 -#define WindowPos2iMESA_remap_index 352 -#define WindowPos2ivMESA_remap_index 353 -#define WindowPos2sMESA_remap_index 354 -#define WindowPos2svMESA_remap_index 355 -#define WindowPos3dMESA_remap_index 356 -#define WindowPos3dvMESA_remap_index 357 -#define WindowPos3fMESA_remap_index 358 -#define WindowPos3fvMESA_remap_index 359 -#define WindowPos3iMESA_remap_index 360 -#define WindowPos3ivMESA_remap_index 361 -#define WindowPos3sMESA_remap_index 362 -#define WindowPos3svMESA_remap_index 363 -#define WindowPos4dMESA_remap_index 364 -#define WindowPos4dvMESA_remap_index 365 -#define WindowPos4fMESA_remap_index 366 -#define WindowPos4fvMESA_remap_index 367 -#define WindowPos4iMESA_remap_index 368 -#define WindowPos4ivMESA_remap_index 369 -#define WindowPos4sMESA_remap_index 370 -#define WindowPos4svMESA_remap_index 371 -#define MultiModeDrawArraysIBM_remap_index 372 -#define MultiModeDrawElementsIBM_remap_index 373 -#define DeleteFencesNV_remap_index 374 -#define FinishFenceNV_remap_index 375 -#define GenFencesNV_remap_index 376 -#define GetFenceivNV_remap_index 377 -#define IsFenceNV_remap_index 378 -#define SetFenceNV_remap_index 379 -#define TestFenceNV_remap_index 380 -#define AreProgramsResidentNV_remap_index 381 -#define BindProgramNV_remap_index 382 -#define DeleteProgramsNV_remap_index 383 -#define ExecuteProgramNV_remap_index 384 -#define GenProgramsNV_remap_index 385 -#define GetProgramParameterdvNV_remap_index 386 -#define GetProgramParameterfvNV_remap_index 387 -#define GetProgramStringNV_remap_index 388 -#define GetProgramivNV_remap_index 389 -#define GetTrackMatrixivNV_remap_index 390 -#define GetVertexAttribPointervNV_remap_index 391 -#define GetVertexAttribdvNV_remap_index 392 -#define GetVertexAttribfvNV_remap_index 393 -#define GetVertexAttribivNV_remap_index 394 -#define IsProgramNV_remap_index 395 -#define LoadProgramNV_remap_index 396 -#define ProgramParameters4dvNV_remap_index 397 -#define ProgramParameters4fvNV_remap_index 398 -#define RequestResidentProgramsNV_remap_index 399 -#define TrackMatrixNV_remap_index 400 -#define VertexAttrib1dNV_remap_index 401 -#define VertexAttrib1dvNV_remap_index 402 -#define VertexAttrib1fNV_remap_index 403 -#define VertexAttrib1fvNV_remap_index 404 -#define VertexAttrib1sNV_remap_index 405 -#define VertexAttrib1svNV_remap_index 406 -#define VertexAttrib2dNV_remap_index 407 -#define VertexAttrib2dvNV_remap_index 408 -#define VertexAttrib2fNV_remap_index 409 -#define VertexAttrib2fvNV_remap_index 410 -#define VertexAttrib2sNV_remap_index 411 -#define VertexAttrib2svNV_remap_index 412 -#define VertexAttrib3dNV_remap_index 413 -#define VertexAttrib3dvNV_remap_index 414 -#define VertexAttrib3fNV_remap_index 415 -#define VertexAttrib3fvNV_remap_index 416 -#define VertexAttrib3sNV_remap_index 417 -#define VertexAttrib3svNV_remap_index 418 -#define VertexAttrib4dNV_remap_index 419 -#define VertexAttrib4dvNV_remap_index 420 -#define VertexAttrib4fNV_remap_index 421 -#define VertexAttrib4fvNV_remap_index 422 -#define VertexAttrib4sNV_remap_index 423 -#define VertexAttrib4svNV_remap_index 424 -#define VertexAttrib4ubNV_remap_index 425 -#define VertexAttrib4ubvNV_remap_index 426 -#define VertexAttribPointerNV_remap_index 427 -#define VertexAttribs1dvNV_remap_index 428 -#define VertexAttribs1fvNV_remap_index 429 -#define VertexAttribs1svNV_remap_index 430 -#define VertexAttribs2dvNV_remap_index 431 -#define VertexAttribs2fvNV_remap_index 432 -#define VertexAttribs2svNV_remap_index 433 -#define VertexAttribs3dvNV_remap_index 434 -#define VertexAttribs3fvNV_remap_index 435 -#define VertexAttribs3svNV_remap_index 436 -#define VertexAttribs4dvNV_remap_index 437 -#define VertexAttribs4fvNV_remap_index 438 -#define VertexAttribs4svNV_remap_index 439 -#define VertexAttribs4ubvNV_remap_index 440 -#define GetTexBumpParameterfvATI_remap_index 441 -#define GetTexBumpParameterivATI_remap_index 442 -#define TexBumpParameterfvATI_remap_index 443 -#define TexBumpParameterivATI_remap_index 444 -#define AlphaFragmentOp1ATI_remap_index 445 -#define AlphaFragmentOp2ATI_remap_index 446 -#define AlphaFragmentOp3ATI_remap_index 447 -#define BeginFragmentShaderATI_remap_index 448 -#define BindFragmentShaderATI_remap_index 449 -#define ColorFragmentOp1ATI_remap_index 450 -#define ColorFragmentOp2ATI_remap_index 451 -#define ColorFragmentOp3ATI_remap_index 452 -#define DeleteFragmentShaderATI_remap_index 453 -#define EndFragmentShaderATI_remap_index 454 -#define GenFragmentShadersATI_remap_index 455 -#define PassTexCoordATI_remap_index 456 -#define SampleMapATI_remap_index 457 -#define SetFragmentShaderConstantATI_remap_index 458 -#define PointParameteriNV_remap_index 459 -#define PointParameterivNV_remap_index 460 -#define ActiveStencilFaceEXT_remap_index 461 -#define BindVertexArrayAPPLE_remap_index 462 -#define DeleteVertexArraysAPPLE_remap_index 463 -#define GenVertexArraysAPPLE_remap_index 464 -#define IsVertexArrayAPPLE_remap_index 465 -#define GetProgramNamedParameterdvNV_remap_index 466 -#define GetProgramNamedParameterfvNV_remap_index 467 -#define ProgramNamedParameter4dNV_remap_index 468 -#define ProgramNamedParameter4dvNV_remap_index 469 -#define ProgramNamedParameter4fNV_remap_index 470 -#define ProgramNamedParameter4fvNV_remap_index 471 -#define PrimitiveRestartIndexNV_remap_index 472 -#define PrimitiveRestartNV_remap_index 473 -#define DepthBoundsEXT_remap_index 474 -#define BlendEquationSeparateEXT_remap_index 475 -#define BindFramebufferEXT_remap_index 476 -#define BindRenderbufferEXT_remap_index 477 -#define CheckFramebufferStatusEXT_remap_index 478 -#define DeleteFramebuffersEXT_remap_index 479 -#define DeleteRenderbuffersEXT_remap_index 480 -#define FramebufferRenderbufferEXT_remap_index 481 -#define FramebufferTexture1DEXT_remap_index 482 -#define FramebufferTexture2DEXT_remap_index 483 -#define FramebufferTexture3DEXT_remap_index 484 -#define GenFramebuffersEXT_remap_index 485 -#define GenRenderbuffersEXT_remap_index 486 -#define GenerateMipmapEXT_remap_index 487 -#define GetFramebufferAttachmentParameterivEXT_remap_index 488 -#define GetRenderbufferParameterivEXT_remap_index 489 -#define IsFramebufferEXT_remap_index 490 -#define IsRenderbufferEXT_remap_index 491 -#define RenderbufferStorageEXT_remap_index 492 -#define BlitFramebufferEXT_remap_index 493 -#define BufferParameteriAPPLE_remap_index 494 -#define FlushMappedBufferRangeAPPLE_remap_index 495 -#define BindFragDataLocationEXT_remap_index 496 -#define GetFragDataLocationEXT_remap_index 497 -#define GetUniformuivEXT_remap_index 498 -#define GetVertexAttribIivEXT_remap_index 499 -#define GetVertexAttribIuivEXT_remap_index 500 -#define Uniform1uiEXT_remap_index 501 -#define Uniform1uivEXT_remap_index 502 -#define Uniform2uiEXT_remap_index 503 -#define Uniform2uivEXT_remap_index 504 -#define Uniform3uiEXT_remap_index 505 -#define Uniform3uivEXT_remap_index 506 -#define Uniform4uiEXT_remap_index 507 -#define Uniform4uivEXT_remap_index 508 -#define VertexAttribI1iEXT_remap_index 509 -#define VertexAttribI1ivEXT_remap_index 510 -#define VertexAttribI1uiEXT_remap_index 511 -#define VertexAttribI1uivEXT_remap_index 512 -#define VertexAttribI2iEXT_remap_index 513 -#define VertexAttribI2ivEXT_remap_index 514 -#define VertexAttribI2uiEXT_remap_index 515 -#define VertexAttribI2uivEXT_remap_index 516 -#define VertexAttribI3iEXT_remap_index 517 -#define VertexAttribI3ivEXT_remap_index 518 -#define VertexAttribI3uiEXT_remap_index 519 -#define VertexAttribI3uivEXT_remap_index 520 -#define VertexAttribI4bvEXT_remap_index 521 -#define VertexAttribI4iEXT_remap_index 522 -#define VertexAttribI4ivEXT_remap_index 523 -#define VertexAttribI4svEXT_remap_index 524 -#define VertexAttribI4ubvEXT_remap_index 525 -#define VertexAttribI4uiEXT_remap_index 526 -#define VertexAttribI4uivEXT_remap_index 527 -#define VertexAttribI4usvEXT_remap_index 528 -#define VertexAttribIPointerEXT_remap_index 529 -#define FramebufferTextureLayerEXT_remap_index 530 -#define ColorMaskIndexedEXT_remap_index 531 -#define DisableIndexedEXT_remap_index 532 -#define EnableIndexedEXT_remap_index 533 -#define GetBooleanIndexedvEXT_remap_index 534 -#define GetIntegerIndexedvEXT_remap_index 535 -#define IsEnabledIndexedEXT_remap_index 536 -#define ClearColorIiEXT_remap_index 537 -#define ClearColorIuiEXT_remap_index 538 -#define GetTexParameterIivEXT_remap_index 539 -#define GetTexParameterIuivEXT_remap_index 540 -#define TexParameterIivEXT_remap_index 541 -#define TexParameterIuivEXT_remap_index 542 -#define BeginConditionalRenderNV_remap_index 543 -#define EndConditionalRenderNV_remap_index 544 -#define BeginTransformFeedbackEXT_remap_index 545 -#define BindBufferBaseEXT_remap_index 546 -#define BindBufferOffsetEXT_remap_index 547 -#define BindBufferRangeEXT_remap_index 548 -#define EndTransformFeedbackEXT_remap_index 549 -#define GetTransformFeedbackVaryingEXT_remap_index 550 -#define TransformFeedbackVaryingsEXT_remap_index 551 -#define ProvokingVertexEXT_remap_index 552 -#define GetTexParameterPointervAPPLE_remap_index 553 -#define TextureRangeAPPLE_remap_index 554 -#define GetObjectParameterivAPPLE_remap_index 555 -#define ObjectPurgeableAPPLE_remap_index 556 -#define ObjectUnpurgeableAPPLE_remap_index 557 -#define ActiveProgramEXT_remap_index 558 -#define CreateShaderProgramEXT_remap_index 559 -#define UseShaderProgramEXT_remap_index 560 -#define TextureBarrierNV_remap_index 561 -#define StencilFuncSeparateATI_remap_index 562 -#define ProgramEnvParameters4fvEXT_remap_index 563 -#define ProgramLocalParameters4fvEXT_remap_index 564 -#define GetQueryObjecti64vEXT_remap_index 565 -#define GetQueryObjectui64vEXT_remap_index 566 -#define EGLImageTargetRenderbufferStorageOES_remap_index 567 -#define EGLImageTargetTexture2DOES_remap_index 568 +#define BindFragDataLocationIndexed_remap_index 193 +#define GetFragDataIndex_remap_index 194 +#define BindSampler_remap_index 195 +#define DeleteSamplers_remap_index 196 +#define GenSamplers_remap_index 197 +#define GetSamplerParameterIiv_remap_index 198 +#define GetSamplerParameterIuiv_remap_index 199 +#define GetSamplerParameterfv_remap_index 200 +#define GetSamplerParameteriv_remap_index 201 +#define IsSampler_remap_index 202 +#define SamplerParameterIiv_remap_index 203 +#define SamplerParameterIuiv_remap_index 204 +#define SamplerParameterf_remap_index 205 +#define SamplerParameterfv_remap_index 206 +#define SamplerParameteri_remap_index 207 +#define SamplerParameteriv_remap_index 208 +#define ColorP3ui_remap_index 209 +#define ColorP3uiv_remap_index 210 +#define ColorP4ui_remap_index 211 +#define ColorP4uiv_remap_index 212 +#define MultiTexCoordP1ui_remap_index 213 +#define MultiTexCoordP1uiv_remap_index 214 +#define MultiTexCoordP2ui_remap_index 215 +#define MultiTexCoordP2uiv_remap_index 216 +#define MultiTexCoordP3ui_remap_index 217 +#define MultiTexCoordP3uiv_remap_index 218 +#define MultiTexCoordP4ui_remap_index 219 +#define MultiTexCoordP4uiv_remap_index 220 +#define NormalP3ui_remap_index 221 +#define NormalP3uiv_remap_index 222 +#define SecondaryColorP3ui_remap_index 223 +#define SecondaryColorP3uiv_remap_index 224 +#define TexCoordP1ui_remap_index 225 +#define TexCoordP1uiv_remap_index 226 +#define TexCoordP2ui_remap_index 227 +#define TexCoordP2uiv_remap_index 228 +#define TexCoordP3ui_remap_index 229 +#define TexCoordP3uiv_remap_index 230 +#define TexCoordP4ui_remap_index 231 +#define TexCoordP4uiv_remap_index 232 +#define VertexAttribP1ui_remap_index 233 +#define VertexAttribP1uiv_remap_index 234 +#define VertexAttribP2ui_remap_index 235 +#define VertexAttribP2uiv_remap_index 236 +#define VertexAttribP3ui_remap_index 237 +#define VertexAttribP3uiv_remap_index 238 +#define VertexAttribP4ui_remap_index 239 +#define VertexAttribP4uiv_remap_index 240 +#define VertexP2ui_remap_index 241 +#define VertexP2uiv_remap_index 242 +#define VertexP3ui_remap_index 243 +#define VertexP3uiv_remap_index 244 +#define VertexP4ui_remap_index 245 +#define VertexP4uiv_remap_index 246 +#define BindTransformFeedback_remap_index 247 +#define DeleteTransformFeedbacks_remap_index 248 +#define DrawTransformFeedback_remap_index 249 +#define GenTransformFeedbacks_remap_index 250 +#define IsTransformFeedback_remap_index 251 +#define PauseTransformFeedback_remap_index 252 +#define ResumeTransformFeedback_remap_index 253 +#define ClearDepthf_remap_index 254 +#define DepthRangef_remap_index 255 +#define GetShaderPrecisionFormat_remap_index 256 +#define ReleaseShaderCompiler_remap_index 257 +#define ShaderBinary_remap_index 258 +#define DebugMessageCallbackARB_remap_index 259 +#define DebugMessageControlARB_remap_index 260 +#define DebugMessageInsertARB_remap_index 261 +#define GetDebugMessageLogARB_remap_index 262 +#define GetGraphicsResetStatusARB_remap_index 263 +#define GetnColorTableARB_remap_index 264 +#define GetnCompressedTexImageARB_remap_index 265 +#define GetnConvolutionFilterARB_remap_index 266 +#define GetnHistogramARB_remap_index 267 +#define GetnMapdvARB_remap_index 268 +#define GetnMapfvARB_remap_index 269 +#define GetnMapivARB_remap_index 270 +#define GetnMinmaxARB_remap_index 271 +#define GetnPixelMapfvARB_remap_index 272 +#define GetnPixelMapuivARB_remap_index 273 +#define GetnPixelMapusvARB_remap_index 274 +#define GetnPolygonStippleARB_remap_index 275 +#define GetnSeparableFilterARB_remap_index 276 +#define GetnTexImageARB_remap_index 277 +#define GetnUniformdvARB_remap_index 278 +#define GetnUniformfvARB_remap_index 279 +#define GetnUniformivARB_remap_index 280 +#define GetnUniformuivARB_remap_index 281 +#define ReadnPixelsARB_remap_index 282 +#define TexStorage1D_remap_index 283 +#define TexStorage2D_remap_index 284 +#define TexStorage3D_remap_index 285 +#define TextureStorage1DEXT_remap_index 286 +#define TextureStorage2DEXT_remap_index 287 +#define TextureStorage3DEXT_remap_index 288 +#define PolygonOffsetEXT_remap_index 289 +#define GetPixelTexGenParameterfvSGIS_remap_index 290 +#define GetPixelTexGenParameterivSGIS_remap_index 291 +#define PixelTexGenParameterfSGIS_remap_index 292 +#define PixelTexGenParameterfvSGIS_remap_index 293 +#define PixelTexGenParameteriSGIS_remap_index 294 +#define PixelTexGenParameterivSGIS_remap_index 295 +#define SampleMaskSGIS_remap_index 296 +#define SamplePatternSGIS_remap_index 297 +#define ColorPointerEXT_remap_index 298 +#define EdgeFlagPointerEXT_remap_index 299 +#define IndexPointerEXT_remap_index 300 +#define NormalPointerEXT_remap_index 301 +#define TexCoordPointerEXT_remap_index 302 +#define VertexPointerEXT_remap_index 303 +#define PointParameterfEXT_remap_index 304 +#define PointParameterfvEXT_remap_index 305 +#define LockArraysEXT_remap_index 306 +#define UnlockArraysEXT_remap_index 307 +#define SecondaryColor3bEXT_remap_index 308 +#define SecondaryColor3bvEXT_remap_index 309 +#define SecondaryColor3dEXT_remap_index 310 +#define SecondaryColor3dvEXT_remap_index 311 +#define SecondaryColor3fEXT_remap_index 312 +#define SecondaryColor3fvEXT_remap_index 313 +#define SecondaryColor3iEXT_remap_index 314 +#define SecondaryColor3ivEXT_remap_index 315 +#define SecondaryColor3sEXT_remap_index 316 +#define SecondaryColor3svEXT_remap_index 317 +#define SecondaryColor3ubEXT_remap_index 318 +#define SecondaryColor3ubvEXT_remap_index 319 +#define SecondaryColor3uiEXT_remap_index 320 +#define SecondaryColor3uivEXT_remap_index 321 +#define SecondaryColor3usEXT_remap_index 322 +#define SecondaryColor3usvEXT_remap_index 323 +#define SecondaryColorPointerEXT_remap_index 324 +#define MultiDrawArraysEXT_remap_index 325 +#define MultiDrawElementsEXT_remap_index 326 +#define FogCoordPointerEXT_remap_index 327 +#define FogCoorddEXT_remap_index 328 +#define FogCoorddvEXT_remap_index 329 +#define FogCoordfEXT_remap_index 330 +#define FogCoordfvEXT_remap_index 331 +#define PixelTexGenSGIX_remap_index 332 +#define BlendFuncSeparateEXT_remap_index 333 +#define FlushVertexArrayRangeNV_remap_index 334 +#define VertexArrayRangeNV_remap_index 335 +#define CombinerInputNV_remap_index 336 +#define CombinerOutputNV_remap_index 337 +#define CombinerParameterfNV_remap_index 338 +#define CombinerParameterfvNV_remap_index 339 +#define CombinerParameteriNV_remap_index 340 +#define CombinerParameterivNV_remap_index 341 +#define FinalCombinerInputNV_remap_index 342 +#define GetCombinerInputParameterfvNV_remap_index 343 +#define GetCombinerInputParameterivNV_remap_index 344 +#define GetCombinerOutputParameterfvNV_remap_index 345 +#define GetCombinerOutputParameterivNV_remap_index 346 +#define GetFinalCombinerInputParameterfvNV_remap_index 347 +#define GetFinalCombinerInputParameterivNV_remap_index 348 +#define ResizeBuffersMESA_remap_index 349 +#define WindowPos2dMESA_remap_index 350 +#define WindowPos2dvMESA_remap_index 351 +#define WindowPos2fMESA_remap_index 352 +#define WindowPos2fvMESA_remap_index 353 +#define WindowPos2iMESA_remap_index 354 +#define WindowPos2ivMESA_remap_index 355 +#define WindowPos2sMESA_remap_index 356 +#define WindowPos2svMESA_remap_index 357 +#define WindowPos3dMESA_remap_index 358 +#define WindowPos3dvMESA_remap_index 359 +#define WindowPos3fMESA_remap_index 360 +#define WindowPos3fvMESA_remap_index 361 +#define WindowPos3iMESA_remap_index 362 +#define WindowPos3ivMESA_remap_index 363 +#define WindowPos3sMESA_remap_index 364 +#define WindowPos3svMESA_remap_index 365 +#define WindowPos4dMESA_remap_index 366 +#define WindowPos4dvMESA_remap_index 367 +#define WindowPos4fMESA_remap_index 368 +#define WindowPos4fvMESA_remap_index 369 +#define WindowPos4iMESA_remap_index 370 +#define WindowPos4ivMESA_remap_index 371 +#define WindowPos4sMESA_remap_index 372 +#define WindowPos4svMESA_remap_index 373 +#define MultiModeDrawArraysIBM_remap_index 374 +#define MultiModeDrawElementsIBM_remap_index 375 +#define DeleteFencesNV_remap_index 376 +#define FinishFenceNV_remap_index 377 +#define GenFencesNV_remap_index 378 +#define GetFenceivNV_remap_index 379 +#define IsFenceNV_remap_index 380 +#define SetFenceNV_remap_index 381 +#define TestFenceNV_remap_index 382 +#define AreProgramsResidentNV_remap_index 383 +#define BindProgramNV_remap_index 384 +#define DeleteProgramsNV_remap_index 385 +#define ExecuteProgramNV_remap_index 386 +#define GenProgramsNV_remap_index 387 +#define GetProgramParameterdvNV_remap_index 388 +#define GetProgramParameterfvNV_remap_index 389 +#define GetProgramStringNV_remap_index 390 +#define GetProgramivNV_remap_index 391 +#define GetTrackMatrixivNV_remap_index 392 +#define GetVertexAttribPointervNV_remap_index 393 +#define GetVertexAttribdvNV_remap_index 394 +#define GetVertexAttribfvNV_remap_index 395 +#define GetVertexAttribivNV_remap_index 396 +#define IsProgramNV_remap_index 397 +#define LoadProgramNV_remap_index 398 +#define ProgramParameters4dvNV_remap_index 399 +#define ProgramParameters4fvNV_remap_index 400 +#define RequestResidentProgramsNV_remap_index 401 +#define TrackMatrixNV_remap_index 402 +#define VertexAttrib1dNV_remap_index 403 +#define VertexAttrib1dvNV_remap_index 404 +#define VertexAttrib1fNV_remap_index 405 +#define VertexAttrib1fvNV_remap_index 406 +#define VertexAttrib1sNV_remap_index 407 +#define VertexAttrib1svNV_remap_index 408 +#define VertexAttrib2dNV_remap_index 409 +#define VertexAttrib2dvNV_remap_index 410 +#define VertexAttrib2fNV_remap_index 411 +#define VertexAttrib2fvNV_remap_index 412 +#define VertexAttrib2sNV_remap_index 413 +#define VertexAttrib2svNV_remap_index 414 +#define VertexAttrib3dNV_remap_index 415 +#define VertexAttrib3dvNV_remap_index 416 +#define VertexAttrib3fNV_remap_index 417 +#define VertexAttrib3fvNV_remap_index 418 +#define VertexAttrib3sNV_remap_index 419 +#define VertexAttrib3svNV_remap_index 420 +#define VertexAttrib4dNV_remap_index 421 +#define VertexAttrib4dvNV_remap_index 422 +#define VertexAttrib4fNV_remap_index 423 +#define VertexAttrib4fvNV_remap_index 424 +#define VertexAttrib4sNV_remap_index 425 +#define VertexAttrib4svNV_remap_index 426 +#define VertexAttrib4ubNV_remap_index 427 +#define VertexAttrib4ubvNV_remap_index 428 +#define VertexAttribPointerNV_remap_index 429 +#define VertexAttribs1dvNV_remap_index 430 +#define VertexAttribs1fvNV_remap_index 431 +#define VertexAttribs1svNV_remap_index 432 +#define VertexAttribs2dvNV_remap_index 433 +#define VertexAttribs2fvNV_remap_index 434 +#define VertexAttribs2svNV_remap_index 435 +#define VertexAttribs3dvNV_remap_index 436 +#define VertexAttribs3fvNV_remap_index 437 +#define VertexAttribs3svNV_remap_index 438 +#define VertexAttribs4dvNV_remap_index 439 +#define VertexAttribs4fvNV_remap_index 440 +#define VertexAttribs4svNV_remap_index 441 +#define VertexAttribs4ubvNV_remap_index 442 +#define GetTexBumpParameterfvATI_remap_index 443 +#define GetTexBumpParameterivATI_remap_index 444 +#define TexBumpParameterfvATI_remap_index 445 +#define TexBumpParameterivATI_remap_index 446 +#define AlphaFragmentOp1ATI_remap_index 447 +#define AlphaFragmentOp2ATI_remap_index 448 +#define AlphaFragmentOp3ATI_remap_index 449 +#define BeginFragmentShaderATI_remap_index 450 +#define BindFragmentShaderATI_remap_index 451 +#define ColorFragmentOp1ATI_remap_index 452 +#define ColorFragmentOp2ATI_remap_index 453 +#define ColorFragmentOp3ATI_remap_index 454 +#define DeleteFragmentShaderATI_remap_index 455 +#define EndFragmentShaderATI_remap_index 456 +#define GenFragmentShadersATI_remap_index 457 +#define PassTexCoordATI_remap_index 458 +#define SampleMapATI_remap_index 459 +#define SetFragmentShaderConstantATI_remap_index 460 +#define PointParameteriNV_remap_index 461 +#define PointParameterivNV_remap_index 462 +#define ActiveStencilFaceEXT_remap_index 463 +#define BindVertexArrayAPPLE_remap_index 464 +#define DeleteVertexArraysAPPLE_remap_index 465 +#define GenVertexArraysAPPLE_remap_index 466 +#define IsVertexArrayAPPLE_remap_index 467 +#define GetProgramNamedParameterdvNV_remap_index 468 +#define GetProgramNamedParameterfvNV_remap_index 469 +#define ProgramNamedParameter4dNV_remap_index 470 +#define ProgramNamedParameter4dvNV_remap_index 471 +#define ProgramNamedParameter4fNV_remap_index 472 +#define ProgramNamedParameter4fvNV_remap_index 473 +#define PrimitiveRestartIndexNV_remap_index 474 +#define PrimitiveRestartNV_remap_index 475 +#define DepthBoundsEXT_remap_index 476 +#define BlendEquationSeparateEXT_remap_index 477 +#define BindFramebufferEXT_remap_index 478 +#define BindRenderbufferEXT_remap_index 479 +#define CheckFramebufferStatusEXT_remap_index 480 +#define DeleteFramebuffersEXT_remap_index 481 +#define DeleteRenderbuffersEXT_remap_index 482 +#define FramebufferRenderbufferEXT_remap_index 483 +#define FramebufferTexture1DEXT_remap_index 484 +#define FramebufferTexture2DEXT_remap_index 485 +#define FramebufferTexture3DEXT_remap_index 486 +#define GenFramebuffersEXT_remap_index 487 +#define GenRenderbuffersEXT_remap_index 488 +#define GenerateMipmapEXT_remap_index 489 +#define GetFramebufferAttachmentParameterivEXT_remap_index 490 +#define GetRenderbufferParameterivEXT_remap_index 491 +#define IsFramebufferEXT_remap_index 492 +#define IsRenderbufferEXT_remap_index 493 +#define RenderbufferStorageEXT_remap_index 494 +#define BlitFramebufferEXT_remap_index 495 +#define BufferParameteriAPPLE_remap_index 496 +#define FlushMappedBufferRangeAPPLE_remap_index 497 +#define BindFragDataLocationEXT_remap_index 498 +#define GetFragDataLocationEXT_remap_index 499 +#define GetUniformuivEXT_remap_index 500 +#define GetVertexAttribIivEXT_remap_index 501 +#define GetVertexAttribIuivEXT_remap_index 502 +#define Uniform1uiEXT_remap_index 503 +#define Uniform1uivEXT_remap_index 504 +#define Uniform2uiEXT_remap_index 505 +#define Uniform2uivEXT_remap_index 506 +#define Uniform3uiEXT_remap_index 507 +#define Uniform3uivEXT_remap_index 508 +#define Uniform4uiEXT_remap_index 509 +#define Uniform4uivEXT_remap_index 510 +#define VertexAttribI1iEXT_remap_index 511 +#define VertexAttribI1ivEXT_remap_index 512 +#define VertexAttribI1uiEXT_remap_index 513 +#define VertexAttribI1uivEXT_remap_index 514 +#define VertexAttribI2iEXT_remap_index 515 +#define VertexAttribI2ivEXT_remap_index 516 +#define VertexAttribI2uiEXT_remap_index 517 +#define VertexAttribI2uivEXT_remap_index 518 +#define VertexAttribI3iEXT_remap_index 519 +#define VertexAttribI3ivEXT_remap_index 520 +#define VertexAttribI3uiEXT_remap_index 521 +#define VertexAttribI3uivEXT_remap_index 522 +#define VertexAttribI4bvEXT_remap_index 523 +#define VertexAttribI4iEXT_remap_index 524 +#define VertexAttribI4ivEXT_remap_index 525 +#define VertexAttribI4svEXT_remap_index 526 +#define VertexAttribI4ubvEXT_remap_index 527 +#define VertexAttribI4uiEXT_remap_index 528 +#define VertexAttribI4uivEXT_remap_index 529 +#define VertexAttribI4usvEXT_remap_index 530 +#define VertexAttribIPointerEXT_remap_index 531 +#define FramebufferTextureLayerEXT_remap_index 532 +#define ColorMaskIndexedEXT_remap_index 533 +#define DisableIndexedEXT_remap_index 534 +#define EnableIndexedEXT_remap_index 535 +#define GetBooleanIndexedvEXT_remap_index 536 +#define GetIntegerIndexedvEXT_remap_index 537 +#define IsEnabledIndexedEXT_remap_index 538 +#define ClearColorIiEXT_remap_index 539 +#define ClearColorIuiEXT_remap_index 540 +#define GetTexParameterIivEXT_remap_index 541 +#define GetTexParameterIuivEXT_remap_index 542 +#define TexParameterIivEXT_remap_index 543 +#define TexParameterIuivEXT_remap_index 544 +#define BeginConditionalRenderNV_remap_index 545 +#define EndConditionalRenderNV_remap_index 546 +#define BeginTransformFeedbackEXT_remap_index 547 +#define BindBufferBaseEXT_remap_index 548 +#define BindBufferOffsetEXT_remap_index 549 +#define BindBufferRangeEXT_remap_index 550 +#define EndTransformFeedbackEXT_remap_index 551 +#define GetTransformFeedbackVaryingEXT_remap_index 552 +#define TransformFeedbackVaryingsEXT_remap_index 553 +#define ProvokingVertexEXT_remap_index 554 +#define GetTexParameterPointervAPPLE_remap_index 555 +#define TextureRangeAPPLE_remap_index 556 +#define GetObjectParameterivAPPLE_remap_index 557 +#define ObjectPurgeableAPPLE_remap_index 558 +#define ObjectUnpurgeableAPPLE_remap_index 559 +#define ActiveProgramEXT_remap_index 560 +#define CreateShaderProgramEXT_remap_index 561 +#define UseShaderProgramEXT_remap_index 562 +#define TextureBarrierNV_remap_index 563 +#define StencilFuncSeparateATI_remap_index 564 +#define ProgramEnvParameters4fvEXT_remap_index 565 +#define ProgramLocalParameters4fvEXT_remap_index 566 +#define GetQueryObjecti64vEXT_remap_index 567 +#define GetQueryObjectui64vEXT_remap_index 568 +#define EGLImageTargetRenderbufferStorageOES_remap_index 569 +#define EGLImageTargetTexture2DOES_remap_index 570 #define _gloffset_AttachShader driDispatchRemapTable[AttachShader_remap_index] #define _gloffset_CreateProgram driDispatchRemapTable[CreateProgram_remap_index] @@ -1814,6 +1818,8 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ]; #define _gloffset_BlendEquationiARB driDispatchRemapTable[BlendEquationiARB_remap_index] #define _gloffset_BlendFuncSeparateiARB driDispatchRemapTable[BlendFuncSeparateiARB_remap_index] #define _gloffset_BlendFunciARB driDispatchRemapTable[BlendFunciARB_remap_index] +#define _gloffset_BindFragDataLocationIndexed driDispatchRemapTable[BindFragDataLocationIndexed_remap_index] +#define _gloffset_GetFragDataIndex driDispatchRemapTable[GetFragDataIndex_remap_index] #define _gloffset_BindSampler driDispatchRemapTable[BindSampler_remap_index] #define _gloffset_DeleteSamplers driDispatchRemapTable[DeleteSamplers_remap_index] #define _gloffset_GenSamplers driDispatchRemapTable[GenSamplers_remap_index] @@ -8804,6 +8810,28 @@ static inline void SET_BlendFunciARB(struct _glapi_table *disp, void (GLAPIENTRY SET_by_offset(disp, _gloffset_BlendFunciARB, fn); } +typedef void (GLAPIENTRYP _glptr_BindFragDataLocationIndexed)(GLuint, GLuint, GLuint, const GLchar *); +#define CALL_BindFragDataLocationIndexed(disp, parameters) \ + (* GET_BindFragDataLocationIndexed(disp)) parameters +static inline _glptr_BindFragDataLocationIndexed GET_BindFragDataLocationIndexed(struct _glapi_table *disp) { + return (_glptr_BindFragDataLocationIndexed) (GET_by_offset(disp, _gloffset_BindFragDataLocationIndexed)); +} + +static inline void SET_BindFragDataLocationIndexed(struct _glapi_table *disp, void (GLAPIENTRYP fn)(GLuint, GLuint, GLuint, const GLchar *)) { + SET_by_offset(disp, _gloffset_BindFragDataLocationIndexed, fn); +} + +typedef GLint (GLAPIENTRYP _glptr_GetFragDataIndex)(GLuint, const GLchar *); +#define CALL_GetFragDataIndex(disp, parameters) \ + (* GET_GetFragDataIndex(disp)) parameters +static inline _glptr_GetFragDataIndex GET_GetFragDataIndex(struct _glapi_table *disp) { + return (_glptr_GetFragDataIndex) (GET_by_offset(disp, _gloffset_GetFragDataIndex)); +} + +static inline void SET_GetFragDataIndex(struct _glapi_table *disp, GLint (GLAPIENTRYP fn)(GLuint, const GLchar *)) { + SET_by_offset(disp, _gloffset_GetFragDataIndex, fn); +} + typedef void (GLAPIENTRYP _glptr_BindSampler)(GLuint, GLuint); #define CALL_BindSampler(disp, parameters) \ (* GET_BindSampler(disp)) parameters diff --git a/src/mesa/main/enums.c b/src/mesa/main/enums.c index d2a2773fa23..486a159314a 100644 --- a/src/mesa/main/enums.c +++ b/src/mesa/main/enums.c @@ -1123,6 +1123,7 @@ LONGSTRING static const char enum_string_table[] = "GL_MAX_DRAW_BUFFERS_ARB\0" "GL_MAX_DRAW_BUFFERS_ATI\0" "GL_MAX_DRAW_BUFFERS_NV\0" + "GL_MAX_DUAL_SOURCE_DRAW_BUFFERS\0" "GL_MAX_ELEMENTS_INDICES\0" "GL_MAX_ELEMENTS_VERTICES\0" "GL_MAX_EVAL_ORDER\0" @@ -1353,6 +1354,8 @@ LONGSTRING static const char enum_string_table[] = "GL_ONE_MINUS_CONSTANT_COLOR_EXT\0" "GL_ONE_MINUS_DST_ALPHA\0" "GL_ONE_MINUS_DST_COLOR\0" + "GL_ONE_MINUS_SRC1_ALPHA\0" + "GL_ONE_MINUS_SRC1_COLOR\0" "GL_ONE_MINUS_SRC_ALPHA\0" "GL_ONE_MINUS_SRC_COLOR\0" "GL_OPERAND0_ALPHA\0" @@ -1895,6 +1898,7 @@ LONGSTRING static const char enum_string_table[] = "GL_SRC0_ALPHA\0" "GL_SRC0_RGB\0" "GL_SRC1_ALPHA\0" + "GL_SRC1_COLOR\0" "GL_SRC1_RGB\0" "GL_SRC2_ALPHA\0" "GL_SRC2_RGB\0" @@ -2401,7 +2405,7 @@ LONGSTRING static const char enum_string_table[] = "GL_ZOOM_Y\0" ; -static const enum_elt all_enums[2362] = +static const enum_elt all_enums[2366] = { { 0, 0x00000600 }, /* GL_2D */ { 6, 0x00001407 }, /* GL_2_BYTES */ @@ -3489,1326 +3493,1330 @@ static const enum_elt all_enums[2362] = { 23545, 0x00008824 }, /* GL_MAX_DRAW_BUFFERS_ARB */ { 23569, 0x00008824 }, /* GL_MAX_DRAW_BUFFERS_ATI */ { 23593, 0x00008824 }, /* GL_MAX_DRAW_BUFFERS_NV */ - { 23616, 0x000080E9 }, /* GL_MAX_ELEMENTS_INDICES */ - { 23640, 0x000080E8 }, /* GL_MAX_ELEMENTS_VERTICES */ - { 23665, 0x00000D30 }, /* GL_MAX_EVAL_ORDER */ - { 23683, 0x00008008 }, /* GL_MAX_EXT */ - { 23694, 0x00009125 }, /* GL_MAX_FRAGMENT_INPUT_COMPONENTS */ - { 23727, 0x00008B49 }, /* GL_MAX_FRAGMENT_UNIFORM_COMPONENTS */ - { 23762, 0x00008B49 }, /* GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB */ - { 23801, 0x00008DFD }, /* GL_MAX_FRAGMENT_UNIFORM_VECTORS */ - { 23833, 0x00009123 }, /* GL_MAX_GEOMETRY_INPUT_COMPONENTS */ - { 23866, 0x00009124 }, /* GL_MAX_GEOMETRY_OUTPUT_COMPONENTS */ - { 23900, 0x00008DE0 }, /* GL_MAX_GEOMETRY_OUTPUT_VERTICES */ - { 23932, 0x00008DE0 }, /* GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB */ - { 23968, 0x00008C29 }, /* GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS */ - { 24004, 0x00008C29 }, /* GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB */ - { 24044, 0x00008DE1 }, /* GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS */ - { 24084, 0x00008DE1 }, /* GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB */ - { 24128, 0x00008DDF }, /* GL_MAX_GEOMETRY_UNIFORM_COMPONENTS */ - { 24163, 0x00008DDF }, /* GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB */ - { 24202, 0x00008DDD }, /* GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB */ - { 24241, 0x00000D31 }, /* GL_MAX_LIGHTS */ - { 24255, 0x00000B31 }, /* GL_MAX_LIST_NESTING */ - { 24275, 0x00008841 }, /* GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB */ - { 24313, 0x00000D36 }, /* GL_MAX_MODELVIEW_STACK_DEPTH */ - { 24342, 0x00000D37 }, /* GL_MAX_NAME_STACK_DEPTH */ - { 24366, 0x00008842 }, /* GL_MAX_PALETTE_MATRICES_ARB */ - { 24394, 0x00008842 }, /* GL_MAX_PALETTE_MATRICES_OES */ - { 24422, 0x00000D34 }, /* GL_MAX_PIXEL_MAP_TABLE */ - { 24445, 0x000088B1 }, /* GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB */ - { 24482, 0x0000880B }, /* GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB */ - { 24518, 0x000088AD }, /* GL_MAX_PROGRAM_ATTRIBS_ARB */ - { 24545, 0x000088F5 }, /* GL_MAX_PROGRAM_CALL_DEPTH_NV */ - { 24574, 0x000088B5 }, /* GL_MAX_PROGRAM_ENV_PARAMETERS_ARB */ - { 24608, 0x000088F4 }, /* GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV */ - { 24644, 0x000088F6 }, /* GL_MAX_PROGRAM_IF_DEPTH_NV */ - { 24671, 0x000088A1 }, /* GL_MAX_PROGRAM_INSTRUCTIONS_ARB */ - { 24703, 0x000088B4 }, /* GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB */ - { 24739, 0x000088F8 }, /* GL_MAX_PROGRAM_LOOP_COUNT_NV */ - { 24768, 0x000088F7 }, /* GL_MAX_PROGRAM_LOOP_DEPTH_NV */ - { 24797, 0x0000862F }, /* GL_MAX_PROGRAM_MATRICES_ARB */ - { 24825, 0x0000862E }, /* GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB */ - { 24863, 0x000088B3 }, /* GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ - { 24907, 0x0000880E }, /* GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ - { 24950, 0x000088AF }, /* GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB */ - { 24984, 0x000088A3 }, /* GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ - { 25023, 0x000088AB }, /* GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB */ - { 25060, 0x000088A7 }, /* GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB */ - { 25098, 0x00008810 }, /* GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ - { 25141, 0x0000880F }, /* GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ - { 25184, 0x000088A9 }, /* GL_MAX_PROGRAM_PARAMETERS_ARB */ - { 25214, 0x000088A5 }, /* GL_MAX_PROGRAM_TEMPORARIES_ARB */ - { 25245, 0x00008905 }, /* GL_MAX_PROGRAM_TEXEL_OFFSET */ - { 25273, 0x0000880D }, /* GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB */ - { 25309, 0x0000880C }, /* GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB */ - { 25345, 0x00000D38 }, /* GL_MAX_PROJECTION_STACK_DEPTH */ - { 25375, 0x000084F8 }, /* GL_MAX_RECTANGLE_TEXTURE_SIZE */ - { 25405, 0x000084F8 }, /* GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB */ - { 25439, 0x000084F8 }, /* GL_MAX_RECTANGLE_TEXTURE_SIZE_NV */ - { 25472, 0x000084E8 }, /* GL_MAX_RENDERBUFFER_SIZE */ - { 25497, 0x000084E8 }, /* GL_MAX_RENDERBUFFER_SIZE_EXT */ - { 25526, 0x000084E8 }, /* GL_MAX_RENDERBUFFER_SIZE_OES */ - { 25555, 0x00008D57 }, /* GL_MAX_SAMPLES */ - { 25570, 0x00008D57 }, /* GL_MAX_SAMPLES_EXT */ - { 25589, 0x00009111 }, /* GL_MAX_SERVER_WAIT_TIMEOUT */ - { 25616, 0x00008504 }, /* GL_MAX_SHININESS_NV */ - { 25636, 0x00008505 }, /* GL_MAX_SPOT_EXPONENT_NV */ - { 25660, 0x00008C2B }, /* GL_MAX_TEXTURE_BUFFER_SIZE */ - { 25687, 0x00008C2B }, /* GL_MAX_TEXTURE_BUFFER_SIZE_ARB */ - { 25718, 0x00008871 }, /* GL_MAX_TEXTURE_COORDS */ - { 25740, 0x00008871 }, /* GL_MAX_TEXTURE_COORDS_ARB */ - { 25766, 0x00008872 }, /* GL_MAX_TEXTURE_IMAGE_UNITS */ - { 25793, 0x00008872 }, /* GL_MAX_TEXTURE_IMAGE_UNITS_ARB */ - { 25824, 0x000084FD }, /* GL_MAX_TEXTURE_LOD_BIAS */ - { 25848, 0x000084FD }, /* GL_MAX_TEXTURE_LOD_BIAS_EXT */ - { 25876, 0x000084FF }, /* GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT */ - { 25910, 0x00000D33 }, /* GL_MAX_TEXTURE_SIZE */ - { 25930, 0x00000D39 }, /* GL_MAX_TEXTURE_STACK_DEPTH */ - { 25957, 0x000084E2 }, /* GL_MAX_TEXTURE_UNITS */ - { 25978, 0x000084E2 }, /* GL_MAX_TEXTURE_UNITS_ARB */ - { 26003, 0x0000862F }, /* GL_MAX_TRACK_MATRICES_NV */ - { 26028, 0x0000862E }, /* GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV */ - { 26063, 0x00008C8A }, /* GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS */ - { 26112, 0x00008C8A }, /* GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT */ - { 26165, 0x00008C8B }, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS */ - { 26208, 0x00008C8B }, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT */ - { 26255, 0x00008C80 }, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS */ - { 26301, 0x00008C80 }, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT */ - { 26351, 0x00008B4B }, /* GL_MAX_VARYING_COMPONENTS */ - { 26377, 0x00008B4B }, /* GL_MAX_VARYING_FLOATS */ - { 26399, 0x00008B4B }, /* GL_MAX_VARYING_FLOATS_ARB */ - { 26425, 0x00008DFC }, /* GL_MAX_VARYING_VECTORS */ - { 26448, 0x00008869 }, /* GL_MAX_VERTEX_ATTRIBS */ - { 26470, 0x00008869 }, /* GL_MAX_VERTEX_ATTRIBS_ARB */ - { 26496, 0x00009122 }, /* GL_MAX_VERTEX_OUTPUT_COMPONENTS */ - { 26528, 0x00008B4C }, /* GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS */ - { 26562, 0x00008B4C }, /* GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB */ - { 26600, 0x00008B4A }, /* GL_MAX_VERTEX_UNIFORM_COMPONENTS */ - { 26633, 0x00008B4A }, /* GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB */ - { 26670, 0x00008DFB }, /* GL_MAX_VERTEX_UNIFORM_VECTORS */ - { 26700, 0x000086A4 }, /* GL_MAX_VERTEX_UNITS_ARB */ - { 26724, 0x000086A4 }, /* GL_MAX_VERTEX_UNITS_OES */ - { 26748, 0x00008DDE }, /* GL_MAX_VERTEX_VARYING_COMPONENTS_ARB */ - { 26785, 0x00000D3A }, /* GL_MAX_VIEWPORT_DIMS */ - { 26806, 0x00008DF1 }, /* GL_MEDIUM_FLOAT */ - { 26822, 0x00008DF4 }, /* GL_MEDIUM_INT */ - { 26836, 0x00008007 }, /* GL_MIN */ - { 26843, 0x0000802E }, /* GL_MINMAX */ - { 26853, 0x0000802E }, /* GL_MINMAX_EXT */ - { 26867, 0x0000802F }, /* GL_MINMAX_FORMAT */ - { 26884, 0x0000802F }, /* GL_MINMAX_FORMAT_EXT */ - { 26905, 0x00008030 }, /* GL_MINMAX_SINK */ - { 26920, 0x00008030 }, /* GL_MINMAX_SINK_EXT */ - { 26939, 0x0000821C }, /* GL_MINOR_VERSION */ - { 26956, 0x00008007 }, /* GL_MIN_EXT */ - { 26967, 0x00008904 }, /* GL_MIN_PROGRAM_TEXEL_OFFSET */ - { 26995, 0x00008370 }, /* GL_MIRRORED_REPEAT */ - { 27014, 0x00008370 }, /* GL_MIRRORED_REPEAT_ARB */ - { 27037, 0x00008370 }, /* GL_MIRRORED_REPEAT_IBM */ - { 27060, 0x00008742 }, /* GL_MIRROR_CLAMP_ATI */ - { 27080, 0x00008742 }, /* GL_MIRROR_CLAMP_EXT */ - { 27100, 0x00008912 }, /* GL_MIRROR_CLAMP_TO_BORDER_EXT */ - { 27130, 0x00008743 }, /* GL_MIRROR_CLAMP_TO_EDGE_ATI */ - { 27158, 0x00008743 }, /* GL_MIRROR_CLAMP_TO_EDGE_EXT */ - { 27186, 0x00001700 }, /* GL_MODELVIEW */ - { 27199, 0x00001700 }, /* GL_MODELVIEW0_ARB */ - { 27217, 0x0000872A }, /* GL_MODELVIEW10_ARB */ - { 27236, 0x0000872B }, /* GL_MODELVIEW11_ARB */ - { 27255, 0x0000872C }, /* GL_MODELVIEW12_ARB */ - { 27274, 0x0000872D }, /* GL_MODELVIEW13_ARB */ - { 27293, 0x0000872E }, /* GL_MODELVIEW14_ARB */ - { 27312, 0x0000872F }, /* GL_MODELVIEW15_ARB */ - { 27331, 0x00008730 }, /* GL_MODELVIEW16_ARB */ - { 27350, 0x00008731 }, /* GL_MODELVIEW17_ARB */ - { 27369, 0x00008732 }, /* GL_MODELVIEW18_ARB */ - { 27388, 0x00008733 }, /* GL_MODELVIEW19_ARB */ - { 27407, 0x0000850A }, /* GL_MODELVIEW1_ARB */ - { 27425, 0x00008734 }, /* GL_MODELVIEW20_ARB */ - { 27444, 0x00008735 }, /* GL_MODELVIEW21_ARB */ - { 27463, 0x00008736 }, /* GL_MODELVIEW22_ARB */ - { 27482, 0x00008737 }, /* GL_MODELVIEW23_ARB */ - { 27501, 0x00008738 }, /* GL_MODELVIEW24_ARB */ - { 27520, 0x00008739 }, /* GL_MODELVIEW25_ARB */ - { 27539, 0x0000873A }, /* GL_MODELVIEW26_ARB */ - { 27558, 0x0000873B }, /* GL_MODELVIEW27_ARB */ - { 27577, 0x0000873C }, /* GL_MODELVIEW28_ARB */ - { 27596, 0x0000873D }, /* GL_MODELVIEW29_ARB */ - { 27615, 0x00008722 }, /* GL_MODELVIEW2_ARB */ - { 27633, 0x0000873E }, /* GL_MODELVIEW30_ARB */ - { 27652, 0x0000873F }, /* GL_MODELVIEW31_ARB */ - { 27671, 0x00008723 }, /* GL_MODELVIEW3_ARB */ - { 27689, 0x00008724 }, /* GL_MODELVIEW4_ARB */ - { 27707, 0x00008725 }, /* GL_MODELVIEW5_ARB */ - { 27725, 0x00008726 }, /* GL_MODELVIEW6_ARB */ - { 27743, 0x00008727 }, /* GL_MODELVIEW7_ARB */ - { 27761, 0x00008728 }, /* GL_MODELVIEW8_ARB */ - { 27779, 0x00008729 }, /* GL_MODELVIEW9_ARB */ - { 27797, 0x00000BA6 }, /* GL_MODELVIEW_MATRIX */ - { 27817, 0x0000898D }, /* GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES */ - { 27859, 0x00008629 }, /* GL_MODELVIEW_PROJECTION_NV */ - { 27886, 0x00000BA3 }, /* GL_MODELVIEW_STACK_DEPTH */ - { 27911, 0x00002100 }, /* GL_MODULATE */ - { 27923, 0x00008744 }, /* GL_MODULATE_ADD_ATI */ - { 27943, 0x00008745 }, /* GL_MODULATE_SIGNED_ADD_ATI */ - { 27970, 0x00008746 }, /* GL_MODULATE_SUBTRACT_ATI */ - { 27995, 0x00000103 }, /* GL_MULT */ - { 28003, 0x0000809D }, /* GL_MULTISAMPLE */ - { 28018, 0x000086B2 }, /* GL_MULTISAMPLE_3DFX */ - { 28038, 0x0000809D }, /* GL_MULTISAMPLE_ARB */ - { 28057, 0x20000000 }, /* GL_MULTISAMPLE_BIT */ - { 28076, 0x20000000 }, /* GL_MULTISAMPLE_BIT_3DFX */ - { 28100, 0x20000000 }, /* GL_MULTISAMPLE_BIT_ARB */ - { 28123, 0x00008534 }, /* GL_MULTISAMPLE_FILTER_HINT_NV */ - { 28153, 0x00002A25 }, /* GL_N3F_V3F */ - { 28164, 0x00000D70 }, /* GL_NAME_STACK_DEPTH */ - { 28184, 0x0000150E }, /* GL_NAND */ - { 28192, 0x00002600 }, /* GL_NEAREST */ - { 28203, 0x0000844E }, /* GL_NEAREST_CLIPMAP_LINEAR_SGIX */ - { 28234, 0x0000844D }, /* GL_NEAREST_CLIPMAP_NEAREST_SGIX */ - { 28266, 0x00002702 }, /* GL_NEAREST_MIPMAP_LINEAR */ - { 28291, 0x00002700 }, /* GL_NEAREST_MIPMAP_NEAREST */ - { 28317, 0x00000200 }, /* GL_NEVER */ - { 28326, 0x00001102 }, /* GL_NICEST */ - { 28336, 0x00000000 }, /* GL_NONE */ - { 28344, 0x00000000 }, /* GL_NONE_OES */ - { 28356, 0x00001505 }, /* GL_NOOP */ - { 28364, 0x00001508 }, /* GL_NOR */ - { 28371, 0x00000BA1 }, /* GL_NORMALIZE */ - { 28384, 0x00008075 }, /* GL_NORMAL_ARRAY */ - { 28400, 0x00008897 }, /* GL_NORMAL_ARRAY_BUFFER_BINDING */ - { 28431, 0x00008897 }, /* GL_NORMAL_ARRAY_BUFFER_BINDING_ARB */ - { 28466, 0x0000808F }, /* GL_NORMAL_ARRAY_POINTER */ - { 28490, 0x0000807F }, /* GL_NORMAL_ARRAY_STRIDE */ - { 28513, 0x0000807E }, /* GL_NORMAL_ARRAY_TYPE */ - { 28534, 0x00008511 }, /* GL_NORMAL_MAP */ - { 28548, 0x00008511 }, /* GL_NORMAL_MAP_ARB */ - { 28566, 0x00008511 }, /* GL_NORMAL_MAP_NV */ - { 28583, 0x00008511 }, /* GL_NORMAL_MAP_OES */ - { 28601, 0x00000205 }, /* GL_NOTEQUAL */ - { 28613, 0x00000000 }, /* GL_NO_ERROR */ - { 28625, 0x00008261 }, /* GL_NO_RESET_NOTIFICATION_ARB */ - { 28654, 0x000086A2 }, /* GL_NUM_COMPRESSED_TEXTURE_FORMATS */ - { 28688, 0x000086A2 }, /* GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB */ - { 28726, 0x0000821D }, /* GL_NUM_EXTENSIONS */ - { 28744, 0x000087FE }, /* GL_NUM_PROGRAM_BINARY_FORMATS */ - { 28774, 0x000087FE }, /* GL_NUM_PROGRAM_BINARY_FORMATS_OES */ - { 28808, 0x00008DF9 }, /* GL_NUM_SHADER_BINARY_FORMATS */ - { 28837, 0x00008B89 }, /* GL_OBJECT_ACTIVE_ATTRIBUTES_ARB */ - { 28869, 0x00008B8A }, /* GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB */ - { 28911, 0x00008B86 }, /* GL_OBJECT_ACTIVE_UNIFORMS_ARB */ - { 28941, 0x00008B87 }, /* GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB */ - { 28981, 0x00008B85 }, /* GL_OBJECT_ATTACHED_OBJECTS_ARB */ - { 29012, 0x00008B81 }, /* GL_OBJECT_COMPILE_STATUS_ARB */ - { 29041, 0x00008B80 }, /* GL_OBJECT_DELETE_STATUS_ARB */ - { 29069, 0x00008B84 }, /* GL_OBJECT_INFO_LOG_LENGTH_ARB */ - { 29099, 0x00002401 }, /* GL_OBJECT_LINEAR */ - { 29116, 0x00008B82 }, /* GL_OBJECT_LINK_STATUS_ARB */ - { 29142, 0x00002501 }, /* GL_OBJECT_PLANE */ - { 29158, 0x00008B88 }, /* GL_OBJECT_SHADER_SOURCE_LENGTH_ARB */ - { 29193, 0x00008B4F }, /* GL_OBJECT_SUBTYPE_ARB */ - { 29215, 0x00009112 }, /* GL_OBJECT_TYPE */ - { 29230, 0x00008B4E }, /* GL_OBJECT_TYPE_ARB */ - { 29249, 0x00008B83 }, /* GL_OBJECT_VALIDATE_STATUS_ARB */ - { 29279, 0x00008165 }, /* GL_OCCLUSION_TEST_HP */ - { 29300, 0x00008166 }, /* GL_OCCLUSION_TEST_RESULT_HP */ - { 29328, 0x00000001 }, /* GL_ONE */ - { 29335, 0x00008004 }, /* GL_ONE_MINUS_CONSTANT_ALPHA */ - { 29363, 0x00008004 }, /* GL_ONE_MINUS_CONSTANT_ALPHA_EXT */ - { 29395, 0x00008002 }, /* GL_ONE_MINUS_CONSTANT_COLOR */ - { 29423, 0x00008002 }, /* GL_ONE_MINUS_CONSTANT_COLOR_EXT */ - { 29455, 0x00000305 }, /* GL_ONE_MINUS_DST_ALPHA */ - { 29478, 0x00000307 }, /* GL_ONE_MINUS_DST_COLOR */ - { 29501, 0x00000303 }, /* GL_ONE_MINUS_SRC_ALPHA */ - { 29524, 0x00000301 }, /* GL_ONE_MINUS_SRC_COLOR */ - { 29547, 0x00008598 }, /* GL_OPERAND0_ALPHA */ - { 29565, 0x00008598 }, /* GL_OPERAND0_ALPHA_ARB */ - { 29587, 0x00008598 }, /* GL_OPERAND0_ALPHA_EXT */ - { 29609, 0x00008590 }, /* GL_OPERAND0_RGB */ - { 29625, 0x00008590 }, /* GL_OPERAND0_RGB_ARB */ - { 29645, 0x00008590 }, /* GL_OPERAND0_RGB_EXT */ - { 29665, 0x00008599 }, /* GL_OPERAND1_ALPHA */ - { 29683, 0x00008599 }, /* GL_OPERAND1_ALPHA_ARB */ - { 29705, 0x00008599 }, /* GL_OPERAND1_ALPHA_EXT */ - { 29727, 0x00008591 }, /* GL_OPERAND1_RGB */ - { 29743, 0x00008591 }, /* GL_OPERAND1_RGB_ARB */ - { 29763, 0x00008591 }, /* GL_OPERAND1_RGB_EXT */ - { 29783, 0x0000859A }, /* GL_OPERAND2_ALPHA */ - { 29801, 0x0000859A }, /* GL_OPERAND2_ALPHA_ARB */ - { 29823, 0x0000859A }, /* GL_OPERAND2_ALPHA_EXT */ - { 29845, 0x00008592 }, /* GL_OPERAND2_RGB */ - { 29861, 0x00008592 }, /* GL_OPERAND2_RGB_ARB */ - { 29881, 0x00008592 }, /* GL_OPERAND2_RGB_EXT */ - { 29901, 0x0000859B }, /* GL_OPERAND3_ALPHA_NV */ - { 29922, 0x00008593 }, /* GL_OPERAND3_RGB_NV */ - { 29941, 0x00001507 }, /* GL_OR */ - { 29947, 0x00000A01 }, /* GL_ORDER */ - { 29956, 0x0000150D }, /* GL_OR_INVERTED */ - { 29971, 0x0000150B }, /* GL_OR_REVERSE */ - { 29985, 0x00000505 }, /* GL_OUT_OF_MEMORY */ - { 30002, 0x00000D05 }, /* GL_PACK_ALIGNMENT */ - { 30020, 0x0000806C }, /* GL_PACK_IMAGE_HEIGHT */ - { 30041, 0x00008758 }, /* GL_PACK_INVERT_MESA */ - { 30061, 0x00000D01 }, /* GL_PACK_LSB_FIRST */ - { 30079, 0x00000D02 }, /* GL_PACK_ROW_LENGTH */ - { 30098, 0x0000806B }, /* GL_PACK_SKIP_IMAGES */ - { 30118, 0x00000D04 }, /* GL_PACK_SKIP_PIXELS */ - { 30138, 0x00000D03 }, /* GL_PACK_SKIP_ROWS */ - { 30156, 0x00000D00 }, /* GL_PACK_SWAP_BYTES */ - { 30175, 0x00008B92 }, /* GL_PALETTE4_R5_G6_B5_OES */ - { 30200, 0x00008B94 }, /* GL_PALETTE4_RGB5_A1_OES */ - { 30224, 0x00008B90 }, /* GL_PALETTE4_RGB8_OES */ - { 30245, 0x00008B93 }, /* GL_PALETTE4_RGBA4_OES */ - { 30267, 0x00008B91 }, /* GL_PALETTE4_RGBA8_OES */ - { 30289, 0x00008B97 }, /* GL_PALETTE8_R5_G6_B5_OES */ - { 30314, 0x00008B99 }, /* GL_PALETTE8_RGB5_A1_OES */ - { 30338, 0x00008B95 }, /* GL_PALETTE8_RGB8_OES */ - { 30359, 0x00008B98 }, /* GL_PALETTE8_RGBA4_OES */ - { 30381, 0x00008B96 }, /* GL_PALETTE8_RGBA8_OES */ - { 30403, 0x00000700 }, /* GL_PASS_THROUGH_TOKEN */ - { 30425, 0x00000C50 }, /* GL_PERSPECTIVE_CORRECTION_HINT */ - { 30456, 0x00000C79 }, /* GL_PIXEL_MAP_A_TO_A */ - { 30476, 0x00000CB9 }, /* GL_PIXEL_MAP_A_TO_A_SIZE */ - { 30501, 0x00000C78 }, /* GL_PIXEL_MAP_B_TO_B */ - { 30521, 0x00000CB8 }, /* GL_PIXEL_MAP_B_TO_B_SIZE */ - { 30546, 0x00000C77 }, /* GL_PIXEL_MAP_G_TO_G */ - { 30566, 0x00000CB7 }, /* GL_PIXEL_MAP_G_TO_G_SIZE */ - { 30591, 0x00000C75 }, /* GL_PIXEL_MAP_I_TO_A */ - { 30611, 0x00000CB5 }, /* GL_PIXEL_MAP_I_TO_A_SIZE */ - { 30636, 0x00000C74 }, /* GL_PIXEL_MAP_I_TO_B */ - { 30656, 0x00000CB4 }, /* GL_PIXEL_MAP_I_TO_B_SIZE */ - { 30681, 0x00000C73 }, /* GL_PIXEL_MAP_I_TO_G */ - { 30701, 0x00000CB3 }, /* GL_PIXEL_MAP_I_TO_G_SIZE */ - { 30726, 0x00000C70 }, /* GL_PIXEL_MAP_I_TO_I */ - { 30746, 0x00000CB0 }, /* GL_PIXEL_MAP_I_TO_I_SIZE */ - { 30771, 0x00000C72 }, /* GL_PIXEL_MAP_I_TO_R */ - { 30791, 0x00000CB2 }, /* GL_PIXEL_MAP_I_TO_R_SIZE */ - { 30816, 0x00000C76 }, /* GL_PIXEL_MAP_R_TO_R */ - { 30836, 0x00000CB6 }, /* GL_PIXEL_MAP_R_TO_R_SIZE */ - { 30861, 0x00000C71 }, /* GL_PIXEL_MAP_S_TO_S */ - { 30881, 0x00000CB1 }, /* GL_PIXEL_MAP_S_TO_S_SIZE */ - { 30906, 0x00000020 }, /* GL_PIXEL_MODE_BIT */ - { 30924, 0x000088EB }, /* GL_PIXEL_PACK_BUFFER */ - { 30945, 0x000088ED }, /* GL_PIXEL_PACK_BUFFER_BINDING */ - { 30974, 0x000088ED }, /* GL_PIXEL_PACK_BUFFER_BINDING_EXT */ - { 31007, 0x000088EB }, /* GL_PIXEL_PACK_BUFFER_EXT */ - { 31032, 0x000088EC }, /* GL_PIXEL_UNPACK_BUFFER */ - { 31055, 0x000088EF }, /* GL_PIXEL_UNPACK_BUFFER_BINDING */ - { 31086, 0x000088EF }, /* GL_PIXEL_UNPACK_BUFFER_BINDING_EXT */ - { 31121, 0x000088EC }, /* GL_PIXEL_UNPACK_BUFFER_EXT */ - { 31148, 0x00001B00 }, /* GL_POINT */ - { 31157, 0x00000000 }, /* GL_POINTS */ - { 31167, 0x00000002 }, /* GL_POINT_BIT */ - { 31180, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION */ - { 31210, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION_ARB */ - { 31244, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION_EXT */ - { 31278, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION_SGIS */ - { 31313, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE */ - { 31342, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE_ARB */ - { 31375, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE_EXT */ - { 31408, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE_SGIS */ - { 31442, 0x00000B11 }, /* GL_POINT_SIZE */ - { 31456, 0x00008B9F }, /* GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES */ - { 31495, 0x00008B9C }, /* GL_POINT_SIZE_ARRAY_OES */ - { 31519, 0x0000898C }, /* GL_POINT_SIZE_ARRAY_POINTER_OES */ - { 31551, 0x0000898B }, /* GL_POINT_SIZE_ARRAY_STRIDE_OES */ - { 31582, 0x0000898A }, /* GL_POINT_SIZE_ARRAY_TYPE_OES */ - { 31611, 0x00000B13 }, /* GL_POINT_SIZE_GRANULARITY */ - { 31637, 0x00008127 }, /* GL_POINT_SIZE_MAX */ - { 31655, 0x00008127 }, /* GL_POINT_SIZE_MAX_ARB */ - { 31677, 0x00008127 }, /* GL_POINT_SIZE_MAX_EXT */ - { 31699, 0x00008127 }, /* GL_POINT_SIZE_MAX_SGIS */ - { 31722, 0x00008126 }, /* GL_POINT_SIZE_MIN */ - { 31740, 0x00008126 }, /* GL_POINT_SIZE_MIN_ARB */ - { 31762, 0x00008126 }, /* GL_POINT_SIZE_MIN_EXT */ - { 31784, 0x00008126 }, /* GL_POINT_SIZE_MIN_SGIS */ - { 31807, 0x00000B12 }, /* GL_POINT_SIZE_RANGE */ - { 31827, 0x00000B10 }, /* GL_POINT_SMOOTH */ - { 31843, 0x00000C51 }, /* GL_POINT_SMOOTH_HINT */ - { 31864, 0x00008861 }, /* GL_POINT_SPRITE */ - { 31880, 0x00008861 }, /* GL_POINT_SPRITE_ARB */ - { 31900, 0x00008CA0 }, /* GL_POINT_SPRITE_COORD_ORIGIN */ - { 31929, 0x00008861 }, /* GL_POINT_SPRITE_NV */ - { 31948, 0x00008861 }, /* GL_POINT_SPRITE_OES */ - { 31968, 0x00008863 }, /* GL_POINT_SPRITE_R_MODE_NV */ - { 31994, 0x00000701 }, /* GL_POINT_TOKEN */ - { 32009, 0x00000009 }, /* GL_POLYGON */ - { 32020, 0x00000008 }, /* GL_POLYGON_BIT */ - { 32035, 0x00000B40 }, /* GL_POLYGON_MODE */ - { 32051, 0x00008039 }, /* GL_POLYGON_OFFSET_BIAS */ - { 32074, 0x00008038 }, /* GL_POLYGON_OFFSET_FACTOR */ - { 32099, 0x00008037 }, /* GL_POLYGON_OFFSET_FILL */ - { 32122, 0x00002A02 }, /* GL_POLYGON_OFFSET_LINE */ - { 32145, 0x00002A01 }, /* GL_POLYGON_OFFSET_POINT */ - { 32169, 0x00002A00 }, /* GL_POLYGON_OFFSET_UNITS */ - { 32193, 0x00000B41 }, /* GL_POLYGON_SMOOTH */ - { 32211, 0x00000C53 }, /* GL_POLYGON_SMOOTH_HINT */ - { 32234, 0x00000B42 }, /* GL_POLYGON_STIPPLE */ - { 32253, 0x00000010 }, /* GL_POLYGON_STIPPLE_BIT */ - { 32276, 0x00000703 }, /* GL_POLYGON_TOKEN */ - { 32293, 0x00001203 }, /* GL_POSITION */ - { 32305, 0x000080BB }, /* GL_POST_COLOR_MATRIX_ALPHA_BIAS */ - { 32337, 0x000080BB }, /* GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI */ - { 32373, 0x000080B7 }, /* GL_POST_COLOR_MATRIX_ALPHA_SCALE */ - { 32406, 0x000080B7 }, /* GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI */ - { 32443, 0x000080BA }, /* GL_POST_COLOR_MATRIX_BLUE_BIAS */ - { 32474, 0x000080BA }, /* GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI */ - { 32509, 0x000080B6 }, /* GL_POST_COLOR_MATRIX_BLUE_SCALE */ - { 32541, 0x000080B6 }, /* GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI */ - { 32577, 0x000080D2 }, /* GL_POST_COLOR_MATRIX_COLOR_TABLE */ - { 32610, 0x000080B9 }, /* GL_POST_COLOR_MATRIX_GREEN_BIAS */ - { 32642, 0x000080B9 }, /* GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI */ - { 32678, 0x000080B5 }, /* GL_POST_COLOR_MATRIX_GREEN_SCALE */ - { 32711, 0x000080B5 }, /* GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI */ - { 32748, 0x000080B8 }, /* GL_POST_COLOR_MATRIX_RED_BIAS */ - { 32778, 0x000080B8 }, /* GL_POST_COLOR_MATRIX_RED_BIAS_SGI */ - { 32812, 0x000080B4 }, /* GL_POST_COLOR_MATRIX_RED_SCALE */ - { 32843, 0x000080B4 }, /* GL_POST_COLOR_MATRIX_RED_SCALE_SGI */ - { 32878, 0x00008023 }, /* GL_POST_CONVOLUTION_ALPHA_BIAS */ - { 32909, 0x00008023 }, /* GL_POST_CONVOLUTION_ALPHA_BIAS_EXT */ - { 32944, 0x0000801F }, /* GL_POST_CONVOLUTION_ALPHA_SCALE */ - { 32976, 0x0000801F }, /* GL_POST_CONVOLUTION_ALPHA_SCALE_EXT */ - { 33012, 0x00008022 }, /* GL_POST_CONVOLUTION_BLUE_BIAS */ - { 33042, 0x00008022 }, /* GL_POST_CONVOLUTION_BLUE_BIAS_EXT */ - { 33076, 0x0000801E }, /* GL_POST_CONVOLUTION_BLUE_SCALE */ - { 33107, 0x0000801E }, /* GL_POST_CONVOLUTION_BLUE_SCALE_EXT */ - { 33142, 0x000080D1 }, /* GL_POST_CONVOLUTION_COLOR_TABLE */ - { 33174, 0x00008021 }, /* GL_POST_CONVOLUTION_GREEN_BIAS */ - { 33205, 0x00008021 }, /* GL_POST_CONVOLUTION_GREEN_BIAS_EXT */ - { 33240, 0x0000801D }, /* GL_POST_CONVOLUTION_GREEN_SCALE */ - { 33272, 0x0000801D }, /* GL_POST_CONVOLUTION_GREEN_SCALE_EXT */ - { 33308, 0x00008020 }, /* GL_POST_CONVOLUTION_RED_BIAS */ - { 33337, 0x00008020 }, /* GL_POST_CONVOLUTION_RED_BIAS_EXT */ - { 33370, 0x0000801C }, /* GL_POST_CONVOLUTION_RED_SCALE */ - { 33400, 0x0000801C }, /* GL_POST_CONVOLUTION_RED_SCALE_EXT */ - { 33434, 0x0000817B }, /* GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX */ - { 33473, 0x00008179 }, /* GL_POST_TEXTURE_FILTER_BIAS_SGIX */ - { 33506, 0x0000817C }, /* GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX */ - { 33546, 0x0000817A }, /* GL_POST_TEXTURE_FILTER_SCALE_SGIX */ - { 33580, 0x00008578 }, /* GL_PREVIOUS */ - { 33592, 0x00008578 }, /* GL_PREVIOUS_ARB */ - { 33608, 0x00008578 }, /* GL_PREVIOUS_EXT */ - { 33624, 0x00008577 }, /* GL_PRIMARY_COLOR */ - { 33641, 0x00008577 }, /* GL_PRIMARY_COLOR_ARB */ - { 33662, 0x00008577 }, /* GL_PRIMARY_COLOR_EXT */ - { 33683, 0x00008C87 }, /* GL_PRIMITIVES_GENERATED */ - { 33707, 0x00008C87 }, /* GL_PRIMITIVES_GENERATED_EXT */ - { 33735, 0x00008F9D }, /* GL_PRIMITIVE_RESTART */ - { 33756, 0x00008F9E }, /* GL_PRIMITIVE_RESTART_INDEX */ - { 33783, 0x00008559 }, /* GL_PRIMITIVE_RESTART_INDEX_NV */ - { 33813, 0x00008558 }, /* GL_PRIMITIVE_RESTART_NV */ - { 33837, 0x000088B0 }, /* GL_PROGRAM_ADDRESS_REGISTERS_ARB */ - { 33870, 0x00008805 }, /* GL_PROGRAM_ALU_INSTRUCTIONS_ARB */ - { 33902, 0x000088AC }, /* GL_PROGRAM_ATTRIBS_ARB */ - { 33925, 0x000087FF }, /* GL_PROGRAM_BINARY_FORMATS */ - { 33951, 0x000087FF }, /* GL_PROGRAM_BINARY_FORMATS_OES */ - { 33981, 0x00008741 }, /* GL_PROGRAM_BINARY_LENGTH */ - { 34006, 0x00008741 }, /* GL_PROGRAM_BINARY_LENGTH_OES */ - { 34035, 0x00008257 }, /* GL_PROGRAM_BINARY_RETRIEVABLE_HINT */ - { 34070, 0x00008677 }, /* GL_PROGRAM_BINDING_ARB */ - { 34093, 0x0000864B }, /* GL_PROGRAM_ERROR_POSITION_ARB */ - { 34123, 0x0000864B }, /* GL_PROGRAM_ERROR_POSITION_NV */ - { 34152, 0x00008874 }, /* GL_PROGRAM_ERROR_STRING_ARB */ - { 34180, 0x00008876 }, /* GL_PROGRAM_FORMAT_ARB */ - { 34202, 0x00008875 }, /* GL_PROGRAM_FORMAT_ASCII_ARB */ - { 34230, 0x000088A0 }, /* GL_PROGRAM_INSTRUCTIONS_ARB */ - { 34258, 0x00008627 }, /* GL_PROGRAM_LENGTH_ARB */ - { 34280, 0x00008627 }, /* GL_PROGRAM_LENGTH_NV */ - { 34301, 0x000088B2 }, /* GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ - { 34341, 0x00008808 }, /* GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ - { 34380, 0x000088AE }, /* GL_PROGRAM_NATIVE_ATTRIBS_ARB */ - { 34410, 0x000088A2 }, /* GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ - { 34445, 0x000088AA }, /* GL_PROGRAM_NATIVE_PARAMETERS_ARB */ - { 34478, 0x000088A6 }, /* GL_PROGRAM_NATIVE_TEMPORARIES_ARB */ - { 34512, 0x0000880A }, /* GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ - { 34551, 0x00008809 }, /* GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ - { 34590, 0x00008B40 }, /* GL_PROGRAM_OBJECT_ARB */ - { 34612, 0x000088A8 }, /* GL_PROGRAM_PARAMETERS_ARB */ - { 34638, 0x00008644 }, /* GL_PROGRAM_PARAMETER_NV */ - { 34662, 0x00008642 }, /* GL_PROGRAM_POINT_SIZE */ - { 34684, 0x00008642 }, /* GL_PROGRAM_POINT_SIZE_ARB */ - { 34710, 0x00008647 }, /* GL_PROGRAM_RESIDENT_NV */ - { 34733, 0x00008628 }, /* GL_PROGRAM_STRING_ARB */ - { 34755, 0x00008628 }, /* GL_PROGRAM_STRING_NV */ - { 34776, 0x00008646 }, /* GL_PROGRAM_TARGET_NV */ - { 34797, 0x000088A4 }, /* GL_PROGRAM_TEMPORARIES_ARB */ - { 34824, 0x00008807 }, /* GL_PROGRAM_TEX_INDIRECTIONS_ARB */ - { 34856, 0x00008806 }, /* GL_PROGRAM_TEX_INSTRUCTIONS_ARB */ - { 34888, 0x000088B6 }, /* GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB */ - { 34923, 0x00001701 }, /* GL_PROJECTION */ - { 34937, 0x00000BA7 }, /* GL_PROJECTION_MATRIX */ - { 34958, 0x0000898E }, /* GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES */ - { 35001, 0x00000BA4 }, /* GL_PROJECTION_STACK_DEPTH */ - { 35027, 0x00008E4F }, /* GL_PROVOKING_VERTEX */ - { 35047, 0x00008E4F }, /* GL_PROVOKING_VERTEX_EXT */ - { 35071, 0x000080D3 }, /* GL_PROXY_COLOR_TABLE */ - { 35092, 0x00008025 }, /* GL_PROXY_HISTOGRAM */ - { 35111, 0x00008025 }, /* GL_PROXY_HISTOGRAM_EXT */ - { 35134, 0x000080D5 }, /* GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE */ - { 35173, 0x000080D4 }, /* GL_PROXY_POST_CONVOLUTION_COLOR_TABLE */ - { 35211, 0x00008063 }, /* GL_PROXY_TEXTURE_1D */ - { 35231, 0x00008C19 }, /* GL_PROXY_TEXTURE_1D_ARRAY */ - { 35257, 0x00008C19 }, /* GL_PROXY_TEXTURE_1D_ARRAY_EXT */ - { 35287, 0x00008063 }, /* GL_PROXY_TEXTURE_1D_EXT */ - { 35311, 0x00008064 }, /* GL_PROXY_TEXTURE_2D */ - { 35331, 0x00008C1B }, /* GL_PROXY_TEXTURE_2D_ARRAY */ - { 35357, 0x00008C1B }, /* GL_PROXY_TEXTURE_2D_ARRAY_EXT */ - { 35387, 0x00008064 }, /* GL_PROXY_TEXTURE_2D_EXT */ - { 35411, 0x00008070 }, /* GL_PROXY_TEXTURE_3D */ - { 35431, 0x000080BD }, /* GL_PROXY_TEXTURE_COLOR_TABLE_SGI */ - { 35464, 0x0000851B }, /* GL_PROXY_TEXTURE_CUBE_MAP */ - { 35490, 0x0000851B }, /* GL_PROXY_TEXTURE_CUBE_MAP_ARB */ - { 35520, 0x000084F7 }, /* GL_PROXY_TEXTURE_RECTANGLE */ - { 35547, 0x000084F7 }, /* GL_PROXY_TEXTURE_RECTANGLE_ARB */ - { 35578, 0x000084F7 }, /* GL_PROXY_TEXTURE_RECTANGLE_NV */ - { 35608, 0x00008A1D }, /* GL_PURGEABLE_APPLE */ - { 35627, 0x00002003 }, /* GL_Q */ - { 35632, 0x00001209 }, /* GL_QUADRATIC_ATTENUATION */ - { 35657, 0x00000007 }, /* GL_QUADS */ - { 35666, 0x00008E4C }, /* GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION */ - { 35710, 0x00008E4C }, /* GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT */ - { 35758, 0x00008614 }, /* GL_QUAD_MESH_SUN */ - { 35775, 0x00000008 }, /* GL_QUAD_STRIP */ - { 35789, 0x00008E16 }, /* GL_QUERY_BY_REGION_NO_WAIT */ - { 35816, 0x00008E16 }, /* GL_QUERY_BY_REGION_NO_WAIT_NV */ - { 35846, 0x00008E15 }, /* GL_QUERY_BY_REGION_WAIT */ - { 35870, 0x00008E15 }, /* GL_QUERY_BY_REGION_WAIT_NV */ - { 35897, 0x00008864 }, /* GL_QUERY_COUNTER_BITS */ - { 35919, 0x00008864 }, /* GL_QUERY_COUNTER_BITS_ARB */ - { 35945, 0x00008E14 }, /* GL_QUERY_NO_WAIT */ - { 35962, 0x00008E14 }, /* GL_QUERY_NO_WAIT_NV */ - { 35982, 0x00008866 }, /* GL_QUERY_RESULT */ - { 35998, 0x00008866 }, /* GL_QUERY_RESULT_ARB */ - { 36018, 0x00008867 }, /* GL_QUERY_RESULT_AVAILABLE */ - { 36044, 0x00008867 }, /* GL_QUERY_RESULT_AVAILABLE_ARB */ - { 36074, 0x00008E13 }, /* GL_QUERY_WAIT */ - { 36088, 0x00008E13 }, /* GL_QUERY_WAIT_NV */ - { 36105, 0x00002002 }, /* GL_R */ - { 36110, 0x00008C3A }, /* GL_R11F_G11F_B10F */ - { 36128, 0x00008F98 }, /* GL_R16_SNORM */ - { 36141, 0x00002A10 }, /* GL_R3_G3_B2 */ - { 36153, 0x00008F94 }, /* GL_R8_SNORM */ - { 36165, 0x00008C89 }, /* GL_RASTERIZER_DISCARD */ - { 36187, 0x00008C89 }, /* GL_RASTERIZER_DISCARD_EXT */ - { 36213, 0x00019262 }, /* GL_RASTER_POSITION_UNCLIPPED_IBM */ - { 36246, 0x00000C02 }, /* GL_READ_BUFFER */ - { 36261, 0x00008CA8 }, /* GL_READ_FRAMEBUFFER */ - { 36281, 0x00008CAA }, /* GL_READ_FRAMEBUFFER_BINDING */ - { 36309, 0x00008CAA }, /* GL_READ_FRAMEBUFFER_BINDING_EXT */ - { 36341, 0x00008CA8 }, /* GL_READ_FRAMEBUFFER_EXT */ - { 36365, 0x000088B8 }, /* GL_READ_ONLY */ - { 36378, 0x000088B8 }, /* GL_READ_ONLY_ARB */ - { 36395, 0x000088BA }, /* GL_READ_WRITE */ - { 36409, 0x000088BA }, /* GL_READ_WRITE_ARB */ - { 36427, 0x00001903 }, /* GL_RED */ - { 36434, 0x00008016 }, /* GL_REDUCE */ - { 36444, 0x00008016 }, /* GL_REDUCE_EXT */ - { 36458, 0x00000D15 }, /* GL_RED_BIAS */ - { 36470, 0x00000D52 }, /* GL_RED_BITS */ - { 36482, 0x00008D94 }, /* GL_RED_INTEGER */ - { 36497, 0x00008D94 }, /* GL_RED_INTEGER_EXT */ - { 36516, 0x00000D14 }, /* GL_RED_SCALE */ - { 36529, 0x00008F90 }, /* GL_RED_SNORM */ - { 36542, 0x00008512 }, /* GL_REFLECTION_MAP */ - { 36560, 0x00008512 }, /* GL_REFLECTION_MAP_ARB */ - { 36582, 0x00008512 }, /* GL_REFLECTION_MAP_NV */ - { 36603, 0x00008512 }, /* GL_REFLECTION_MAP_OES */ - { 36625, 0x00008A19 }, /* GL_RELEASED_APPLE */ - { 36643, 0x00001C00 }, /* GL_RENDER */ - { 36653, 0x00008D41 }, /* GL_RENDERBUFFER */ - { 36669, 0x00008D53 }, /* GL_RENDERBUFFER_ALPHA_SIZE */ - { 36696, 0x00008D53 }, /* GL_RENDERBUFFER_ALPHA_SIZE_OES */ - { 36727, 0x00008CA7 }, /* GL_RENDERBUFFER_BINDING */ - { 36751, 0x00008CA7 }, /* GL_RENDERBUFFER_BINDING_EXT */ - { 36779, 0x00008CA7 }, /* GL_RENDERBUFFER_BINDING_OES */ - { 36807, 0x00008D52 }, /* GL_RENDERBUFFER_BLUE_SIZE */ - { 36833, 0x00008D52 }, /* GL_RENDERBUFFER_BLUE_SIZE_OES */ - { 36863, 0x00008D54 }, /* GL_RENDERBUFFER_DEPTH_SIZE */ - { 36890, 0x00008D54 }, /* GL_RENDERBUFFER_DEPTH_SIZE_OES */ - { 36921, 0x00008D41 }, /* GL_RENDERBUFFER_EXT */ - { 36941, 0x00008D51 }, /* GL_RENDERBUFFER_GREEN_SIZE */ - { 36968, 0x00008D51 }, /* GL_RENDERBUFFER_GREEN_SIZE_OES */ - { 36999, 0x00008D43 }, /* GL_RENDERBUFFER_HEIGHT */ - { 37022, 0x00008D43 }, /* GL_RENDERBUFFER_HEIGHT_EXT */ - { 37049, 0x00008D43 }, /* GL_RENDERBUFFER_HEIGHT_OES */ - { 37076, 0x00008D44 }, /* GL_RENDERBUFFER_INTERNAL_FORMAT */ - { 37108, 0x00008D44 }, /* GL_RENDERBUFFER_INTERNAL_FORMAT_EXT */ - { 37144, 0x00008D44 }, /* GL_RENDERBUFFER_INTERNAL_FORMAT_OES */ - { 37180, 0x00008D41 }, /* GL_RENDERBUFFER_OES */ - { 37200, 0x00008D50 }, /* GL_RENDERBUFFER_RED_SIZE */ - { 37225, 0x00008D50 }, /* GL_RENDERBUFFER_RED_SIZE_OES */ - { 37254, 0x00008CAB }, /* GL_RENDERBUFFER_SAMPLES */ - { 37278, 0x00008CAB }, /* GL_RENDERBUFFER_SAMPLES_EXT */ - { 37306, 0x00008D55 }, /* GL_RENDERBUFFER_STENCIL_SIZE */ - { 37335, 0x00008D55 }, /* GL_RENDERBUFFER_STENCIL_SIZE_OES */ - { 37368, 0x00008D42 }, /* GL_RENDERBUFFER_WIDTH */ - { 37390, 0x00008D42 }, /* GL_RENDERBUFFER_WIDTH_EXT */ - { 37416, 0x00008D42 }, /* GL_RENDERBUFFER_WIDTH_OES */ - { 37442, 0x00001F01 }, /* GL_RENDERER */ - { 37454, 0x00000C40 }, /* GL_RENDER_MODE */ - { 37469, 0x00002901 }, /* GL_REPEAT */ - { 37479, 0x00001E01 }, /* GL_REPLACE */ - { 37490, 0x00008062 }, /* GL_REPLACE_EXT */ - { 37505, 0x00008153 }, /* GL_REPLICATE_BORDER_HP */ - { 37528, 0x00008D68 }, /* GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES */ - { 37564, 0x0000803A }, /* GL_RESCALE_NORMAL */ - { 37582, 0x0000803A }, /* GL_RESCALE_NORMAL_EXT */ - { 37604, 0x00008256 }, /* GL_RESET_NOTIFICATION_STRATEGY_ARB */ - { 37639, 0x00008A1B }, /* GL_RETAINED_APPLE */ - { 37657, 0x00000102 }, /* GL_RETURN */ - { 37667, 0x00008F99 }, /* GL_RG16_SNORM */ - { 37681, 0x00008F95 }, /* GL_RG8_SNORM */ - { 37694, 0x00001907 }, /* GL_RGB */ - { 37701, 0x00008052 }, /* GL_RGB10 */ - { 37710, 0x00008059 }, /* GL_RGB10_A2 */ - { 37722, 0x0000906F }, /* GL_RGB10_A2UI */ - { 37736, 0x00008059 }, /* GL_RGB10_A2_EXT */ - { 37752, 0x00008052 }, /* GL_RGB10_EXT */ - { 37765, 0x00008053 }, /* GL_RGB12 */ - { 37774, 0x00008053 }, /* GL_RGB12_EXT */ - { 37787, 0x00008054 }, /* GL_RGB16 */ - { 37796, 0x0000881B }, /* GL_RGB16F */ - { 37806, 0x00008D89 }, /* GL_RGB16I */ - { 37816, 0x00008D89 }, /* GL_RGB16I_EXT */ - { 37830, 0x00008D77 }, /* GL_RGB16UI */ - { 37841, 0x00008D77 }, /* GL_RGB16UI_EXT */ - { 37856, 0x00008054 }, /* GL_RGB16_EXT */ - { 37869, 0x00008F9A }, /* GL_RGB16_SNORM */ - { 37884, 0x0000804E }, /* GL_RGB2_EXT */ - { 37896, 0x00008815 }, /* GL_RGB32F */ - { 37906, 0x00008D83 }, /* GL_RGB32I */ - { 37916, 0x00008D83 }, /* GL_RGB32I_EXT */ - { 37930, 0x00008D71 }, /* GL_RGB32UI */ - { 37941, 0x00008D71 }, /* GL_RGB32UI_EXT */ - { 37956, 0x0000804F }, /* GL_RGB4 */ - { 37964, 0x0000804F }, /* GL_RGB4_EXT */ - { 37976, 0x000083A1 }, /* GL_RGB4_S3TC */ - { 37989, 0x00008050 }, /* GL_RGB5 */ - { 37997, 0x00008D62 }, /* GL_RGB565 */ - { 38007, 0x00008D62 }, /* GL_RGB565_OES */ - { 38021, 0x00008057 }, /* GL_RGB5_A1 */ - { 38032, 0x00008057 }, /* GL_RGB5_A1_EXT */ - { 38047, 0x00008057 }, /* GL_RGB5_A1_OES */ - { 38062, 0x00008050 }, /* GL_RGB5_EXT */ - { 38074, 0x00008051 }, /* GL_RGB8 */ - { 38082, 0x00008D8F }, /* GL_RGB8I */ - { 38091, 0x00008D8F }, /* GL_RGB8I_EXT */ - { 38104, 0x00008D7D }, /* GL_RGB8UI */ - { 38114, 0x00008D7D }, /* GL_RGB8UI_EXT */ - { 38128, 0x00008051 }, /* GL_RGB8_EXT */ - { 38140, 0x00008051 }, /* GL_RGB8_OES */ - { 38152, 0x00008F96 }, /* GL_RGB8_SNORM */ - { 38166, 0x00008C3D }, /* GL_RGB9_E5 */ - { 38177, 0x00001908 }, /* GL_RGBA */ - { 38185, 0x0000805A }, /* GL_RGBA12 */ - { 38195, 0x0000805A }, /* GL_RGBA12_EXT */ - { 38209, 0x0000805B }, /* GL_RGBA16 */ - { 38219, 0x0000881A }, /* GL_RGBA16F */ - { 38230, 0x00008D88 }, /* GL_RGBA16I */ - { 38241, 0x00008D88 }, /* GL_RGBA16I_EXT */ - { 38256, 0x00008D76 }, /* GL_RGBA16UI */ - { 38268, 0x00008D76 }, /* GL_RGBA16UI_EXT */ - { 38284, 0x0000805B }, /* GL_RGBA16_EXT */ - { 38298, 0x00008F9B }, /* GL_RGBA16_SNORM */ - { 38314, 0x00008055 }, /* GL_RGBA2 */ - { 38323, 0x00008055 }, /* GL_RGBA2_EXT */ - { 38336, 0x00008814 }, /* GL_RGBA32F */ - { 38347, 0x00008D82 }, /* GL_RGBA32I */ - { 38358, 0x00008D82 }, /* GL_RGBA32I_EXT */ - { 38373, 0x00008D70 }, /* GL_RGBA32UI */ - { 38385, 0x00008D70 }, /* GL_RGBA32UI_EXT */ - { 38401, 0x00008056 }, /* GL_RGBA4 */ - { 38410, 0x000083A5 }, /* GL_RGBA4_DXT5_S3TC */ - { 38429, 0x00008056 }, /* GL_RGBA4_EXT */ - { 38442, 0x00008056 }, /* GL_RGBA4_OES */ - { 38455, 0x000083A3 }, /* GL_RGBA4_S3TC */ - { 38469, 0x00008058 }, /* GL_RGBA8 */ - { 38478, 0x00008D8E }, /* GL_RGBA8I */ - { 38488, 0x00008D8E }, /* GL_RGBA8I_EXT */ - { 38502, 0x00008D7C }, /* GL_RGBA8UI */ - { 38513, 0x00008D7C }, /* GL_RGBA8UI_EXT */ - { 38528, 0x00008058 }, /* GL_RGBA8_EXT */ - { 38541, 0x00008058 }, /* GL_RGBA8_OES */ - { 38554, 0x00008F97 }, /* GL_RGBA8_SNORM */ - { 38569, 0x000083A4 }, /* GL_RGBA_DXT5_S3TC */ - { 38587, 0x00008820 }, /* GL_RGBA_FLOAT_MODE_ARB */ - { 38610, 0x00008D99 }, /* GL_RGBA_INTEGER */ - { 38626, 0x00008D99 }, /* GL_RGBA_INTEGER_EXT */ - { 38646, 0x00008D9E }, /* GL_RGBA_INTEGER_MODE_EXT */ - { 38671, 0x00000C31 }, /* GL_RGBA_MODE */ - { 38684, 0x000083A2 }, /* GL_RGBA_S3TC */ - { 38697, 0x00008F93 }, /* GL_RGBA_SNORM */ - { 38711, 0x00008D98 }, /* GL_RGB_INTEGER */ - { 38726, 0x00008D98 }, /* GL_RGB_INTEGER_EXT */ - { 38745, 0x000083A0 }, /* GL_RGB_S3TC */ - { 38757, 0x00008573 }, /* GL_RGB_SCALE */ - { 38770, 0x00008573 }, /* GL_RGB_SCALE_ARB */ - { 38787, 0x00008573 }, /* GL_RGB_SCALE_EXT */ - { 38804, 0x00008F92 }, /* GL_RGB_SNORM */ - { 38817, 0x00008F91 }, /* GL_RG_SNORM */ - { 38829, 0x00000407 }, /* GL_RIGHT */ - { 38838, 0x00002000 }, /* GL_S */ - { 38843, 0x00008B5D }, /* GL_SAMPLER_1D */ - { 38857, 0x00008DC0 }, /* GL_SAMPLER_1D_ARRAY */ - { 38877, 0x00008DC0 }, /* GL_SAMPLER_1D_ARRAY_EXT */ - { 38901, 0x00008DC3 }, /* GL_SAMPLER_1D_ARRAY_SHADOW */ - { 38928, 0x00008DC3 }, /* GL_SAMPLER_1D_ARRAY_SHADOW_EXT */ - { 38959, 0x00008B61 }, /* GL_SAMPLER_1D_SHADOW */ - { 38980, 0x00008B5E }, /* GL_SAMPLER_2D */ - { 38994, 0x00008DC1 }, /* GL_SAMPLER_2D_ARRAY */ - { 39014, 0x00008DC1 }, /* GL_SAMPLER_2D_ARRAY_EXT */ - { 39038, 0x00008DC4 }, /* GL_SAMPLER_2D_ARRAY_SHADOW */ - { 39065, 0x00008DC4 }, /* GL_SAMPLER_2D_ARRAY_SHADOW_EXT */ - { 39096, 0x00008B63 }, /* GL_SAMPLER_2D_RECT */ - { 39115, 0x00008B64 }, /* GL_SAMPLER_2D_RECT_SHADOW */ - { 39141, 0x00008B62 }, /* GL_SAMPLER_2D_SHADOW */ - { 39162, 0x00008B5F }, /* GL_SAMPLER_3D */ - { 39176, 0x00008B5F }, /* GL_SAMPLER_3D_OES */ - { 39194, 0x00008919 }, /* GL_SAMPLER_BINDING */ - { 39213, 0x00008DC2 }, /* GL_SAMPLER_BUFFER */ - { 39231, 0x00008DC2 }, /* GL_SAMPLER_BUFFER_EXT */ - { 39253, 0x00008B60 }, /* GL_SAMPLER_CUBE */ - { 39269, 0x00008DC5 }, /* GL_SAMPLER_CUBE_SHADOW */ - { 39292, 0x00008DC5 }, /* GL_SAMPLER_CUBE_SHADOW_EXT */ - { 39319, 0x00008D66 }, /* GL_SAMPLER_EXTERNAL_OES */ - { 39343, 0x000080A9 }, /* GL_SAMPLES */ - { 39354, 0x000086B4 }, /* GL_SAMPLES_3DFX */ - { 39370, 0x000080A9 }, /* GL_SAMPLES_ARB */ - { 39385, 0x00008914 }, /* GL_SAMPLES_PASSED */ - { 39403, 0x00008914 }, /* GL_SAMPLES_PASSED_ARB */ - { 39425, 0x0000809E }, /* GL_SAMPLE_ALPHA_TO_COVERAGE */ - { 39453, 0x0000809E }, /* GL_SAMPLE_ALPHA_TO_COVERAGE_ARB */ - { 39485, 0x0000809F }, /* GL_SAMPLE_ALPHA_TO_ONE */ - { 39508, 0x0000809F }, /* GL_SAMPLE_ALPHA_TO_ONE_ARB */ - { 39535, 0x000080A8 }, /* GL_SAMPLE_BUFFERS */ - { 39553, 0x000086B3 }, /* GL_SAMPLE_BUFFERS_3DFX */ - { 39576, 0x000080A8 }, /* GL_SAMPLE_BUFFERS_ARB */ - { 39598, 0x000080A0 }, /* GL_SAMPLE_COVERAGE */ - { 39617, 0x000080A0 }, /* GL_SAMPLE_COVERAGE_ARB */ - { 39640, 0x000080AB }, /* GL_SAMPLE_COVERAGE_INVERT */ - { 39666, 0x000080AB }, /* GL_SAMPLE_COVERAGE_INVERT_ARB */ - { 39696, 0x000080AA }, /* GL_SAMPLE_COVERAGE_VALUE */ - { 39721, 0x000080AA }, /* GL_SAMPLE_COVERAGE_VALUE_ARB */ - { 39750, 0x00080000 }, /* GL_SCISSOR_BIT */ - { 39765, 0x00000C10 }, /* GL_SCISSOR_BOX */ - { 39780, 0x00000C11 }, /* GL_SCISSOR_TEST */ - { 39796, 0x0000845E }, /* GL_SECONDARY_COLOR_ARRAY */ - { 39821, 0x0000889C }, /* GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING */ - { 39861, 0x0000889C }, /* GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB */ - { 39905, 0x0000845D }, /* GL_SECONDARY_COLOR_ARRAY_POINTER */ - { 39938, 0x0000845A }, /* GL_SECONDARY_COLOR_ARRAY_SIZE */ - { 39968, 0x0000845C }, /* GL_SECONDARY_COLOR_ARRAY_STRIDE */ - { 40000, 0x0000845B }, /* GL_SECONDARY_COLOR_ARRAY_TYPE */ - { 40030, 0x00001C02 }, /* GL_SELECT */ - { 40040, 0x00000DF3 }, /* GL_SELECTION_BUFFER_POINTER */ - { 40068, 0x00000DF4 }, /* GL_SELECTION_BUFFER_SIZE */ - { 40093, 0x00008012 }, /* GL_SEPARABLE_2D */ - { 40109, 0x00008C8D }, /* GL_SEPARATE_ATTRIBS */ - { 40129, 0x00008C8D }, /* GL_SEPARATE_ATTRIBS_EXT */ - { 40153, 0x000081FA }, /* GL_SEPARATE_SPECULAR_COLOR */ - { 40180, 0x000081FA }, /* GL_SEPARATE_SPECULAR_COLOR_EXT */ - { 40211, 0x0000150F }, /* GL_SET */ - { 40218, 0x00008DF8 }, /* GL_SHADER_BINARY_FORMATS */ - { 40243, 0x00008DFA }, /* GL_SHADER_COMPILER */ - { 40262, 0x00008B48 }, /* GL_SHADER_OBJECT_ARB */ - { 40283, 0x00008B88 }, /* GL_SHADER_SOURCE_LENGTH */ - { 40307, 0x00008B4F }, /* GL_SHADER_TYPE */ - { 40322, 0x00000B54 }, /* GL_SHADE_MODEL */ - { 40337, 0x00008B8C }, /* GL_SHADING_LANGUAGE_VERSION */ - { 40365, 0x000080BF }, /* GL_SHADOW_AMBIENT_SGIX */ - { 40388, 0x000081FB }, /* GL_SHARED_TEXTURE_PALETTE_EXT */ - { 40418, 0x00001601 }, /* GL_SHININESS */ - { 40431, 0x00001402 }, /* GL_SHORT */ - { 40440, 0x00009119 }, /* GL_SIGNALED */ - { 40452, 0x00008F9C }, /* GL_SIGNED_NORMALIZED */ - { 40473, 0x000081F9 }, /* GL_SINGLE_COLOR */ - { 40489, 0x000081F9 }, /* GL_SINGLE_COLOR_EXT */ - { 40509, 0x000085CC }, /* GL_SLICE_ACCUM_SUN */ - { 40528, 0x00008C46 }, /* GL_SLUMINANCE */ - { 40542, 0x00008C47 }, /* GL_SLUMINANCE8 */ - { 40557, 0x00008C45 }, /* GL_SLUMINANCE8_ALPHA8 */ - { 40579, 0x00008C44 }, /* GL_SLUMINANCE_ALPHA */ - { 40599, 0x00001D01 }, /* GL_SMOOTH */ - { 40609, 0x00000B23 }, /* GL_SMOOTH_LINE_WIDTH_GRANULARITY */ - { 40642, 0x00000B22 }, /* GL_SMOOTH_LINE_WIDTH_RANGE */ - { 40669, 0x00000B13 }, /* GL_SMOOTH_POINT_SIZE_GRANULARITY */ - { 40702, 0x00000B12 }, /* GL_SMOOTH_POINT_SIZE_RANGE */ - { 40729, 0x00008588 }, /* GL_SOURCE0_ALPHA */ - { 40746, 0x00008588 }, /* GL_SOURCE0_ALPHA_ARB */ - { 40767, 0x00008588 }, /* GL_SOURCE0_ALPHA_EXT */ - { 40788, 0x00008580 }, /* GL_SOURCE0_RGB */ - { 40803, 0x00008580 }, /* GL_SOURCE0_RGB_ARB */ - { 40822, 0x00008580 }, /* GL_SOURCE0_RGB_EXT */ - { 40841, 0x00008589 }, /* GL_SOURCE1_ALPHA */ - { 40858, 0x00008589 }, /* GL_SOURCE1_ALPHA_ARB */ - { 40879, 0x00008589 }, /* GL_SOURCE1_ALPHA_EXT */ - { 40900, 0x00008581 }, /* GL_SOURCE1_RGB */ - { 40915, 0x00008581 }, /* GL_SOURCE1_RGB_ARB */ - { 40934, 0x00008581 }, /* GL_SOURCE1_RGB_EXT */ - { 40953, 0x0000858A }, /* GL_SOURCE2_ALPHA */ - { 40970, 0x0000858A }, /* GL_SOURCE2_ALPHA_ARB */ - { 40991, 0x0000858A }, /* GL_SOURCE2_ALPHA_EXT */ - { 41012, 0x00008582 }, /* GL_SOURCE2_RGB */ - { 41027, 0x00008582 }, /* GL_SOURCE2_RGB_ARB */ - { 41046, 0x00008582 }, /* GL_SOURCE2_RGB_EXT */ - { 41065, 0x0000858B }, /* GL_SOURCE3_ALPHA_NV */ - { 41085, 0x00008583 }, /* GL_SOURCE3_RGB_NV */ - { 41103, 0x00001202 }, /* GL_SPECULAR */ - { 41115, 0x00002402 }, /* GL_SPHERE_MAP */ - { 41129, 0x00001206 }, /* GL_SPOT_CUTOFF */ - { 41144, 0x00001204 }, /* GL_SPOT_DIRECTION */ - { 41162, 0x00001205 }, /* GL_SPOT_EXPONENT */ - { 41179, 0x00008588 }, /* GL_SRC0_ALPHA */ - { 41193, 0x00008580 }, /* GL_SRC0_RGB */ - { 41205, 0x00008589 }, /* GL_SRC1_ALPHA */ - { 41219, 0x00008581 }, /* GL_SRC1_RGB */ - { 41231, 0x0000858A }, /* GL_SRC2_ALPHA */ - { 41245, 0x00008582 }, /* GL_SRC2_RGB */ - { 41257, 0x00000302 }, /* GL_SRC_ALPHA */ - { 41270, 0x00000308 }, /* GL_SRC_ALPHA_SATURATE */ - { 41292, 0x00000300 }, /* GL_SRC_COLOR */ - { 41305, 0x00008C40 }, /* GL_SRGB */ - { 41313, 0x00008C41 }, /* GL_SRGB8 */ - { 41322, 0x00008C43 }, /* GL_SRGB8_ALPHA8 */ - { 41338, 0x00008C42 }, /* GL_SRGB_ALPHA */ - { 41352, 0x00000503 }, /* GL_STACK_OVERFLOW */ - { 41370, 0x00000504 }, /* GL_STACK_UNDERFLOW */ - { 41389, 0x000088E6 }, /* GL_STATIC_COPY */ - { 41404, 0x000088E6 }, /* GL_STATIC_COPY_ARB */ - { 41423, 0x000088E4 }, /* GL_STATIC_DRAW */ - { 41438, 0x000088E4 }, /* GL_STATIC_DRAW_ARB */ - { 41457, 0x000088E5 }, /* GL_STATIC_READ */ - { 41472, 0x000088E5 }, /* GL_STATIC_READ_ARB */ - { 41491, 0x00001802 }, /* GL_STENCIL */ - { 41502, 0x00008D20 }, /* GL_STENCIL_ATTACHMENT */ - { 41524, 0x00008D20 }, /* GL_STENCIL_ATTACHMENT_EXT */ - { 41550, 0x00008D20 }, /* GL_STENCIL_ATTACHMENT_OES */ - { 41576, 0x00008801 }, /* GL_STENCIL_BACK_FAIL */ - { 41597, 0x00008801 }, /* GL_STENCIL_BACK_FAIL_ATI */ - { 41622, 0x00008800 }, /* GL_STENCIL_BACK_FUNC */ - { 41643, 0x00008800 }, /* GL_STENCIL_BACK_FUNC_ATI */ - { 41668, 0x00008802 }, /* GL_STENCIL_BACK_PASS_DEPTH_FAIL */ - { 41700, 0x00008802 }, /* GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI */ - { 41736, 0x00008803 }, /* GL_STENCIL_BACK_PASS_DEPTH_PASS */ - { 41768, 0x00008803 }, /* GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI */ - { 41804, 0x00008CA3 }, /* GL_STENCIL_BACK_REF */ - { 41824, 0x00008CA4 }, /* GL_STENCIL_BACK_VALUE_MASK */ - { 41851, 0x00008CA5 }, /* GL_STENCIL_BACK_WRITEMASK */ - { 41877, 0x00000D57 }, /* GL_STENCIL_BITS */ - { 41893, 0x00008224 }, /* GL_STENCIL_BUFFER */ - { 41911, 0x00000400 }, /* GL_STENCIL_BUFFER_BIT */ - { 41933, 0x00000B91 }, /* GL_STENCIL_CLEAR_VALUE */ - { 41956, 0x00000B94 }, /* GL_STENCIL_FAIL */ - { 41972, 0x00000B92 }, /* GL_STENCIL_FUNC */ - { 41988, 0x00001901 }, /* GL_STENCIL_INDEX */ - { 42005, 0x00008D46 }, /* GL_STENCIL_INDEX1 */ - { 42023, 0x00008D49 }, /* GL_STENCIL_INDEX16 */ - { 42042, 0x00008D49 }, /* GL_STENCIL_INDEX16_EXT */ - { 42065, 0x00008D46 }, /* GL_STENCIL_INDEX1_EXT */ - { 42087, 0x00008D46 }, /* GL_STENCIL_INDEX1_OES */ - { 42109, 0x00008D47 }, /* GL_STENCIL_INDEX4 */ - { 42127, 0x00008D47 }, /* GL_STENCIL_INDEX4_EXT */ - { 42149, 0x00008D47 }, /* GL_STENCIL_INDEX4_OES */ - { 42171, 0x00008D48 }, /* GL_STENCIL_INDEX8 */ - { 42189, 0x00008D48 }, /* GL_STENCIL_INDEX8_EXT */ - { 42211, 0x00008D48 }, /* GL_STENCIL_INDEX8_OES */ - { 42233, 0x00008D45 }, /* GL_STENCIL_INDEX_EXT */ - { 42254, 0x00000B95 }, /* GL_STENCIL_PASS_DEPTH_FAIL */ - { 42281, 0x00000B96 }, /* GL_STENCIL_PASS_DEPTH_PASS */ - { 42308, 0x00000B97 }, /* GL_STENCIL_REF */ - { 42323, 0x00000B90 }, /* GL_STENCIL_TEST */ - { 42339, 0x00008910 }, /* GL_STENCIL_TEST_TWO_SIDE_EXT */ - { 42368, 0x00000B93 }, /* GL_STENCIL_VALUE_MASK */ - { 42390, 0x00000B98 }, /* GL_STENCIL_WRITEMASK */ - { 42411, 0x00000C33 }, /* GL_STEREO */ - { 42421, 0x000085BE }, /* GL_STORAGE_CACHED_APPLE */ - { 42445, 0x000085BD }, /* GL_STORAGE_PRIVATE_APPLE */ - { 42470, 0x000085BF }, /* GL_STORAGE_SHARED_APPLE */ - { 42494, 0x000088E2 }, /* GL_STREAM_COPY */ - { 42509, 0x000088E2 }, /* GL_STREAM_COPY_ARB */ - { 42528, 0x000088E0 }, /* GL_STREAM_DRAW */ - { 42543, 0x000088E0 }, /* GL_STREAM_DRAW_ARB */ - { 42562, 0x000088E1 }, /* GL_STREAM_READ */ - { 42577, 0x000088E1 }, /* GL_STREAM_READ_ARB */ - { 42596, 0x00000D50 }, /* GL_SUBPIXEL_BITS */ - { 42613, 0x000084E7 }, /* GL_SUBTRACT */ - { 42625, 0x000084E7 }, /* GL_SUBTRACT_ARB */ - { 42641, 0x00009113 }, /* GL_SYNC_CONDITION */ - { 42659, 0x00009116 }, /* GL_SYNC_FENCE */ - { 42673, 0x00009115 }, /* GL_SYNC_FLAGS */ - { 42687, 0x00000001 }, /* GL_SYNC_FLUSH_COMMANDS_BIT */ - { 42714, 0x00009117 }, /* GL_SYNC_GPU_COMMANDS_COMPLETE */ - { 42744, 0x00009114 }, /* GL_SYNC_STATUS */ - { 42759, 0x00002001 }, /* GL_T */ - { 42764, 0x00002A2A }, /* GL_T2F_C3F_V3F */ - { 42779, 0x00002A2C }, /* GL_T2F_C4F_N3F_V3F */ - { 42798, 0x00002A29 }, /* GL_T2F_C4UB_V3F */ - { 42814, 0x00002A2B }, /* GL_T2F_N3F_V3F */ - { 42829, 0x00002A27 }, /* GL_T2F_V3F */ - { 42840, 0x00002A2D }, /* GL_T4F_C4F_N3F_V4F */ - { 42859, 0x00002A28 }, /* GL_T4F_V4F */ - { 42870, 0x00008031 }, /* GL_TABLE_TOO_LARGE_EXT */ - { 42893, 0x00001702 }, /* GL_TEXTURE */ - { 42904, 0x000084C0 }, /* GL_TEXTURE0 */ - { 42916, 0x000084C0 }, /* GL_TEXTURE0_ARB */ - { 42932, 0x000084C1 }, /* GL_TEXTURE1 */ - { 42944, 0x000084CA }, /* GL_TEXTURE10 */ - { 42957, 0x000084CA }, /* GL_TEXTURE10_ARB */ - { 42974, 0x000084CB }, /* GL_TEXTURE11 */ - { 42987, 0x000084CB }, /* GL_TEXTURE11_ARB */ - { 43004, 0x000084CC }, /* GL_TEXTURE12 */ - { 43017, 0x000084CC }, /* GL_TEXTURE12_ARB */ - { 43034, 0x000084CD }, /* GL_TEXTURE13 */ - { 43047, 0x000084CD }, /* GL_TEXTURE13_ARB */ - { 43064, 0x000084CE }, /* GL_TEXTURE14 */ - { 43077, 0x000084CE }, /* GL_TEXTURE14_ARB */ - { 43094, 0x000084CF }, /* GL_TEXTURE15 */ - { 43107, 0x000084CF }, /* GL_TEXTURE15_ARB */ - { 43124, 0x000084D0 }, /* GL_TEXTURE16 */ - { 43137, 0x000084D0 }, /* GL_TEXTURE16_ARB */ - { 43154, 0x000084D1 }, /* GL_TEXTURE17 */ - { 43167, 0x000084D1 }, /* GL_TEXTURE17_ARB */ - { 43184, 0x000084D2 }, /* GL_TEXTURE18 */ - { 43197, 0x000084D2 }, /* GL_TEXTURE18_ARB */ - { 43214, 0x000084D3 }, /* GL_TEXTURE19 */ - { 43227, 0x000084D3 }, /* GL_TEXTURE19_ARB */ - { 43244, 0x000084C1 }, /* GL_TEXTURE1_ARB */ - { 43260, 0x000084C2 }, /* GL_TEXTURE2 */ - { 43272, 0x000084D4 }, /* GL_TEXTURE20 */ - { 43285, 0x000084D4 }, /* GL_TEXTURE20_ARB */ - { 43302, 0x000084D5 }, /* GL_TEXTURE21 */ - { 43315, 0x000084D5 }, /* GL_TEXTURE21_ARB */ - { 43332, 0x000084D6 }, /* GL_TEXTURE22 */ - { 43345, 0x000084D6 }, /* GL_TEXTURE22_ARB */ - { 43362, 0x000084D7 }, /* GL_TEXTURE23 */ - { 43375, 0x000084D7 }, /* GL_TEXTURE23_ARB */ - { 43392, 0x000084D8 }, /* GL_TEXTURE24 */ - { 43405, 0x000084D8 }, /* GL_TEXTURE24_ARB */ - { 43422, 0x000084D9 }, /* GL_TEXTURE25 */ - { 43435, 0x000084D9 }, /* GL_TEXTURE25_ARB */ - { 43452, 0x000084DA }, /* GL_TEXTURE26 */ - { 43465, 0x000084DA }, /* GL_TEXTURE26_ARB */ - { 43482, 0x000084DB }, /* GL_TEXTURE27 */ - { 43495, 0x000084DB }, /* GL_TEXTURE27_ARB */ - { 43512, 0x000084DC }, /* GL_TEXTURE28 */ - { 43525, 0x000084DC }, /* GL_TEXTURE28_ARB */ - { 43542, 0x000084DD }, /* GL_TEXTURE29 */ - { 43555, 0x000084DD }, /* GL_TEXTURE29_ARB */ - { 43572, 0x000084C2 }, /* GL_TEXTURE2_ARB */ - { 43588, 0x000084C3 }, /* GL_TEXTURE3 */ - { 43600, 0x000084DE }, /* GL_TEXTURE30 */ - { 43613, 0x000084DE }, /* GL_TEXTURE30_ARB */ - { 43630, 0x000084DF }, /* GL_TEXTURE31 */ - { 43643, 0x000084DF }, /* GL_TEXTURE31_ARB */ - { 43660, 0x000084C3 }, /* GL_TEXTURE3_ARB */ - { 43676, 0x000084C4 }, /* GL_TEXTURE4 */ - { 43688, 0x000084C4 }, /* GL_TEXTURE4_ARB */ - { 43704, 0x000084C5 }, /* GL_TEXTURE5 */ - { 43716, 0x000084C5 }, /* GL_TEXTURE5_ARB */ - { 43732, 0x000084C6 }, /* GL_TEXTURE6 */ - { 43744, 0x000084C6 }, /* GL_TEXTURE6_ARB */ - { 43760, 0x000084C7 }, /* GL_TEXTURE7 */ - { 43772, 0x000084C7 }, /* GL_TEXTURE7_ARB */ - { 43788, 0x000084C8 }, /* GL_TEXTURE8 */ - { 43800, 0x000084C8 }, /* GL_TEXTURE8_ARB */ - { 43816, 0x000084C9 }, /* GL_TEXTURE9 */ - { 43828, 0x000084C9 }, /* GL_TEXTURE9_ARB */ - { 43844, 0x00000DE0 }, /* GL_TEXTURE_1D */ - { 43858, 0x00008C18 }, /* GL_TEXTURE_1D_ARRAY */ - { 43878, 0x00008C18 }, /* GL_TEXTURE_1D_ARRAY_EXT */ - { 43902, 0x00000DE1 }, /* GL_TEXTURE_2D */ - { 43916, 0x00008C1A }, /* GL_TEXTURE_2D_ARRAY */ - { 43936, 0x00008C1A }, /* GL_TEXTURE_2D_ARRAY_EXT */ - { 43960, 0x0000806F }, /* GL_TEXTURE_3D */ - { 43974, 0x0000806F }, /* GL_TEXTURE_3D_OES */ - { 43992, 0x0000805F }, /* GL_TEXTURE_ALPHA_SIZE */ - { 44014, 0x0000805F }, /* GL_TEXTURE_ALPHA_SIZE_EXT */ - { 44040, 0x0000813C }, /* GL_TEXTURE_BASE_LEVEL */ - { 44062, 0x00008068 }, /* GL_TEXTURE_BINDING_1D */ - { 44084, 0x00008C1C }, /* GL_TEXTURE_BINDING_1D_ARRAY */ - { 44112, 0x00008C1C }, /* GL_TEXTURE_BINDING_1D_ARRAY_EXT */ - { 44144, 0x00008069 }, /* GL_TEXTURE_BINDING_2D */ - { 44166, 0x00008C1D }, /* GL_TEXTURE_BINDING_2D_ARRAY */ - { 44194, 0x00008C1D }, /* GL_TEXTURE_BINDING_2D_ARRAY_EXT */ - { 44226, 0x0000806A }, /* GL_TEXTURE_BINDING_3D */ - { 44248, 0x0000806A }, /* GL_TEXTURE_BINDING_3D_OES */ - { 44274, 0x00008C2C }, /* GL_TEXTURE_BINDING_BUFFER */ - { 44300, 0x00008C2C }, /* GL_TEXTURE_BINDING_BUFFER_ARB */ - { 44330, 0x00008514 }, /* GL_TEXTURE_BINDING_CUBE_MAP */ - { 44358, 0x00008514 }, /* GL_TEXTURE_BINDING_CUBE_MAP_ARB */ - { 44390, 0x00008514 }, /* GL_TEXTURE_BINDING_CUBE_MAP_OES */ - { 44422, 0x00008D67 }, /* GL_TEXTURE_BINDING_EXTERNAL_OES */ - { 44454, 0x000084F6 }, /* GL_TEXTURE_BINDING_RECTANGLE */ - { 44483, 0x000084F6 }, /* GL_TEXTURE_BINDING_RECTANGLE_ARB */ - { 44516, 0x000084F6 }, /* GL_TEXTURE_BINDING_RECTANGLE_NV */ - { 44548, 0x00040000 }, /* GL_TEXTURE_BIT */ - { 44563, 0x0000805E }, /* GL_TEXTURE_BLUE_SIZE */ - { 44584, 0x0000805E }, /* GL_TEXTURE_BLUE_SIZE_EXT */ - { 44609, 0x00001005 }, /* GL_TEXTURE_BORDER */ - { 44627, 0x00001004 }, /* GL_TEXTURE_BORDER_COLOR */ - { 44651, 0x00008C2A }, /* GL_TEXTURE_BUFFER */ - { 44669, 0x00008C2A }, /* GL_TEXTURE_BUFFER_ARB */ - { 44691, 0x00008C2D }, /* GL_TEXTURE_BUFFER_DATA_STORE_BINDING */ - { 44728, 0x00008C2D }, /* GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB */ - { 44769, 0x00008C2E }, /* GL_TEXTURE_BUFFER_FORMAT */ - { 44794, 0x00008C2E }, /* GL_TEXTURE_BUFFER_FORMAT_ARB */ - { 44823, 0x00008171 }, /* GL_TEXTURE_CLIPMAP_CENTER_SGIX */ - { 44854, 0x00008176 }, /* GL_TEXTURE_CLIPMAP_DEPTH_SGIX */ - { 44884, 0x00008172 }, /* GL_TEXTURE_CLIPMAP_FRAME_SGIX */ - { 44914, 0x00008175 }, /* GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX */ - { 44949, 0x00008173 }, /* GL_TEXTURE_CLIPMAP_OFFSET_SGIX */ - { 44980, 0x00008174 }, /* GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX */ - { 45018, 0x000080BC }, /* GL_TEXTURE_COLOR_TABLE_SGI */ - { 45045, 0x000081EF }, /* GL_TEXTURE_COLOR_WRITEMASK_SGIS */ - { 45077, 0x000080BF }, /* GL_TEXTURE_COMPARE_FAIL_VALUE_ARB */ - { 45111, 0x0000884D }, /* GL_TEXTURE_COMPARE_FUNC */ - { 45135, 0x0000884D }, /* GL_TEXTURE_COMPARE_FUNC_ARB */ - { 45163, 0x0000884C }, /* GL_TEXTURE_COMPARE_MODE */ - { 45187, 0x0000884C }, /* GL_TEXTURE_COMPARE_MODE_ARB */ - { 45215, 0x0000819B }, /* GL_TEXTURE_COMPARE_OPERATOR_SGIX */ - { 45248, 0x0000819A }, /* GL_TEXTURE_COMPARE_SGIX */ - { 45272, 0x00001003 }, /* GL_TEXTURE_COMPONENTS */ - { 45294, 0x000086A1 }, /* GL_TEXTURE_COMPRESSED */ - { 45316, 0x000086A1 }, /* GL_TEXTURE_COMPRESSED_ARB */ - { 45342, 0x000086A3 }, /* GL_TEXTURE_COMPRESSED_FORMATS_ARB */ - { 45376, 0x000086A0 }, /* GL_TEXTURE_COMPRESSED_IMAGE_SIZE */ - { 45409, 0x000086A0 }, /* GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB */ - { 45446, 0x000084EF }, /* GL_TEXTURE_COMPRESSION_HINT */ - { 45474, 0x000084EF }, /* GL_TEXTURE_COMPRESSION_HINT_ARB */ - { 45506, 0x00008078 }, /* GL_TEXTURE_COORD_ARRAY */ - { 45529, 0x0000889A }, /* GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING */ - { 45567, 0x0000889A }, /* GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB */ - { 45609, 0x00008092 }, /* GL_TEXTURE_COORD_ARRAY_POINTER */ - { 45640, 0x00008088 }, /* GL_TEXTURE_COORD_ARRAY_SIZE */ - { 45668, 0x0000808A }, /* GL_TEXTURE_COORD_ARRAY_STRIDE */ - { 45698, 0x00008089 }, /* GL_TEXTURE_COORD_ARRAY_TYPE */ - { 45726, 0x00008B9D }, /* GL_TEXTURE_CROP_RECT_OES */ - { 45751, 0x00008513 }, /* GL_TEXTURE_CUBE_MAP */ - { 45771, 0x00008513 }, /* GL_TEXTURE_CUBE_MAP_ARB */ - { 45795, 0x00008516 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X */ - { 45826, 0x00008516 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB */ - { 45861, 0x00008516 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X_OES */ - { 45896, 0x00008518 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y */ - { 45927, 0x00008518 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB */ - { 45962, 0x00008518 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_OES */ - { 45997, 0x0000851A }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z */ - { 46028, 0x0000851A }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB */ - { 46063, 0x0000851A }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_OES */ - { 46098, 0x00008513 }, /* GL_TEXTURE_CUBE_MAP_OES */ - { 46122, 0x00008515 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X */ - { 46153, 0x00008515 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB */ - { 46188, 0x00008515 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X_OES */ - { 46223, 0x00008517 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y */ - { 46254, 0x00008517 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB */ - { 46289, 0x00008517 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y_OES */ - { 46324, 0x00008519 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z */ - { 46355, 0x00008519 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB */ - { 46390, 0x00008519 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z_OES */ - { 46425, 0x0000884F }, /* GL_TEXTURE_CUBE_MAP_SEAMLESS */ - { 46454, 0x00008071 }, /* GL_TEXTURE_DEPTH */ - { 46471, 0x0000884A }, /* GL_TEXTURE_DEPTH_SIZE */ - { 46493, 0x0000884A }, /* GL_TEXTURE_DEPTH_SIZE_ARB */ - { 46519, 0x00002300 }, /* GL_TEXTURE_ENV */ - { 46534, 0x00002201 }, /* GL_TEXTURE_ENV_COLOR */ - { 46555, 0x00002200 }, /* GL_TEXTURE_ENV_MODE */ - { 46575, 0x00008D65 }, /* GL_TEXTURE_EXTERNAL_OES */ - { 46599, 0x00008500 }, /* GL_TEXTURE_FILTER_CONTROL */ - { 46625, 0x00008500 }, /* GL_TEXTURE_FILTER_CONTROL_EXT */ - { 46655, 0x00002500 }, /* GL_TEXTURE_GEN_MODE */ - { 46675, 0x00002500 }, /* GL_TEXTURE_GEN_MODE_OES */ - { 46699, 0x00000C63 }, /* GL_TEXTURE_GEN_Q */ - { 46716, 0x00000C62 }, /* GL_TEXTURE_GEN_R */ - { 46733, 0x00000C60 }, /* GL_TEXTURE_GEN_S */ - { 46750, 0x00008D60 }, /* GL_TEXTURE_GEN_STR_OES */ - { 46773, 0x00000C61 }, /* GL_TEXTURE_GEN_T */ - { 46790, 0x0000819D }, /* GL_TEXTURE_GEQUAL_R_SGIX */ - { 46815, 0x0000805D }, /* GL_TEXTURE_GREEN_SIZE */ - { 46837, 0x0000805D }, /* GL_TEXTURE_GREEN_SIZE_EXT */ - { 46863, 0x00001001 }, /* GL_TEXTURE_HEIGHT */ - { 46881, 0x000080ED }, /* GL_TEXTURE_INDEX_SIZE_EXT */ - { 46907, 0x00008061 }, /* GL_TEXTURE_INTENSITY_SIZE */ - { 46933, 0x00008061 }, /* GL_TEXTURE_INTENSITY_SIZE_EXT */ - { 46963, 0x00001003 }, /* GL_TEXTURE_INTERNAL_FORMAT */ - { 46990, 0x0000819C }, /* GL_TEXTURE_LEQUAL_R_SGIX */ - { 47015, 0x00008501 }, /* GL_TEXTURE_LOD_BIAS */ - { 47035, 0x00008501 }, /* GL_TEXTURE_LOD_BIAS_EXT */ - { 47059, 0x00008190 }, /* GL_TEXTURE_LOD_BIAS_R_SGIX */ - { 47086, 0x0000818E }, /* GL_TEXTURE_LOD_BIAS_S_SGIX */ - { 47113, 0x0000818F }, /* GL_TEXTURE_LOD_BIAS_T_SGIX */ - { 47140, 0x00008060 }, /* GL_TEXTURE_LUMINANCE_SIZE */ - { 47166, 0x00008060 }, /* GL_TEXTURE_LUMINANCE_SIZE_EXT */ - { 47196, 0x00002800 }, /* GL_TEXTURE_MAG_FILTER */ - { 47218, 0x00000BA8 }, /* GL_TEXTURE_MATRIX */ - { 47236, 0x0000898F }, /* GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES */ - { 47276, 0x000084FE }, /* GL_TEXTURE_MAX_ANISOTROPY_EXT */ - { 47306, 0x0000836B }, /* GL_TEXTURE_MAX_CLAMP_R_SGIX */ - { 47334, 0x00008369 }, /* GL_TEXTURE_MAX_CLAMP_S_SGIX */ - { 47362, 0x0000836A }, /* GL_TEXTURE_MAX_CLAMP_T_SGIX */ - { 47390, 0x0000813D }, /* GL_TEXTURE_MAX_LEVEL */ - { 47411, 0x0000813B }, /* GL_TEXTURE_MAX_LOD */ - { 47430, 0x00002801 }, /* GL_TEXTURE_MIN_FILTER */ - { 47452, 0x0000813A }, /* GL_TEXTURE_MIN_LOD */ - { 47471, 0x00008066 }, /* GL_TEXTURE_PRIORITY */ - { 47491, 0x000085B7 }, /* GL_TEXTURE_RANGE_LENGTH_APPLE */ - { 47521, 0x000085B8 }, /* GL_TEXTURE_RANGE_POINTER_APPLE */ - { 47552, 0x000084F5 }, /* GL_TEXTURE_RECTANGLE */ - { 47573, 0x000084F5 }, /* GL_TEXTURE_RECTANGLE_ARB */ - { 47598, 0x000084F5 }, /* GL_TEXTURE_RECTANGLE_NV */ - { 47622, 0x0000805C }, /* GL_TEXTURE_RED_SIZE */ - { 47642, 0x0000805C }, /* GL_TEXTURE_RED_SIZE_EXT */ - { 47666, 0x00008067 }, /* GL_TEXTURE_RESIDENT */ - { 47686, 0x00008C3F }, /* GL_TEXTURE_SHARED_SIZE */ - { 47709, 0x00000BA5 }, /* GL_TEXTURE_STACK_DEPTH */ - { 47732, 0x000088F1 }, /* GL_TEXTURE_STENCIL_SIZE */ - { 47756, 0x000088F1 }, /* GL_TEXTURE_STENCIL_SIZE_EXT */ - { 47784, 0x000085BC }, /* GL_TEXTURE_STORAGE_HINT_APPLE */ - { 47814, 0x00008065 }, /* GL_TEXTURE_TOO_LARGE_EXT */ - { 47839, 0x0000888F }, /* GL_TEXTURE_UNSIGNED_REMAP_MODE_NV */ - { 47873, 0x00001000 }, /* GL_TEXTURE_WIDTH */ - { 47890, 0x00008072 }, /* GL_TEXTURE_WRAP_R */ - { 47908, 0x00008072 }, /* GL_TEXTURE_WRAP_R_OES */ - { 47930, 0x00002802 }, /* GL_TEXTURE_WRAP_S */ - { 47948, 0x00002803 }, /* GL_TEXTURE_WRAP_T */ - { 47966, 0x0000911B }, /* GL_TIMEOUT_EXPIRED */ - { 47985, 0x000088BF }, /* GL_TIME_ELAPSED_EXT */ - { 48005, 0x00008648 }, /* GL_TRACK_MATRIX_NV */ - { 48024, 0x00008649 }, /* GL_TRACK_MATRIX_TRANSFORM_NV */ - { 48053, 0x00001000 }, /* GL_TRANSFORM_BIT */ - { 48070, 0x00008E22 }, /* GL_TRANSFORM_FEEDBACK */ - { 48092, 0x00008E25 }, /* GL_TRANSFORM_FEEDBACK_BINDING */ - { 48122, 0x00008C8E }, /* GL_TRANSFORM_FEEDBACK_BUFFER */ - { 48151, 0x00008E24 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE */ - { 48187, 0x00008C8F }, /* GL_TRANSFORM_FEEDBACK_BUFFER_BINDING */ - { 48224, 0x00008C8F }, /* GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT */ - { 48265, 0x00008C8E }, /* GL_TRANSFORM_FEEDBACK_BUFFER_EXT */ - { 48298, 0x00008C7F }, /* GL_TRANSFORM_FEEDBACK_BUFFER_MODE */ - { 48332, 0x00008C7F }, /* GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT */ - { 48370, 0x00008E23 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED */ - { 48406, 0x00008C85 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_SIZE */ - { 48440, 0x00008C85 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT */ - { 48478, 0x00008C84 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_START */ - { 48513, 0x00008C84 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT */ - { 48552, 0x00008C88 }, /* GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN */ - { 48593, 0x00008C88 }, /* GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT */ - { 48638, 0x00008C83 }, /* GL_TRANSFORM_FEEDBACK_VARYINGS */ - { 48669, 0x00008C83 }, /* GL_TRANSFORM_FEEDBACK_VARYINGS_EXT */ - { 48704, 0x00008C76 }, /* GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH */ - { 48745, 0x00008C76 }, /* GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT */ - { 48790, 0x000084E6 }, /* GL_TRANSPOSE_COLOR_MATRIX */ - { 48816, 0x000084E6 }, /* GL_TRANSPOSE_COLOR_MATRIX_ARB */ - { 48846, 0x000088B7 }, /* GL_TRANSPOSE_CURRENT_MATRIX_ARB */ - { 48878, 0x000084E3 }, /* GL_TRANSPOSE_MODELVIEW_MATRIX */ - { 48908, 0x000084E3 }, /* GL_TRANSPOSE_MODELVIEW_MATRIX_ARB */ - { 48942, 0x0000862C }, /* GL_TRANSPOSE_NV */ - { 48958, 0x000084E4 }, /* GL_TRANSPOSE_PROJECTION_MATRIX */ - { 48989, 0x000084E4 }, /* GL_TRANSPOSE_PROJECTION_MATRIX_ARB */ - { 49024, 0x000084E5 }, /* GL_TRANSPOSE_TEXTURE_MATRIX */ - { 49052, 0x000084E5 }, /* GL_TRANSPOSE_TEXTURE_MATRIX_ARB */ - { 49084, 0x00000004 }, /* GL_TRIANGLES */ - { 49097, 0x0000000C }, /* GL_TRIANGLES_ADJACENCY */ - { 49120, 0x0000000C }, /* GL_TRIANGLES_ADJACENCY_ARB */ - { 49147, 0x00000006 }, /* GL_TRIANGLE_FAN */ - { 49163, 0x00008615 }, /* GL_TRIANGLE_MESH_SUN */ - { 49184, 0x00000005 }, /* GL_TRIANGLE_STRIP */ - { 49202, 0x0000000D }, /* GL_TRIANGLE_STRIP_ADJACENCY */ - { 49230, 0x0000000D }, /* GL_TRIANGLE_STRIP_ADJACENCY_ARB */ - { 49262, 0x00000001 }, /* GL_TRUE */ - { 49270, 0x00008A1C }, /* GL_UNDEFINED_APPLE */ - { 49289, 0x00008255 }, /* GL_UNKNOWN_CONTEXT_RESET_ARB */ - { 49318, 0x00000CF5 }, /* GL_UNPACK_ALIGNMENT */ - { 49338, 0x0000806E }, /* GL_UNPACK_IMAGE_HEIGHT */ - { 49361, 0x00000CF1 }, /* GL_UNPACK_LSB_FIRST */ - { 49381, 0x00000CF2 }, /* GL_UNPACK_ROW_LENGTH */ - { 49402, 0x0000806D }, /* GL_UNPACK_SKIP_IMAGES */ - { 49424, 0x00000CF4 }, /* GL_UNPACK_SKIP_PIXELS */ - { 49446, 0x00000CF3 }, /* GL_UNPACK_SKIP_ROWS */ - { 49466, 0x00000CF0 }, /* GL_UNPACK_SWAP_BYTES */ - { 49487, 0x00009118 }, /* GL_UNSIGNALED */ - { 49501, 0x00001401 }, /* GL_UNSIGNED_BYTE */ - { 49518, 0x00008362 }, /* GL_UNSIGNED_BYTE_2_3_3_REV */ - { 49545, 0x00008032 }, /* GL_UNSIGNED_BYTE_3_3_2 */ - { 49568, 0x00001405 }, /* GL_UNSIGNED_INT */ - { 49584, 0x00008C3B }, /* GL_UNSIGNED_INT_10F_11F_11F_REV */ - { 49616, 0x00008036 }, /* GL_UNSIGNED_INT_10_10_10_2 */ - { 49643, 0x00008DF6 }, /* GL_UNSIGNED_INT_10_10_10_2_OES */ - { 49674, 0x000084FA }, /* GL_UNSIGNED_INT_24_8 */ - { 49695, 0x000084FA }, /* GL_UNSIGNED_INT_24_8_EXT */ - { 49720, 0x000084FA }, /* GL_UNSIGNED_INT_24_8_NV */ - { 49744, 0x000084FA }, /* GL_UNSIGNED_INT_24_8_OES */ - { 49769, 0x00008368 }, /* GL_UNSIGNED_INT_2_10_10_10_REV */ - { 49800, 0x00008368 }, /* GL_UNSIGNED_INT_2_10_10_10_REV_EXT */ - { 49835, 0x00008C3E }, /* GL_UNSIGNED_INT_5_9_9_9_REV */ - { 49863, 0x00008035 }, /* GL_UNSIGNED_INT_8_8_8_8 */ - { 49887, 0x00008367 }, /* GL_UNSIGNED_INT_8_8_8_8_REV */ - { 49915, 0x00008DD1 }, /* GL_UNSIGNED_INT_SAMPLER_1D */ - { 49942, 0x00008DD6 }, /* GL_UNSIGNED_INT_SAMPLER_1D_ARRAY */ - { 49975, 0x00008DD6 }, /* GL_UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT */ - { 50012, 0x00008DD1 }, /* GL_UNSIGNED_INT_SAMPLER_1D_EXT */ - { 50043, 0x00008DD2 }, /* GL_UNSIGNED_INT_SAMPLER_2D */ - { 50070, 0x00008DD7 }, /* GL_UNSIGNED_INT_SAMPLER_2D_ARRAY */ - { 50103, 0x00008DD7 }, /* GL_UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT */ - { 50140, 0x00008DD2 }, /* GL_UNSIGNED_INT_SAMPLER_2D_EXT */ - { 50171, 0x00008DD5 }, /* GL_UNSIGNED_INT_SAMPLER_2D_RECT */ - { 50203, 0x00008DD5 }, /* GL_UNSIGNED_INT_SAMPLER_2D_RECT_EXT */ - { 50239, 0x00008DD3 }, /* GL_UNSIGNED_INT_SAMPLER_3D */ - { 50266, 0x00008DD3 }, /* GL_UNSIGNED_INT_SAMPLER_3D_EXT */ - { 50297, 0x00008DD8 }, /* GL_UNSIGNED_INT_SAMPLER_BUFFER */ - { 50328, 0x00008DD8 }, /* GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT */ - { 50363, 0x00008DD4 }, /* GL_UNSIGNED_INT_SAMPLER_CUBE */ - { 50392, 0x00008DD4 }, /* GL_UNSIGNED_INT_SAMPLER_CUBE_EXT */ - { 50425, 0x00008DC6 }, /* GL_UNSIGNED_INT_VEC2 */ - { 50446, 0x00008DC6 }, /* GL_UNSIGNED_INT_VEC2_EXT */ - { 50471, 0x00008DC7 }, /* GL_UNSIGNED_INT_VEC3 */ - { 50492, 0x00008DC7 }, /* GL_UNSIGNED_INT_VEC3_EXT */ - { 50517, 0x00008DC8 }, /* GL_UNSIGNED_INT_VEC4 */ - { 50538, 0x00008DC8 }, /* GL_UNSIGNED_INT_VEC4_EXT */ - { 50563, 0x00008C17 }, /* GL_UNSIGNED_NORMALIZED */ - { 50586, 0x00001403 }, /* GL_UNSIGNED_SHORT */ - { 50604, 0x00008366 }, /* GL_UNSIGNED_SHORT_1_5_5_5_REV */ - { 50634, 0x00008366 }, /* GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT */ - { 50668, 0x00008033 }, /* GL_UNSIGNED_SHORT_4_4_4_4 */ - { 50694, 0x00008365 }, /* GL_UNSIGNED_SHORT_4_4_4_4_REV */ - { 50724, 0x00008365 }, /* GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT */ - { 50758, 0x00008034 }, /* GL_UNSIGNED_SHORT_5_5_5_1 */ - { 50784, 0x00008363 }, /* GL_UNSIGNED_SHORT_5_6_5 */ - { 50808, 0x00008364 }, /* GL_UNSIGNED_SHORT_5_6_5_REV */ - { 50836, 0x000085BA }, /* GL_UNSIGNED_SHORT_8_8_APPLE */ - { 50864, 0x000085BA }, /* GL_UNSIGNED_SHORT_8_8_MESA */ - { 50891, 0x000085BB }, /* GL_UNSIGNED_SHORT_8_8_REV_APPLE */ - { 50923, 0x000085BB }, /* GL_UNSIGNED_SHORT_8_8_REV_MESA */ - { 50954, 0x00008CA2 }, /* GL_UPPER_LEFT */ - { 50968, 0x00002A20 }, /* GL_V2F */ - { 50975, 0x00002A21 }, /* GL_V3F */ - { 50982, 0x00008B83 }, /* GL_VALIDATE_STATUS */ - { 51001, 0x00001F00 }, /* GL_VENDOR */ - { 51011, 0x00001F02 }, /* GL_VERSION */ - { 51022, 0x00008074 }, /* GL_VERTEX_ARRAY */ - { 51038, 0x000085B5 }, /* GL_VERTEX_ARRAY_BINDING */ - { 51062, 0x000085B5 }, /* GL_VERTEX_ARRAY_BINDING_APPLE */ - { 51092, 0x00008896 }, /* GL_VERTEX_ARRAY_BUFFER_BINDING */ - { 51123, 0x00008896 }, /* GL_VERTEX_ARRAY_BUFFER_BINDING_ARB */ - { 51158, 0x0000808E }, /* GL_VERTEX_ARRAY_POINTER */ - { 51182, 0x0000807A }, /* GL_VERTEX_ARRAY_SIZE */ - { 51203, 0x0000807C }, /* GL_VERTEX_ARRAY_STRIDE */ - { 51226, 0x0000807B }, /* GL_VERTEX_ARRAY_TYPE */ - { 51247, 0x00008650 }, /* GL_VERTEX_ATTRIB_ARRAY0_NV */ - { 51274, 0x0000865A }, /* GL_VERTEX_ATTRIB_ARRAY10_NV */ - { 51302, 0x0000865B }, /* GL_VERTEX_ATTRIB_ARRAY11_NV */ - { 51330, 0x0000865C }, /* GL_VERTEX_ATTRIB_ARRAY12_NV */ - { 51358, 0x0000865D }, /* GL_VERTEX_ATTRIB_ARRAY13_NV */ - { 51386, 0x0000865E }, /* GL_VERTEX_ATTRIB_ARRAY14_NV */ - { 51414, 0x0000865F }, /* GL_VERTEX_ATTRIB_ARRAY15_NV */ - { 51442, 0x00008651 }, /* GL_VERTEX_ATTRIB_ARRAY1_NV */ - { 51469, 0x00008652 }, /* GL_VERTEX_ATTRIB_ARRAY2_NV */ - { 51496, 0x00008653 }, /* GL_VERTEX_ATTRIB_ARRAY3_NV */ - { 51523, 0x00008654 }, /* GL_VERTEX_ATTRIB_ARRAY4_NV */ - { 51550, 0x00008655 }, /* GL_VERTEX_ATTRIB_ARRAY5_NV */ - { 51577, 0x00008656 }, /* GL_VERTEX_ATTRIB_ARRAY6_NV */ - { 51604, 0x00008657 }, /* GL_VERTEX_ATTRIB_ARRAY7_NV */ - { 51631, 0x00008658 }, /* GL_VERTEX_ATTRIB_ARRAY8_NV */ - { 51658, 0x00008659 }, /* GL_VERTEX_ATTRIB_ARRAY9_NV */ - { 51685, 0x0000889F }, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING */ - { 51723, 0x0000889F }, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB */ - { 51765, 0x000088FE }, /* GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB */ - { 51800, 0x00008622 }, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED */ - { 51831, 0x00008622 }, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB */ - { 51866, 0x000088FD }, /* GL_VERTEX_ATTRIB_ARRAY_INTEGER */ - { 51897, 0x000088FD }, /* GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT */ - { 51932, 0x0000886A }, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED */ - { 51966, 0x0000886A }, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB */ - { 52004, 0x00008645 }, /* GL_VERTEX_ATTRIB_ARRAY_POINTER */ - { 52035, 0x00008645 }, /* GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB */ - { 52070, 0x00008623 }, /* GL_VERTEX_ATTRIB_ARRAY_SIZE */ - { 52098, 0x00008623 }, /* GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB */ - { 52130, 0x00008624 }, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE */ - { 52160, 0x00008624 }, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB */ - { 52194, 0x00008625 }, /* GL_VERTEX_ATTRIB_ARRAY_TYPE */ - { 52222, 0x00008625 }, /* GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB */ - { 52254, 0x000086A7 }, /* GL_VERTEX_BLEND_ARB */ - { 52274, 0x00008620 }, /* GL_VERTEX_PROGRAM_ARB */ - { 52296, 0x0000864A }, /* GL_VERTEX_PROGRAM_BINDING_NV */ - { 52325, 0x00008620 }, /* GL_VERTEX_PROGRAM_NV */ - { 52346, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE */ - { 52375, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE_ARB */ - { 52408, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE_NV */ - { 52440, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE */ - { 52467, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE_ARB */ - { 52498, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE_NV */ - { 52528, 0x00008B31 }, /* GL_VERTEX_SHADER */ - { 52545, 0x00008B31 }, /* GL_VERTEX_SHADER_ARB */ - { 52566, 0x00008621 }, /* GL_VERTEX_STATE_PROGRAM_NV */ - { 52593, 0x00000BA2 }, /* GL_VIEWPORT */ - { 52605, 0x00000800 }, /* GL_VIEWPORT_BIT */ - { 52621, 0x00008A1A }, /* GL_VOLATILE_APPLE */ - { 52639, 0x0000911D }, /* GL_WAIT_FAILED */ - { 52654, 0x000086AD }, /* GL_WEIGHT_ARRAY_ARB */ - { 52674, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING */ - { 52705, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB */ - { 52740, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING_OES */ - { 52775, 0x000086AD }, /* GL_WEIGHT_ARRAY_OES */ - { 52795, 0x000086AC }, /* GL_WEIGHT_ARRAY_POINTER_ARB */ - { 52823, 0x000086AC }, /* GL_WEIGHT_ARRAY_POINTER_OES */ - { 52851, 0x000086AB }, /* GL_WEIGHT_ARRAY_SIZE_ARB */ - { 52876, 0x000086AB }, /* GL_WEIGHT_ARRAY_SIZE_OES */ - { 52901, 0x000086AA }, /* GL_WEIGHT_ARRAY_STRIDE_ARB */ - { 52928, 0x000086AA }, /* GL_WEIGHT_ARRAY_STRIDE_OES */ - { 52955, 0x000086A9 }, /* GL_WEIGHT_ARRAY_TYPE_ARB */ - { 52980, 0x000086A9 }, /* GL_WEIGHT_ARRAY_TYPE_OES */ - { 53005, 0x000086A6 }, /* GL_WEIGHT_SUM_UNITY_ARB */ - { 53029, 0x000081D4 }, /* GL_WRAP_BORDER_SUN */ - { 53048, 0x000088B9 }, /* GL_WRITE_ONLY */ - { 53062, 0x000088B9 }, /* GL_WRITE_ONLY_ARB */ - { 53080, 0x000088B9 }, /* GL_WRITE_ONLY_OES */ - { 53098, 0x00001506 }, /* GL_XOR */ - { 53105, 0x000085B9 }, /* GL_YCBCR_422_APPLE */ - { 53124, 0x00008757 }, /* GL_YCBCR_MESA */ - { 53138, 0x00000000 }, /* GL_ZERO */ - { 53146, 0x00000D16 }, /* GL_ZOOM_X */ - { 53156, 0x00000D17 }, /* GL_ZOOM_Y */ + { 23616, 0x000088FC }, /* GL_MAX_DUAL_SOURCE_DRAW_BUFFERS */ + { 23648, 0x000080E9 }, /* GL_MAX_ELEMENTS_INDICES */ + { 23672, 0x000080E8 }, /* GL_MAX_ELEMENTS_VERTICES */ + { 23697, 0x00000D30 }, /* GL_MAX_EVAL_ORDER */ + { 23715, 0x00008008 }, /* GL_MAX_EXT */ + { 23726, 0x00009125 }, /* GL_MAX_FRAGMENT_INPUT_COMPONENTS */ + { 23759, 0x00008B49 }, /* GL_MAX_FRAGMENT_UNIFORM_COMPONENTS */ + { 23794, 0x00008B49 }, /* GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB */ + { 23833, 0x00008DFD }, /* GL_MAX_FRAGMENT_UNIFORM_VECTORS */ + { 23865, 0x00009123 }, /* GL_MAX_GEOMETRY_INPUT_COMPONENTS */ + { 23898, 0x00009124 }, /* GL_MAX_GEOMETRY_OUTPUT_COMPONENTS */ + { 23932, 0x00008DE0 }, /* GL_MAX_GEOMETRY_OUTPUT_VERTICES */ + { 23964, 0x00008DE0 }, /* GL_MAX_GEOMETRY_OUTPUT_VERTICES_ARB */ + { 24000, 0x00008C29 }, /* GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS */ + { 24036, 0x00008C29 }, /* GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS_ARB */ + { 24076, 0x00008DE1 }, /* GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS */ + { 24116, 0x00008DE1 }, /* GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS_ARB */ + { 24160, 0x00008DDF }, /* GL_MAX_GEOMETRY_UNIFORM_COMPONENTS */ + { 24195, 0x00008DDF }, /* GL_MAX_GEOMETRY_UNIFORM_COMPONENTS_ARB */ + { 24234, 0x00008DDD }, /* GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB */ + { 24273, 0x00000D31 }, /* GL_MAX_LIGHTS */ + { 24287, 0x00000B31 }, /* GL_MAX_LIST_NESTING */ + { 24307, 0x00008841 }, /* GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB */ + { 24345, 0x00000D36 }, /* GL_MAX_MODELVIEW_STACK_DEPTH */ + { 24374, 0x00000D37 }, /* GL_MAX_NAME_STACK_DEPTH */ + { 24398, 0x00008842 }, /* GL_MAX_PALETTE_MATRICES_ARB */ + { 24426, 0x00008842 }, /* GL_MAX_PALETTE_MATRICES_OES */ + { 24454, 0x00000D34 }, /* GL_MAX_PIXEL_MAP_TABLE */ + { 24477, 0x000088B1 }, /* GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB */ + { 24514, 0x0000880B }, /* GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB */ + { 24550, 0x000088AD }, /* GL_MAX_PROGRAM_ATTRIBS_ARB */ + { 24577, 0x000088F5 }, /* GL_MAX_PROGRAM_CALL_DEPTH_NV */ + { 24606, 0x000088B5 }, /* GL_MAX_PROGRAM_ENV_PARAMETERS_ARB */ + { 24640, 0x000088F4 }, /* GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV */ + { 24676, 0x000088F6 }, /* GL_MAX_PROGRAM_IF_DEPTH_NV */ + { 24703, 0x000088A1 }, /* GL_MAX_PROGRAM_INSTRUCTIONS_ARB */ + { 24735, 0x000088B4 }, /* GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB */ + { 24771, 0x000088F8 }, /* GL_MAX_PROGRAM_LOOP_COUNT_NV */ + { 24800, 0x000088F7 }, /* GL_MAX_PROGRAM_LOOP_DEPTH_NV */ + { 24829, 0x0000862F }, /* GL_MAX_PROGRAM_MATRICES_ARB */ + { 24857, 0x0000862E }, /* GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB */ + { 24895, 0x000088B3 }, /* GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ + { 24939, 0x0000880E }, /* GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ + { 24982, 0x000088AF }, /* GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB */ + { 25016, 0x000088A3 }, /* GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ + { 25055, 0x000088AB }, /* GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB */ + { 25092, 0x000088A7 }, /* GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB */ + { 25130, 0x00008810 }, /* GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ + { 25173, 0x0000880F }, /* GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ + { 25216, 0x000088A9 }, /* GL_MAX_PROGRAM_PARAMETERS_ARB */ + { 25246, 0x000088A5 }, /* GL_MAX_PROGRAM_TEMPORARIES_ARB */ + { 25277, 0x00008905 }, /* GL_MAX_PROGRAM_TEXEL_OFFSET */ + { 25305, 0x0000880D }, /* GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB */ + { 25341, 0x0000880C }, /* GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB */ + { 25377, 0x00000D38 }, /* GL_MAX_PROJECTION_STACK_DEPTH */ + { 25407, 0x000084F8 }, /* GL_MAX_RECTANGLE_TEXTURE_SIZE */ + { 25437, 0x000084F8 }, /* GL_MAX_RECTANGLE_TEXTURE_SIZE_ARB */ + { 25471, 0x000084F8 }, /* GL_MAX_RECTANGLE_TEXTURE_SIZE_NV */ + { 25504, 0x000084E8 }, /* GL_MAX_RENDERBUFFER_SIZE */ + { 25529, 0x000084E8 }, /* GL_MAX_RENDERBUFFER_SIZE_EXT */ + { 25558, 0x000084E8 }, /* GL_MAX_RENDERBUFFER_SIZE_OES */ + { 25587, 0x00008D57 }, /* GL_MAX_SAMPLES */ + { 25602, 0x00008D57 }, /* GL_MAX_SAMPLES_EXT */ + { 25621, 0x00009111 }, /* GL_MAX_SERVER_WAIT_TIMEOUT */ + { 25648, 0x00008504 }, /* GL_MAX_SHININESS_NV */ + { 25668, 0x00008505 }, /* GL_MAX_SPOT_EXPONENT_NV */ + { 25692, 0x00008C2B }, /* GL_MAX_TEXTURE_BUFFER_SIZE */ + { 25719, 0x00008C2B }, /* GL_MAX_TEXTURE_BUFFER_SIZE_ARB */ + { 25750, 0x00008871 }, /* GL_MAX_TEXTURE_COORDS */ + { 25772, 0x00008871 }, /* GL_MAX_TEXTURE_COORDS_ARB */ + { 25798, 0x00008872 }, /* GL_MAX_TEXTURE_IMAGE_UNITS */ + { 25825, 0x00008872 }, /* GL_MAX_TEXTURE_IMAGE_UNITS_ARB */ + { 25856, 0x000084FD }, /* GL_MAX_TEXTURE_LOD_BIAS */ + { 25880, 0x000084FD }, /* GL_MAX_TEXTURE_LOD_BIAS_EXT */ + { 25908, 0x000084FF }, /* GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT */ + { 25942, 0x00000D33 }, /* GL_MAX_TEXTURE_SIZE */ + { 25962, 0x00000D39 }, /* GL_MAX_TEXTURE_STACK_DEPTH */ + { 25989, 0x000084E2 }, /* GL_MAX_TEXTURE_UNITS */ + { 26010, 0x000084E2 }, /* GL_MAX_TEXTURE_UNITS_ARB */ + { 26035, 0x0000862F }, /* GL_MAX_TRACK_MATRICES_NV */ + { 26060, 0x0000862E }, /* GL_MAX_TRACK_MATRIX_STACK_DEPTH_NV */ + { 26095, 0x00008C8A }, /* GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS */ + { 26144, 0x00008C8A }, /* GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS_EXT */ + { 26197, 0x00008C8B }, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS */ + { 26240, 0x00008C8B }, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS_EXT */ + { 26287, 0x00008C80 }, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS */ + { 26333, 0x00008C80 }, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS_EXT */ + { 26383, 0x00008B4B }, /* GL_MAX_VARYING_COMPONENTS */ + { 26409, 0x00008B4B }, /* GL_MAX_VARYING_FLOATS */ + { 26431, 0x00008B4B }, /* GL_MAX_VARYING_FLOATS_ARB */ + { 26457, 0x00008DFC }, /* GL_MAX_VARYING_VECTORS */ + { 26480, 0x00008869 }, /* GL_MAX_VERTEX_ATTRIBS */ + { 26502, 0x00008869 }, /* GL_MAX_VERTEX_ATTRIBS_ARB */ + { 26528, 0x00009122 }, /* GL_MAX_VERTEX_OUTPUT_COMPONENTS */ + { 26560, 0x00008B4C }, /* GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS */ + { 26594, 0x00008B4C }, /* GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS_ARB */ + { 26632, 0x00008B4A }, /* GL_MAX_VERTEX_UNIFORM_COMPONENTS */ + { 26665, 0x00008B4A }, /* GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB */ + { 26702, 0x00008DFB }, /* GL_MAX_VERTEX_UNIFORM_VECTORS */ + { 26732, 0x000086A4 }, /* GL_MAX_VERTEX_UNITS_ARB */ + { 26756, 0x000086A4 }, /* GL_MAX_VERTEX_UNITS_OES */ + { 26780, 0x00008DDE }, /* GL_MAX_VERTEX_VARYING_COMPONENTS_ARB */ + { 26817, 0x00000D3A }, /* GL_MAX_VIEWPORT_DIMS */ + { 26838, 0x00008DF1 }, /* GL_MEDIUM_FLOAT */ + { 26854, 0x00008DF4 }, /* GL_MEDIUM_INT */ + { 26868, 0x00008007 }, /* GL_MIN */ + { 26875, 0x0000802E }, /* GL_MINMAX */ + { 26885, 0x0000802E }, /* GL_MINMAX_EXT */ + { 26899, 0x0000802F }, /* GL_MINMAX_FORMAT */ + { 26916, 0x0000802F }, /* GL_MINMAX_FORMAT_EXT */ + { 26937, 0x00008030 }, /* GL_MINMAX_SINK */ + { 26952, 0x00008030 }, /* GL_MINMAX_SINK_EXT */ + { 26971, 0x0000821C }, /* GL_MINOR_VERSION */ + { 26988, 0x00008007 }, /* GL_MIN_EXT */ + { 26999, 0x00008904 }, /* GL_MIN_PROGRAM_TEXEL_OFFSET */ + { 27027, 0x00008370 }, /* GL_MIRRORED_REPEAT */ + { 27046, 0x00008370 }, /* GL_MIRRORED_REPEAT_ARB */ + { 27069, 0x00008370 }, /* GL_MIRRORED_REPEAT_IBM */ + { 27092, 0x00008742 }, /* GL_MIRROR_CLAMP_ATI */ + { 27112, 0x00008742 }, /* GL_MIRROR_CLAMP_EXT */ + { 27132, 0x00008912 }, /* GL_MIRROR_CLAMP_TO_BORDER_EXT */ + { 27162, 0x00008743 }, /* GL_MIRROR_CLAMP_TO_EDGE_ATI */ + { 27190, 0x00008743 }, /* GL_MIRROR_CLAMP_TO_EDGE_EXT */ + { 27218, 0x00001700 }, /* GL_MODELVIEW */ + { 27231, 0x00001700 }, /* GL_MODELVIEW0_ARB */ + { 27249, 0x0000872A }, /* GL_MODELVIEW10_ARB */ + { 27268, 0x0000872B }, /* GL_MODELVIEW11_ARB */ + { 27287, 0x0000872C }, /* GL_MODELVIEW12_ARB */ + { 27306, 0x0000872D }, /* GL_MODELVIEW13_ARB */ + { 27325, 0x0000872E }, /* GL_MODELVIEW14_ARB */ + { 27344, 0x0000872F }, /* GL_MODELVIEW15_ARB */ + { 27363, 0x00008730 }, /* GL_MODELVIEW16_ARB */ + { 27382, 0x00008731 }, /* GL_MODELVIEW17_ARB */ + { 27401, 0x00008732 }, /* GL_MODELVIEW18_ARB */ + { 27420, 0x00008733 }, /* GL_MODELVIEW19_ARB */ + { 27439, 0x0000850A }, /* GL_MODELVIEW1_ARB */ + { 27457, 0x00008734 }, /* GL_MODELVIEW20_ARB */ + { 27476, 0x00008735 }, /* GL_MODELVIEW21_ARB */ + { 27495, 0x00008736 }, /* GL_MODELVIEW22_ARB */ + { 27514, 0x00008737 }, /* GL_MODELVIEW23_ARB */ + { 27533, 0x00008738 }, /* GL_MODELVIEW24_ARB */ + { 27552, 0x00008739 }, /* GL_MODELVIEW25_ARB */ + { 27571, 0x0000873A }, /* GL_MODELVIEW26_ARB */ + { 27590, 0x0000873B }, /* GL_MODELVIEW27_ARB */ + { 27609, 0x0000873C }, /* GL_MODELVIEW28_ARB */ + { 27628, 0x0000873D }, /* GL_MODELVIEW29_ARB */ + { 27647, 0x00008722 }, /* GL_MODELVIEW2_ARB */ + { 27665, 0x0000873E }, /* GL_MODELVIEW30_ARB */ + { 27684, 0x0000873F }, /* GL_MODELVIEW31_ARB */ + { 27703, 0x00008723 }, /* GL_MODELVIEW3_ARB */ + { 27721, 0x00008724 }, /* GL_MODELVIEW4_ARB */ + { 27739, 0x00008725 }, /* GL_MODELVIEW5_ARB */ + { 27757, 0x00008726 }, /* GL_MODELVIEW6_ARB */ + { 27775, 0x00008727 }, /* GL_MODELVIEW7_ARB */ + { 27793, 0x00008728 }, /* GL_MODELVIEW8_ARB */ + { 27811, 0x00008729 }, /* GL_MODELVIEW9_ARB */ + { 27829, 0x00000BA6 }, /* GL_MODELVIEW_MATRIX */ + { 27849, 0x0000898D }, /* GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES */ + { 27891, 0x00008629 }, /* GL_MODELVIEW_PROJECTION_NV */ + { 27918, 0x00000BA3 }, /* GL_MODELVIEW_STACK_DEPTH */ + { 27943, 0x00002100 }, /* GL_MODULATE */ + { 27955, 0x00008744 }, /* GL_MODULATE_ADD_ATI */ + { 27975, 0x00008745 }, /* GL_MODULATE_SIGNED_ADD_ATI */ + { 28002, 0x00008746 }, /* GL_MODULATE_SUBTRACT_ATI */ + { 28027, 0x00000103 }, /* GL_MULT */ + { 28035, 0x0000809D }, /* GL_MULTISAMPLE */ + { 28050, 0x000086B2 }, /* GL_MULTISAMPLE_3DFX */ + { 28070, 0x0000809D }, /* GL_MULTISAMPLE_ARB */ + { 28089, 0x20000000 }, /* GL_MULTISAMPLE_BIT */ + { 28108, 0x20000000 }, /* GL_MULTISAMPLE_BIT_3DFX */ + { 28132, 0x20000000 }, /* GL_MULTISAMPLE_BIT_ARB */ + { 28155, 0x00008534 }, /* GL_MULTISAMPLE_FILTER_HINT_NV */ + { 28185, 0x00002A25 }, /* GL_N3F_V3F */ + { 28196, 0x00000D70 }, /* GL_NAME_STACK_DEPTH */ + { 28216, 0x0000150E }, /* GL_NAND */ + { 28224, 0x00002600 }, /* GL_NEAREST */ + { 28235, 0x0000844E }, /* GL_NEAREST_CLIPMAP_LINEAR_SGIX */ + { 28266, 0x0000844D }, /* GL_NEAREST_CLIPMAP_NEAREST_SGIX */ + { 28298, 0x00002702 }, /* GL_NEAREST_MIPMAP_LINEAR */ + { 28323, 0x00002700 }, /* GL_NEAREST_MIPMAP_NEAREST */ + { 28349, 0x00000200 }, /* GL_NEVER */ + { 28358, 0x00001102 }, /* GL_NICEST */ + { 28368, 0x00000000 }, /* GL_NONE */ + { 28376, 0x00000000 }, /* GL_NONE_OES */ + { 28388, 0x00001505 }, /* GL_NOOP */ + { 28396, 0x00001508 }, /* GL_NOR */ + { 28403, 0x00000BA1 }, /* GL_NORMALIZE */ + { 28416, 0x00008075 }, /* GL_NORMAL_ARRAY */ + { 28432, 0x00008897 }, /* GL_NORMAL_ARRAY_BUFFER_BINDING */ + { 28463, 0x00008897 }, /* GL_NORMAL_ARRAY_BUFFER_BINDING_ARB */ + { 28498, 0x0000808F }, /* GL_NORMAL_ARRAY_POINTER */ + { 28522, 0x0000807F }, /* GL_NORMAL_ARRAY_STRIDE */ + { 28545, 0x0000807E }, /* GL_NORMAL_ARRAY_TYPE */ + { 28566, 0x00008511 }, /* GL_NORMAL_MAP */ + { 28580, 0x00008511 }, /* GL_NORMAL_MAP_ARB */ + { 28598, 0x00008511 }, /* GL_NORMAL_MAP_NV */ + { 28615, 0x00008511 }, /* GL_NORMAL_MAP_OES */ + { 28633, 0x00000205 }, /* GL_NOTEQUAL */ + { 28645, 0x00000000 }, /* GL_NO_ERROR */ + { 28657, 0x00008261 }, /* GL_NO_RESET_NOTIFICATION_ARB */ + { 28686, 0x000086A2 }, /* GL_NUM_COMPRESSED_TEXTURE_FORMATS */ + { 28720, 0x000086A2 }, /* GL_NUM_COMPRESSED_TEXTURE_FORMATS_ARB */ + { 28758, 0x0000821D }, /* GL_NUM_EXTENSIONS */ + { 28776, 0x000087FE }, /* GL_NUM_PROGRAM_BINARY_FORMATS */ + { 28806, 0x000087FE }, /* GL_NUM_PROGRAM_BINARY_FORMATS_OES */ + { 28840, 0x00008DF9 }, /* GL_NUM_SHADER_BINARY_FORMATS */ + { 28869, 0x00008B89 }, /* GL_OBJECT_ACTIVE_ATTRIBUTES_ARB */ + { 28901, 0x00008B8A }, /* GL_OBJECT_ACTIVE_ATTRIBUTE_MAX_LENGTH_ARB */ + { 28943, 0x00008B86 }, /* GL_OBJECT_ACTIVE_UNIFORMS_ARB */ + { 28973, 0x00008B87 }, /* GL_OBJECT_ACTIVE_UNIFORM_MAX_LENGTH_ARB */ + { 29013, 0x00008B85 }, /* GL_OBJECT_ATTACHED_OBJECTS_ARB */ + { 29044, 0x00008B81 }, /* GL_OBJECT_COMPILE_STATUS_ARB */ + { 29073, 0x00008B80 }, /* GL_OBJECT_DELETE_STATUS_ARB */ + { 29101, 0x00008B84 }, /* GL_OBJECT_INFO_LOG_LENGTH_ARB */ + { 29131, 0x00002401 }, /* GL_OBJECT_LINEAR */ + { 29148, 0x00008B82 }, /* GL_OBJECT_LINK_STATUS_ARB */ + { 29174, 0x00002501 }, /* GL_OBJECT_PLANE */ + { 29190, 0x00008B88 }, /* GL_OBJECT_SHADER_SOURCE_LENGTH_ARB */ + { 29225, 0x00008B4F }, /* GL_OBJECT_SUBTYPE_ARB */ + { 29247, 0x00009112 }, /* GL_OBJECT_TYPE */ + { 29262, 0x00008B4E }, /* GL_OBJECT_TYPE_ARB */ + { 29281, 0x00008B83 }, /* GL_OBJECT_VALIDATE_STATUS_ARB */ + { 29311, 0x00008165 }, /* GL_OCCLUSION_TEST_HP */ + { 29332, 0x00008166 }, /* GL_OCCLUSION_TEST_RESULT_HP */ + { 29360, 0x00000001 }, /* GL_ONE */ + { 29367, 0x00008004 }, /* GL_ONE_MINUS_CONSTANT_ALPHA */ + { 29395, 0x00008004 }, /* GL_ONE_MINUS_CONSTANT_ALPHA_EXT */ + { 29427, 0x00008002 }, /* GL_ONE_MINUS_CONSTANT_COLOR */ + { 29455, 0x00008002 }, /* GL_ONE_MINUS_CONSTANT_COLOR_EXT */ + { 29487, 0x00000305 }, /* GL_ONE_MINUS_DST_ALPHA */ + { 29510, 0x00000307 }, /* GL_ONE_MINUS_DST_COLOR */ + { 29533, 0x000088FB }, /* GL_ONE_MINUS_SRC1_ALPHA */ + { 29557, 0x000088FA }, /* GL_ONE_MINUS_SRC1_COLOR */ + { 29581, 0x00000303 }, /* GL_ONE_MINUS_SRC_ALPHA */ + { 29604, 0x00000301 }, /* GL_ONE_MINUS_SRC_COLOR */ + { 29627, 0x00008598 }, /* GL_OPERAND0_ALPHA */ + { 29645, 0x00008598 }, /* GL_OPERAND0_ALPHA_ARB */ + { 29667, 0x00008598 }, /* GL_OPERAND0_ALPHA_EXT */ + { 29689, 0x00008590 }, /* GL_OPERAND0_RGB */ + { 29705, 0x00008590 }, /* GL_OPERAND0_RGB_ARB */ + { 29725, 0x00008590 }, /* GL_OPERAND0_RGB_EXT */ + { 29745, 0x00008599 }, /* GL_OPERAND1_ALPHA */ + { 29763, 0x00008599 }, /* GL_OPERAND1_ALPHA_ARB */ + { 29785, 0x00008599 }, /* GL_OPERAND1_ALPHA_EXT */ + { 29807, 0x00008591 }, /* GL_OPERAND1_RGB */ + { 29823, 0x00008591 }, /* GL_OPERAND1_RGB_ARB */ + { 29843, 0x00008591 }, /* GL_OPERAND1_RGB_EXT */ + { 29863, 0x0000859A }, /* GL_OPERAND2_ALPHA */ + { 29881, 0x0000859A }, /* GL_OPERAND2_ALPHA_ARB */ + { 29903, 0x0000859A }, /* GL_OPERAND2_ALPHA_EXT */ + { 29925, 0x00008592 }, /* GL_OPERAND2_RGB */ + { 29941, 0x00008592 }, /* GL_OPERAND2_RGB_ARB */ + { 29961, 0x00008592 }, /* GL_OPERAND2_RGB_EXT */ + { 29981, 0x0000859B }, /* GL_OPERAND3_ALPHA_NV */ + { 30002, 0x00008593 }, /* GL_OPERAND3_RGB_NV */ + { 30021, 0x00001507 }, /* GL_OR */ + { 30027, 0x00000A01 }, /* GL_ORDER */ + { 30036, 0x0000150D }, /* GL_OR_INVERTED */ + { 30051, 0x0000150B }, /* GL_OR_REVERSE */ + { 30065, 0x00000505 }, /* GL_OUT_OF_MEMORY */ + { 30082, 0x00000D05 }, /* GL_PACK_ALIGNMENT */ + { 30100, 0x0000806C }, /* GL_PACK_IMAGE_HEIGHT */ + { 30121, 0x00008758 }, /* GL_PACK_INVERT_MESA */ + { 30141, 0x00000D01 }, /* GL_PACK_LSB_FIRST */ + { 30159, 0x00000D02 }, /* GL_PACK_ROW_LENGTH */ + { 30178, 0x0000806B }, /* GL_PACK_SKIP_IMAGES */ + { 30198, 0x00000D04 }, /* GL_PACK_SKIP_PIXELS */ + { 30218, 0x00000D03 }, /* GL_PACK_SKIP_ROWS */ + { 30236, 0x00000D00 }, /* GL_PACK_SWAP_BYTES */ + { 30255, 0x00008B92 }, /* GL_PALETTE4_R5_G6_B5_OES */ + { 30280, 0x00008B94 }, /* GL_PALETTE4_RGB5_A1_OES */ + { 30304, 0x00008B90 }, /* GL_PALETTE4_RGB8_OES */ + { 30325, 0x00008B93 }, /* GL_PALETTE4_RGBA4_OES */ + { 30347, 0x00008B91 }, /* GL_PALETTE4_RGBA8_OES */ + { 30369, 0x00008B97 }, /* GL_PALETTE8_R5_G6_B5_OES */ + { 30394, 0x00008B99 }, /* GL_PALETTE8_RGB5_A1_OES */ + { 30418, 0x00008B95 }, /* GL_PALETTE8_RGB8_OES */ + { 30439, 0x00008B98 }, /* GL_PALETTE8_RGBA4_OES */ + { 30461, 0x00008B96 }, /* GL_PALETTE8_RGBA8_OES */ + { 30483, 0x00000700 }, /* GL_PASS_THROUGH_TOKEN */ + { 30505, 0x00000C50 }, /* GL_PERSPECTIVE_CORRECTION_HINT */ + { 30536, 0x00000C79 }, /* GL_PIXEL_MAP_A_TO_A */ + { 30556, 0x00000CB9 }, /* GL_PIXEL_MAP_A_TO_A_SIZE */ + { 30581, 0x00000C78 }, /* GL_PIXEL_MAP_B_TO_B */ + { 30601, 0x00000CB8 }, /* GL_PIXEL_MAP_B_TO_B_SIZE */ + { 30626, 0x00000C77 }, /* GL_PIXEL_MAP_G_TO_G */ + { 30646, 0x00000CB7 }, /* GL_PIXEL_MAP_G_TO_G_SIZE */ + { 30671, 0x00000C75 }, /* GL_PIXEL_MAP_I_TO_A */ + { 30691, 0x00000CB5 }, /* GL_PIXEL_MAP_I_TO_A_SIZE */ + { 30716, 0x00000C74 }, /* GL_PIXEL_MAP_I_TO_B */ + { 30736, 0x00000CB4 }, /* GL_PIXEL_MAP_I_TO_B_SIZE */ + { 30761, 0x00000C73 }, /* GL_PIXEL_MAP_I_TO_G */ + { 30781, 0x00000CB3 }, /* GL_PIXEL_MAP_I_TO_G_SIZE */ + { 30806, 0x00000C70 }, /* GL_PIXEL_MAP_I_TO_I */ + { 30826, 0x00000CB0 }, /* GL_PIXEL_MAP_I_TO_I_SIZE */ + { 30851, 0x00000C72 }, /* GL_PIXEL_MAP_I_TO_R */ + { 30871, 0x00000CB2 }, /* GL_PIXEL_MAP_I_TO_R_SIZE */ + { 30896, 0x00000C76 }, /* GL_PIXEL_MAP_R_TO_R */ + { 30916, 0x00000CB6 }, /* GL_PIXEL_MAP_R_TO_R_SIZE */ + { 30941, 0x00000C71 }, /* GL_PIXEL_MAP_S_TO_S */ + { 30961, 0x00000CB1 }, /* GL_PIXEL_MAP_S_TO_S_SIZE */ + { 30986, 0x00000020 }, /* GL_PIXEL_MODE_BIT */ + { 31004, 0x000088EB }, /* GL_PIXEL_PACK_BUFFER */ + { 31025, 0x000088ED }, /* GL_PIXEL_PACK_BUFFER_BINDING */ + { 31054, 0x000088ED }, /* GL_PIXEL_PACK_BUFFER_BINDING_EXT */ + { 31087, 0x000088EB }, /* GL_PIXEL_PACK_BUFFER_EXT */ + { 31112, 0x000088EC }, /* GL_PIXEL_UNPACK_BUFFER */ + { 31135, 0x000088EF }, /* GL_PIXEL_UNPACK_BUFFER_BINDING */ + { 31166, 0x000088EF }, /* GL_PIXEL_UNPACK_BUFFER_BINDING_EXT */ + { 31201, 0x000088EC }, /* GL_PIXEL_UNPACK_BUFFER_EXT */ + { 31228, 0x00001B00 }, /* GL_POINT */ + { 31237, 0x00000000 }, /* GL_POINTS */ + { 31247, 0x00000002 }, /* GL_POINT_BIT */ + { 31260, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION */ + { 31290, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION_ARB */ + { 31324, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION_EXT */ + { 31358, 0x00008129 }, /* GL_POINT_DISTANCE_ATTENUATION_SGIS */ + { 31393, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE */ + { 31422, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE_ARB */ + { 31455, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE_EXT */ + { 31488, 0x00008128 }, /* GL_POINT_FADE_THRESHOLD_SIZE_SGIS */ + { 31522, 0x00000B11 }, /* GL_POINT_SIZE */ + { 31536, 0x00008B9F }, /* GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES */ + { 31575, 0x00008B9C }, /* GL_POINT_SIZE_ARRAY_OES */ + { 31599, 0x0000898C }, /* GL_POINT_SIZE_ARRAY_POINTER_OES */ + { 31631, 0x0000898B }, /* GL_POINT_SIZE_ARRAY_STRIDE_OES */ + { 31662, 0x0000898A }, /* GL_POINT_SIZE_ARRAY_TYPE_OES */ + { 31691, 0x00000B13 }, /* GL_POINT_SIZE_GRANULARITY */ + { 31717, 0x00008127 }, /* GL_POINT_SIZE_MAX */ + { 31735, 0x00008127 }, /* GL_POINT_SIZE_MAX_ARB */ + { 31757, 0x00008127 }, /* GL_POINT_SIZE_MAX_EXT */ + { 31779, 0x00008127 }, /* GL_POINT_SIZE_MAX_SGIS */ + { 31802, 0x00008126 }, /* GL_POINT_SIZE_MIN */ + { 31820, 0x00008126 }, /* GL_POINT_SIZE_MIN_ARB */ + { 31842, 0x00008126 }, /* GL_POINT_SIZE_MIN_EXT */ + { 31864, 0x00008126 }, /* GL_POINT_SIZE_MIN_SGIS */ + { 31887, 0x00000B12 }, /* GL_POINT_SIZE_RANGE */ + { 31907, 0x00000B10 }, /* GL_POINT_SMOOTH */ + { 31923, 0x00000C51 }, /* GL_POINT_SMOOTH_HINT */ + { 31944, 0x00008861 }, /* GL_POINT_SPRITE */ + { 31960, 0x00008861 }, /* GL_POINT_SPRITE_ARB */ + { 31980, 0x00008CA0 }, /* GL_POINT_SPRITE_COORD_ORIGIN */ + { 32009, 0x00008861 }, /* GL_POINT_SPRITE_NV */ + { 32028, 0x00008861 }, /* GL_POINT_SPRITE_OES */ + { 32048, 0x00008863 }, /* GL_POINT_SPRITE_R_MODE_NV */ + { 32074, 0x00000701 }, /* GL_POINT_TOKEN */ + { 32089, 0x00000009 }, /* GL_POLYGON */ + { 32100, 0x00000008 }, /* GL_POLYGON_BIT */ + { 32115, 0x00000B40 }, /* GL_POLYGON_MODE */ + { 32131, 0x00008039 }, /* GL_POLYGON_OFFSET_BIAS */ + { 32154, 0x00008038 }, /* GL_POLYGON_OFFSET_FACTOR */ + { 32179, 0x00008037 }, /* GL_POLYGON_OFFSET_FILL */ + { 32202, 0x00002A02 }, /* GL_POLYGON_OFFSET_LINE */ + { 32225, 0x00002A01 }, /* GL_POLYGON_OFFSET_POINT */ + { 32249, 0x00002A00 }, /* GL_POLYGON_OFFSET_UNITS */ + { 32273, 0x00000B41 }, /* GL_POLYGON_SMOOTH */ + { 32291, 0x00000C53 }, /* GL_POLYGON_SMOOTH_HINT */ + { 32314, 0x00000B42 }, /* GL_POLYGON_STIPPLE */ + { 32333, 0x00000010 }, /* GL_POLYGON_STIPPLE_BIT */ + { 32356, 0x00000703 }, /* GL_POLYGON_TOKEN */ + { 32373, 0x00001203 }, /* GL_POSITION */ + { 32385, 0x000080BB }, /* GL_POST_COLOR_MATRIX_ALPHA_BIAS */ + { 32417, 0x000080BB }, /* GL_POST_COLOR_MATRIX_ALPHA_BIAS_SGI */ + { 32453, 0x000080B7 }, /* GL_POST_COLOR_MATRIX_ALPHA_SCALE */ + { 32486, 0x000080B7 }, /* GL_POST_COLOR_MATRIX_ALPHA_SCALE_SGI */ + { 32523, 0x000080BA }, /* GL_POST_COLOR_MATRIX_BLUE_BIAS */ + { 32554, 0x000080BA }, /* GL_POST_COLOR_MATRIX_BLUE_BIAS_SGI */ + { 32589, 0x000080B6 }, /* GL_POST_COLOR_MATRIX_BLUE_SCALE */ + { 32621, 0x000080B6 }, /* GL_POST_COLOR_MATRIX_BLUE_SCALE_SGI */ + { 32657, 0x000080D2 }, /* GL_POST_COLOR_MATRIX_COLOR_TABLE */ + { 32690, 0x000080B9 }, /* GL_POST_COLOR_MATRIX_GREEN_BIAS */ + { 32722, 0x000080B9 }, /* GL_POST_COLOR_MATRIX_GREEN_BIAS_SGI */ + { 32758, 0x000080B5 }, /* GL_POST_COLOR_MATRIX_GREEN_SCALE */ + { 32791, 0x000080B5 }, /* GL_POST_COLOR_MATRIX_GREEN_SCALE_SGI */ + { 32828, 0x000080B8 }, /* GL_POST_COLOR_MATRIX_RED_BIAS */ + { 32858, 0x000080B8 }, /* GL_POST_COLOR_MATRIX_RED_BIAS_SGI */ + { 32892, 0x000080B4 }, /* GL_POST_COLOR_MATRIX_RED_SCALE */ + { 32923, 0x000080B4 }, /* GL_POST_COLOR_MATRIX_RED_SCALE_SGI */ + { 32958, 0x00008023 }, /* GL_POST_CONVOLUTION_ALPHA_BIAS */ + { 32989, 0x00008023 }, /* GL_POST_CONVOLUTION_ALPHA_BIAS_EXT */ + { 33024, 0x0000801F }, /* GL_POST_CONVOLUTION_ALPHA_SCALE */ + { 33056, 0x0000801F }, /* GL_POST_CONVOLUTION_ALPHA_SCALE_EXT */ + { 33092, 0x00008022 }, /* GL_POST_CONVOLUTION_BLUE_BIAS */ + { 33122, 0x00008022 }, /* GL_POST_CONVOLUTION_BLUE_BIAS_EXT */ + { 33156, 0x0000801E }, /* GL_POST_CONVOLUTION_BLUE_SCALE */ + { 33187, 0x0000801E }, /* GL_POST_CONVOLUTION_BLUE_SCALE_EXT */ + { 33222, 0x000080D1 }, /* GL_POST_CONVOLUTION_COLOR_TABLE */ + { 33254, 0x00008021 }, /* GL_POST_CONVOLUTION_GREEN_BIAS */ + { 33285, 0x00008021 }, /* GL_POST_CONVOLUTION_GREEN_BIAS_EXT */ + { 33320, 0x0000801D }, /* GL_POST_CONVOLUTION_GREEN_SCALE */ + { 33352, 0x0000801D }, /* GL_POST_CONVOLUTION_GREEN_SCALE_EXT */ + { 33388, 0x00008020 }, /* GL_POST_CONVOLUTION_RED_BIAS */ + { 33417, 0x00008020 }, /* GL_POST_CONVOLUTION_RED_BIAS_EXT */ + { 33450, 0x0000801C }, /* GL_POST_CONVOLUTION_RED_SCALE */ + { 33480, 0x0000801C }, /* GL_POST_CONVOLUTION_RED_SCALE_EXT */ + { 33514, 0x0000817B }, /* GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX */ + { 33553, 0x00008179 }, /* GL_POST_TEXTURE_FILTER_BIAS_SGIX */ + { 33586, 0x0000817C }, /* GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX */ + { 33626, 0x0000817A }, /* GL_POST_TEXTURE_FILTER_SCALE_SGIX */ + { 33660, 0x00008578 }, /* GL_PREVIOUS */ + { 33672, 0x00008578 }, /* GL_PREVIOUS_ARB */ + { 33688, 0x00008578 }, /* GL_PREVIOUS_EXT */ + { 33704, 0x00008577 }, /* GL_PRIMARY_COLOR */ + { 33721, 0x00008577 }, /* GL_PRIMARY_COLOR_ARB */ + { 33742, 0x00008577 }, /* GL_PRIMARY_COLOR_EXT */ + { 33763, 0x00008C87 }, /* GL_PRIMITIVES_GENERATED */ + { 33787, 0x00008C87 }, /* GL_PRIMITIVES_GENERATED_EXT */ + { 33815, 0x00008F9D }, /* GL_PRIMITIVE_RESTART */ + { 33836, 0x00008F9E }, /* GL_PRIMITIVE_RESTART_INDEX */ + { 33863, 0x00008559 }, /* GL_PRIMITIVE_RESTART_INDEX_NV */ + { 33893, 0x00008558 }, /* GL_PRIMITIVE_RESTART_NV */ + { 33917, 0x000088B0 }, /* GL_PROGRAM_ADDRESS_REGISTERS_ARB */ + { 33950, 0x00008805 }, /* GL_PROGRAM_ALU_INSTRUCTIONS_ARB */ + { 33982, 0x000088AC }, /* GL_PROGRAM_ATTRIBS_ARB */ + { 34005, 0x000087FF }, /* GL_PROGRAM_BINARY_FORMATS */ + { 34031, 0x000087FF }, /* GL_PROGRAM_BINARY_FORMATS_OES */ + { 34061, 0x00008741 }, /* GL_PROGRAM_BINARY_LENGTH */ + { 34086, 0x00008741 }, /* GL_PROGRAM_BINARY_LENGTH_OES */ + { 34115, 0x00008257 }, /* GL_PROGRAM_BINARY_RETRIEVABLE_HINT */ + { 34150, 0x00008677 }, /* GL_PROGRAM_BINDING_ARB */ + { 34173, 0x0000864B }, /* GL_PROGRAM_ERROR_POSITION_ARB */ + { 34203, 0x0000864B }, /* GL_PROGRAM_ERROR_POSITION_NV */ + { 34232, 0x00008874 }, /* GL_PROGRAM_ERROR_STRING_ARB */ + { 34260, 0x00008876 }, /* GL_PROGRAM_FORMAT_ARB */ + { 34282, 0x00008875 }, /* GL_PROGRAM_FORMAT_ASCII_ARB */ + { 34310, 0x000088A0 }, /* GL_PROGRAM_INSTRUCTIONS_ARB */ + { 34338, 0x00008627 }, /* GL_PROGRAM_LENGTH_ARB */ + { 34360, 0x00008627 }, /* GL_PROGRAM_LENGTH_NV */ + { 34381, 0x000088B2 }, /* GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ + { 34421, 0x00008808 }, /* GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ + { 34460, 0x000088AE }, /* GL_PROGRAM_NATIVE_ATTRIBS_ARB */ + { 34490, 0x000088A2 }, /* GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ + { 34525, 0x000088AA }, /* GL_PROGRAM_NATIVE_PARAMETERS_ARB */ + { 34558, 0x000088A6 }, /* GL_PROGRAM_NATIVE_TEMPORARIES_ARB */ + { 34592, 0x0000880A }, /* GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ + { 34631, 0x00008809 }, /* GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ + { 34670, 0x00008B40 }, /* GL_PROGRAM_OBJECT_ARB */ + { 34692, 0x000088A8 }, /* GL_PROGRAM_PARAMETERS_ARB */ + { 34718, 0x00008644 }, /* GL_PROGRAM_PARAMETER_NV */ + { 34742, 0x00008642 }, /* GL_PROGRAM_POINT_SIZE */ + { 34764, 0x00008642 }, /* GL_PROGRAM_POINT_SIZE_ARB */ + { 34790, 0x00008647 }, /* GL_PROGRAM_RESIDENT_NV */ + { 34813, 0x00008628 }, /* GL_PROGRAM_STRING_ARB */ + { 34835, 0x00008628 }, /* GL_PROGRAM_STRING_NV */ + { 34856, 0x00008646 }, /* GL_PROGRAM_TARGET_NV */ + { 34877, 0x000088A4 }, /* GL_PROGRAM_TEMPORARIES_ARB */ + { 34904, 0x00008807 }, /* GL_PROGRAM_TEX_INDIRECTIONS_ARB */ + { 34936, 0x00008806 }, /* GL_PROGRAM_TEX_INSTRUCTIONS_ARB */ + { 34968, 0x000088B6 }, /* GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB */ + { 35003, 0x00001701 }, /* GL_PROJECTION */ + { 35017, 0x00000BA7 }, /* GL_PROJECTION_MATRIX */ + { 35038, 0x0000898E }, /* GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES */ + { 35081, 0x00000BA4 }, /* GL_PROJECTION_STACK_DEPTH */ + { 35107, 0x00008E4F }, /* GL_PROVOKING_VERTEX */ + { 35127, 0x00008E4F }, /* GL_PROVOKING_VERTEX_EXT */ + { 35151, 0x000080D3 }, /* GL_PROXY_COLOR_TABLE */ + { 35172, 0x00008025 }, /* GL_PROXY_HISTOGRAM */ + { 35191, 0x00008025 }, /* GL_PROXY_HISTOGRAM_EXT */ + { 35214, 0x000080D5 }, /* GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE */ + { 35253, 0x000080D4 }, /* GL_PROXY_POST_CONVOLUTION_COLOR_TABLE */ + { 35291, 0x00008063 }, /* GL_PROXY_TEXTURE_1D */ + { 35311, 0x00008C19 }, /* GL_PROXY_TEXTURE_1D_ARRAY */ + { 35337, 0x00008C19 }, /* GL_PROXY_TEXTURE_1D_ARRAY_EXT */ + { 35367, 0x00008063 }, /* GL_PROXY_TEXTURE_1D_EXT */ + { 35391, 0x00008064 }, /* GL_PROXY_TEXTURE_2D */ + { 35411, 0x00008C1B }, /* GL_PROXY_TEXTURE_2D_ARRAY */ + { 35437, 0x00008C1B }, /* GL_PROXY_TEXTURE_2D_ARRAY_EXT */ + { 35467, 0x00008064 }, /* GL_PROXY_TEXTURE_2D_EXT */ + { 35491, 0x00008070 }, /* GL_PROXY_TEXTURE_3D */ + { 35511, 0x000080BD }, /* GL_PROXY_TEXTURE_COLOR_TABLE_SGI */ + { 35544, 0x0000851B }, /* GL_PROXY_TEXTURE_CUBE_MAP */ + { 35570, 0x0000851B }, /* GL_PROXY_TEXTURE_CUBE_MAP_ARB */ + { 35600, 0x000084F7 }, /* GL_PROXY_TEXTURE_RECTANGLE */ + { 35627, 0x000084F7 }, /* GL_PROXY_TEXTURE_RECTANGLE_ARB */ + { 35658, 0x000084F7 }, /* GL_PROXY_TEXTURE_RECTANGLE_NV */ + { 35688, 0x00008A1D }, /* GL_PURGEABLE_APPLE */ + { 35707, 0x00002003 }, /* GL_Q */ + { 35712, 0x00001209 }, /* GL_QUADRATIC_ATTENUATION */ + { 35737, 0x00000007 }, /* GL_QUADS */ + { 35746, 0x00008E4C }, /* GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION */ + { 35790, 0x00008E4C }, /* GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION_EXT */ + { 35838, 0x00008614 }, /* GL_QUAD_MESH_SUN */ + { 35855, 0x00000008 }, /* GL_QUAD_STRIP */ + { 35869, 0x00008E16 }, /* GL_QUERY_BY_REGION_NO_WAIT */ + { 35896, 0x00008E16 }, /* GL_QUERY_BY_REGION_NO_WAIT_NV */ + { 35926, 0x00008E15 }, /* GL_QUERY_BY_REGION_WAIT */ + { 35950, 0x00008E15 }, /* GL_QUERY_BY_REGION_WAIT_NV */ + { 35977, 0x00008864 }, /* GL_QUERY_COUNTER_BITS */ + { 35999, 0x00008864 }, /* GL_QUERY_COUNTER_BITS_ARB */ + { 36025, 0x00008E14 }, /* GL_QUERY_NO_WAIT */ + { 36042, 0x00008E14 }, /* GL_QUERY_NO_WAIT_NV */ + { 36062, 0x00008866 }, /* GL_QUERY_RESULT */ + { 36078, 0x00008866 }, /* GL_QUERY_RESULT_ARB */ + { 36098, 0x00008867 }, /* GL_QUERY_RESULT_AVAILABLE */ + { 36124, 0x00008867 }, /* GL_QUERY_RESULT_AVAILABLE_ARB */ + { 36154, 0x00008E13 }, /* GL_QUERY_WAIT */ + { 36168, 0x00008E13 }, /* GL_QUERY_WAIT_NV */ + { 36185, 0x00002002 }, /* GL_R */ + { 36190, 0x00008C3A }, /* GL_R11F_G11F_B10F */ + { 36208, 0x00008F98 }, /* GL_R16_SNORM */ + { 36221, 0x00002A10 }, /* GL_R3_G3_B2 */ + { 36233, 0x00008F94 }, /* GL_R8_SNORM */ + { 36245, 0x00008C89 }, /* GL_RASTERIZER_DISCARD */ + { 36267, 0x00008C89 }, /* GL_RASTERIZER_DISCARD_EXT */ + { 36293, 0x00019262 }, /* GL_RASTER_POSITION_UNCLIPPED_IBM */ + { 36326, 0x00000C02 }, /* GL_READ_BUFFER */ + { 36341, 0x00008CA8 }, /* GL_READ_FRAMEBUFFER */ + { 36361, 0x00008CAA }, /* GL_READ_FRAMEBUFFER_BINDING */ + { 36389, 0x00008CAA }, /* GL_READ_FRAMEBUFFER_BINDING_EXT */ + { 36421, 0x00008CA8 }, /* GL_READ_FRAMEBUFFER_EXT */ + { 36445, 0x000088B8 }, /* GL_READ_ONLY */ + { 36458, 0x000088B8 }, /* GL_READ_ONLY_ARB */ + { 36475, 0x000088BA }, /* GL_READ_WRITE */ + { 36489, 0x000088BA }, /* GL_READ_WRITE_ARB */ + { 36507, 0x00001903 }, /* GL_RED */ + { 36514, 0x00008016 }, /* GL_REDUCE */ + { 36524, 0x00008016 }, /* GL_REDUCE_EXT */ + { 36538, 0x00000D15 }, /* GL_RED_BIAS */ + { 36550, 0x00000D52 }, /* GL_RED_BITS */ + { 36562, 0x00008D94 }, /* GL_RED_INTEGER */ + { 36577, 0x00008D94 }, /* GL_RED_INTEGER_EXT */ + { 36596, 0x00000D14 }, /* GL_RED_SCALE */ + { 36609, 0x00008F90 }, /* GL_RED_SNORM */ + { 36622, 0x00008512 }, /* GL_REFLECTION_MAP */ + { 36640, 0x00008512 }, /* GL_REFLECTION_MAP_ARB */ + { 36662, 0x00008512 }, /* GL_REFLECTION_MAP_NV */ + { 36683, 0x00008512 }, /* GL_REFLECTION_MAP_OES */ + { 36705, 0x00008A19 }, /* GL_RELEASED_APPLE */ + { 36723, 0x00001C00 }, /* GL_RENDER */ + { 36733, 0x00008D41 }, /* GL_RENDERBUFFER */ + { 36749, 0x00008D53 }, /* GL_RENDERBUFFER_ALPHA_SIZE */ + { 36776, 0x00008D53 }, /* GL_RENDERBUFFER_ALPHA_SIZE_OES */ + { 36807, 0x00008CA7 }, /* GL_RENDERBUFFER_BINDING */ + { 36831, 0x00008CA7 }, /* GL_RENDERBUFFER_BINDING_EXT */ + { 36859, 0x00008CA7 }, /* GL_RENDERBUFFER_BINDING_OES */ + { 36887, 0x00008D52 }, /* GL_RENDERBUFFER_BLUE_SIZE */ + { 36913, 0x00008D52 }, /* GL_RENDERBUFFER_BLUE_SIZE_OES */ + { 36943, 0x00008D54 }, /* GL_RENDERBUFFER_DEPTH_SIZE */ + { 36970, 0x00008D54 }, /* GL_RENDERBUFFER_DEPTH_SIZE_OES */ + { 37001, 0x00008D41 }, /* GL_RENDERBUFFER_EXT */ + { 37021, 0x00008D51 }, /* GL_RENDERBUFFER_GREEN_SIZE */ + { 37048, 0x00008D51 }, /* GL_RENDERBUFFER_GREEN_SIZE_OES */ + { 37079, 0x00008D43 }, /* GL_RENDERBUFFER_HEIGHT */ + { 37102, 0x00008D43 }, /* GL_RENDERBUFFER_HEIGHT_EXT */ + { 37129, 0x00008D43 }, /* GL_RENDERBUFFER_HEIGHT_OES */ + { 37156, 0x00008D44 }, /* GL_RENDERBUFFER_INTERNAL_FORMAT */ + { 37188, 0x00008D44 }, /* GL_RENDERBUFFER_INTERNAL_FORMAT_EXT */ + { 37224, 0x00008D44 }, /* GL_RENDERBUFFER_INTERNAL_FORMAT_OES */ + { 37260, 0x00008D41 }, /* GL_RENDERBUFFER_OES */ + { 37280, 0x00008D50 }, /* GL_RENDERBUFFER_RED_SIZE */ + { 37305, 0x00008D50 }, /* GL_RENDERBUFFER_RED_SIZE_OES */ + { 37334, 0x00008CAB }, /* GL_RENDERBUFFER_SAMPLES */ + { 37358, 0x00008CAB }, /* GL_RENDERBUFFER_SAMPLES_EXT */ + { 37386, 0x00008D55 }, /* GL_RENDERBUFFER_STENCIL_SIZE */ + { 37415, 0x00008D55 }, /* GL_RENDERBUFFER_STENCIL_SIZE_OES */ + { 37448, 0x00008D42 }, /* GL_RENDERBUFFER_WIDTH */ + { 37470, 0x00008D42 }, /* GL_RENDERBUFFER_WIDTH_EXT */ + { 37496, 0x00008D42 }, /* GL_RENDERBUFFER_WIDTH_OES */ + { 37522, 0x00001F01 }, /* GL_RENDERER */ + { 37534, 0x00000C40 }, /* GL_RENDER_MODE */ + { 37549, 0x00002901 }, /* GL_REPEAT */ + { 37559, 0x00001E01 }, /* GL_REPLACE */ + { 37570, 0x00008062 }, /* GL_REPLACE_EXT */ + { 37585, 0x00008153 }, /* GL_REPLICATE_BORDER_HP */ + { 37608, 0x00008D68 }, /* GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES */ + { 37644, 0x0000803A }, /* GL_RESCALE_NORMAL */ + { 37662, 0x0000803A }, /* GL_RESCALE_NORMAL_EXT */ + { 37684, 0x00008256 }, /* GL_RESET_NOTIFICATION_STRATEGY_ARB */ + { 37719, 0x00008A1B }, /* GL_RETAINED_APPLE */ + { 37737, 0x00000102 }, /* GL_RETURN */ + { 37747, 0x00008F99 }, /* GL_RG16_SNORM */ + { 37761, 0x00008F95 }, /* GL_RG8_SNORM */ + { 37774, 0x00001907 }, /* GL_RGB */ + { 37781, 0x00008052 }, /* GL_RGB10 */ + { 37790, 0x00008059 }, /* GL_RGB10_A2 */ + { 37802, 0x0000906F }, /* GL_RGB10_A2UI */ + { 37816, 0x00008059 }, /* GL_RGB10_A2_EXT */ + { 37832, 0x00008052 }, /* GL_RGB10_EXT */ + { 37845, 0x00008053 }, /* GL_RGB12 */ + { 37854, 0x00008053 }, /* GL_RGB12_EXT */ + { 37867, 0x00008054 }, /* GL_RGB16 */ + { 37876, 0x0000881B }, /* GL_RGB16F */ + { 37886, 0x00008D89 }, /* GL_RGB16I */ + { 37896, 0x00008D89 }, /* GL_RGB16I_EXT */ + { 37910, 0x00008D77 }, /* GL_RGB16UI */ + { 37921, 0x00008D77 }, /* GL_RGB16UI_EXT */ + { 37936, 0x00008054 }, /* GL_RGB16_EXT */ + { 37949, 0x00008F9A }, /* GL_RGB16_SNORM */ + { 37964, 0x0000804E }, /* GL_RGB2_EXT */ + { 37976, 0x00008815 }, /* GL_RGB32F */ + { 37986, 0x00008D83 }, /* GL_RGB32I */ + { 37996, 0x00008D83 }, /* GL_RGB32I_EXT */ + { 38010, 0x00008D71 }, /* GL_RGB32UI */ + { 38021, 0x00008D71 }, /* GL_RGB32UI_EXT */ + { 38036, 0x0000804F }, /* GL_RGB4 */ + { 38044, 0x0000804F }, /* GL_RGB4_EXT */ + { 38056, 0x000083A1 }, /* GL_RGB4_S3TC */ + { 38069, 0x00008050 }, /* GL_RGB5 */ + { 38077, 0x00008D62 }, /* GL_RGB565 */ + { 38087, 0x00008D62 }, /* GL_RGB565_OES */ + { 38101, 0x00008057 }, /* GL_RGB5_A1 */ + { 38112, 0x00008057 }, /* GL_RGB5_A1_EXT */ + { 38127, 0x00008057 }, /* GL_RGB5_A1_OES */ + { 38142, 0x00008050 }, /* GL_RGB5_EXT */ + { 38154, 0x00008051 }, /* GL_RGB8 */ + { 38162, 0x00008D8F }, /* GL_RGB8I */ + { 38171, 0x00008D8F }, /* GL_RGB8I_EXT */ + { 38184, 0x00008D7D }, /* GL_RGB8UI */ + { 38194, 0x00008D7D }, /* GL_RGB8UI_EXT */ + { 38208, 0x00008051 }, /* GL_RGB8_EXT */ + { 38220, 0x00008051 }, /* GL_RGB8_OES */ + { 38232, 0x00008F96 }, /* GL_RGB8_SNORM */ + { 38246, 0x00008C3D }, /* GL_RGB9_E5 */ + { 38257, 0x00001908 }, /* GL_RGBA */ + { 38265, 0x0000805A }, /* GL_RGBA12 */ + { 38275, 0x0000805A }, /* GL_RGBA12_EXT */ + { 38289, 0x0000805B }, /* GL_RGBA16 */ + { 38299, 0x0000881A }, /* GL_RGBA16F */ + { 38310, 0x00008D88 }, /* GL_RGBA16I */ + { 38321, 0x00008D88 }, /* GL_RGBA16I_EXT */ + { 38336, 0x00008D76 }, /* GL_RGBA16UI */ + { 38348, 0x00008D76 }, /* GL_RGBA16UI_EXT */ + { 38364, 0x0000805B }, /* GL_RGBA16_EXT */ + { 38378, 0x00008F9B }, /* GL_RGBA16_SNORM */ + { 38394, 0x00008055 }, /* GL_RGBA2 */ + { 38403, 0x00008055 }, /* GL_RGBA2_EXT */ + { 38416, 0x00008814 }, /* GL_RGBA32F */ + { 38427, 0x00008D82 }, /* GL_RGBA32I */ + { 38438, 0x00008D82 }, /* GL_RGBA32I_EXT */ + { 38453, 0x00008D70 }, /* GL_RGBA32UI */ + { 38465, 0x00008D70 }, /* GL_RGBA32UI_EXT */ + { 38481, 0x00008056 }, /* GL_RGBA4 */ + { 38490, 0x000083A5 }, /* GL_RGBA4_DXT5_S3TC */ + { 38509, 0x00008056 }, /* GL_RGBA4_EXT */ + { 38522, 0x00008056 }, /* GL_RGBA4_OES */ + { 38535, 0x000083A3 }, /* GL_RGBA4_S3TC */ + { 38549, 0x00008058 }, /* GL_RGBA8 */ + { 38558, 0x00008D8E }, /* GL_RGBA8I */ + { 38568, 0x00008D8E }, /* GL_RGBA8I_EXT */ + { 38582, 0x00008D7C }, /* GL_RGBA8UI */ + { 38593, 0x00008D7C }, /* GL_RGBA8UI_EXT */ + { 38608, 0x00008058 }, /* GL_RGBA8_EXT */ + { 38621, 0x00008058 }, /* GL_RGBA8_OES */ + { 38634, 0x00008F97 }, /* GL_RGBA8_SNORM */ + { 38649, 0x000083A4 }, /* GL_RGBA_DXT5_S3TC */ + { 38667, 0x00008820 }, /* GL_RGBA_FLOAT_MODE_ARB */ + { 38690, 0x00008D99 }, /* GL_RGBA_INTEGER */ + { 38706, 0x00008D99 }, /* GL_RGBA_INTEGER_EXT */ + { 38726, 0x00008D9E }, /* GL_RGBA_INTEGER_MODE_EXT */ + { 38751, 0x00000C31 }, /* GL_RGBA_MODE */ + { 38764, 0x000083A2 }, /* GL_RGBA_S3TC */ + { 38777, 0x00008F93 }, /* GL_RGBA_SNORM */ + { 38791, 0x00008D98 }, /* GL_RGB_INTEGER */ + { 38806, 0x00008D98 }, /* GL_RGB_INTEGER_EXT */ + { 38825, 0x000083A0 }, /* GL_RGB_S3TC */ + { 38837, 0x00008573 }, /* GL_RGB_SCALE */ + { 38850, 0x00008573 }, /* GL_RGB_SCALE_ARB */ + { 38867, 0x00008573 }, /* GL_RGB_SCALE_EXT */ + { 38884, 0x00008F92 }, /* GL_RGB_SNORM */ + { 38897, 0x00008F91 }, /* GL_RG_SNORM */ + { 38909, 0x00000407 }, /* GL_RIGHT */ + { 38918, 0x00002000 }, /* GL_S */ + { 38923, 0x00008B5D }, /* GL_SAMPLER_1D */ + { 38937, 0x00008DC0 }, /* GL_SAMPLER_1D_ARRAY */ + { 38957, 0x00008DC0 }, /* GL_SAMPLER_1D_ARRAY_EXT */ + { 38981, 0x00008DC3 }, /* GL_SAMPLER_1D_ARRAY_SHADOW */ + { 39008, 0x00008DC3 }, /* GL_SAMPLER_1D_ARRAY_SHADOW_EXT */ + { 39039, 0x00008B61 }, /* GL_SAMPLER_1D_SHADOW */ + { 39060, 0x00008B5E }, /* GL_SAMPLER_2D */ + { 39074, 0x00008DC1 }, /* GL_SAMPLER_2D_ARRAY */ + { 39094, 0x00008DC1 }, /* GL_SAMPLER_2D_ARRAY_EXT */ + { 39118, 0x00008DC4 }, /* GL_SAMPLER_2D_ARRAY_SHADOW */ + { 39145, 0x00008DC4 }, /* GL_SAMPLER_2D_ARRAY_SHADOW_EXT */ + { 39176, 0x00008B63 }, /* GL_SAMPLER_2D_RECT */ + { 39195, 0x00008B64 }, /* GL_SAMPLER_2D_RECT_SHADOW */ + { 39221, 0x00008B62 }, /* GL_SAMPLER_2D_SHADOW */ + { 39242, 0x00008B5F }, /* GL_SAMPLER_3D */ + { 39256, 0x00008B5F }, /* GL_SAMPLER_3D_OES */ + { 39274, 0x00008919 }, /* GL_SAMPLER_BINDING */ + { 39293, 0x00008DC2 }, /* GL_SAMPLER_BUFFER */ + { 39311, 0x00008DC2 }, /* GL_SAMPLER_BUFFER_EXT */ + { 39333, 0x00008B60 }, /* GL_SAMPLER_CUBE */ + { 39349, 0x00008DC5 }, /* GL_SAMPLER_CUBE_SHADOW */ + { 39372, 0x00008DC5 }, /* GL_SAMPLER_CUBE_SHADOW_EXT */ + { 39399, 0x00008D66 }, /* GL_SAMPLER_EXTERNAL_OES */ + { 39423, 0x000080A9 }, /* GL_SAMPLES */ + { 39434, 0x000086B4 }, /* GL_SAMPLES_3DFX */ + { 39450, 0x000080A9 }, /* GL_SAMPLES_ARB */ + { 39465, 0x00008914 }, /* GL_SAMPLES_PASSED */ + { 39483, 0x00008914 }, /* GL_SAMPLES_PASSED_ARB */ + { 39505, 0x0000809E }, /* GL_SAMPLE_ALPHA_TO_COVERAGE */ + { 39533, 0x0000809E }, /* GL_SAMPLE_ALPHA_TO_COVERAGE_ARB */ + { 39565, 0x0000809F }, /* GL_SAMPLE_ALPHA_TO_ONE */ + { 39588, 0x0000809F }, /* GL_SAMPLE_ALPHA_TO_ONE_ARB */ + { 39615, 0x000080A8 }, /* GL_SAMPLE_BUFFERS */ + { 39633, 0x000086B3 }, /* GL_SAMPLE_BUFFERS_3DFX */ + { 39656, 0x000080A8 }, /* GL_SAMPLE_BUFFERS_ARB */ + { 39678, 0x000080A0 }, /* GL_SAMPLE_COVERAGE */ + { 39697, 0x000080A0 }, /* GL_SAMPLE_COVERAGE_ARB */ + { 39720, 0x000080AB }, /* GL_SAMPLE_COVERAGE_INVERT */ + { 39746, 0x000080AB }, /* GL_SAMPLE_COVERAGE_INVERT_ARB */ + { 39776, 0x000080AA }, /* GL_SAMPLE_COVERAGE_VALUE */ + { 39801, 0x000080AA }, /* GL_SAMPLE_COVERAGE_VALUE_ARB */ + { 39830, 0x00080000 }, /* GL_SCISSOR_BIT */ + { 39845, 0x00000C10 }, /* GL_SCISSOR_BOX */ + { 39860, 0x00000C11 }, /* GL_SCISSOR_TEST */ + { 39876, 0x0000845E }, /* GL_SECONDARY_COLOR_ARRAY */ + { 39901, 0x0000889C }, /* GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING */ + { 39941, 0x0000889C }, /* GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING_ARB */ + { 39985, 0x0000845D }, /* GL_SECONDARY_COLOR_ARRAY_POINTER */ + { 40018, 0x0000845A }, /* GL_SECONDARY_COLOR_ARRAY_SIZE */ + { 40048, 0x0000845C }, /* GL_SECONDARY_COLOR_ARRAY_STRIDE */ + { 40080, 0x0000845B }, /* GL_SECONDARY_COLOR_ARRAY_TYPE */ + { 40110, 0x00001C02 }, /* GL_SELECT */ + { 40120, 0x00000DF3 }, /* GL_SELECTION_BUFFER_POINTER */ + { 40148, 0x00000DF4 }, /* GL_SELECTION_BUFFER_SIZE */ + { 40173, 0x00008012 }, /* GL_SEPARABLE_2D */ + { 40189, 0x00008C8D }, /* GL_SEPARATE_ATTRIBS */ + { 40209, 0x00008C8D }, /* GL_SEPARATE_ATTRIBS_EXT */ + { 40233, 0x000081FA }, /* GL_SEPARATE_SPECULAR_COLOR */ + { 40260, 0x000081FA }, /* GL_SEPARATE_SPECULAR_COLOR_EXT */ + { 40291, 0x0000150F }, /* GL_SET */ + { 40298, 0x00008DF8 }, /* GL_SHADER_BINARY_FORMATS */ + { 40323, 0x00008DFA }, /* GL_SHADER_COMPILER */ + { 40342, 0x00008B48 }, /* GL_SHADER_OBJECT_ARB */ + { 40363, 0x00008B88 }, /* GL_SHADER_SOURCE_LENGTH */ + { 40387, 0x00008B4F }, /* GL_SHADER_TYPE */ + { 40402, 0x00000B54 }, /* GL_SHADE_MODEL */ + { 40417, 0x00008B8C }, /* GL_SHADING_LANGUAGE_VERSION */ + { 40445, 0x000080BF }, /* GL_SHADOW_AMBIENT_SGIX */ + { 40468, 0x000081FB }, /* GL_SHARED_TEXTURE_PALETTE_EXT */ + { 40498, 0x00001601 }, /* GL_SHININESS */ + { 40511, 0x00001402 }, /* GL_SHORT */ + { 40520, 0x00009119 }, /* GL_SIGNALED */ + { 40532, 0x00008F9C }, /* GL_SIGNED_NORMALIZED */ + { 40553, 0x000081F9 }, /* GL_SINGLE_COLOR */ + { 40569, 0x000081F9 }, /* GL_SINGLE_COLOR_EXT */ + { 40589, 0x000085CC }, /* GL_SLICE_ACCUM_SUN */ + { 40608, 0x00008C46 }, /* GL_SLUMINANCE */ + { 40622, 0x00008C47 }, /* GL_SLUMINANCE8 */ + { 40637, 0x00008C45 }, /* GL_SLUMINANCE8_ALPHA8 */ + { 40659, 0x00008C44 }, /* GL_SLUMINANCE_ALPHA */ + { 40679, 0x00001D01 }, /* GL_SMOOTH */ + { 40689, 0x00000B23 }, /* GL_SMOOTH_LINE_WIDTH_GRANULARITY */ + { 40722, 0x00000B22 }, /* GL_SMOOTH_LINE_WIDTH_RANGE */ + { 40749, 0x00000B13 }, /* GL_SMOOTH_POINT_SIZE_GRANULARITY */ + { 40782, 0x00000B12 }, /* GL_SMOOTH_POINT_SIZE_RANGE */ + { 40809, 0x00008588 }, /* GL_SOURCE0_ALPHA */ + { 40826, 0x00008588 }, /* GL_SOURCE0_ALPHA_ARB */ + { 40847, 0x00008588 }, /* GL_SOURCE0_ALPHA_EXT */ + { 40868, 0x00008580 }, /* GL_SOURCE0_RGB */ + { 40883, 0x00008580 }, /* GL_SOURCE0_RGB_ARB */ + { 40902, 0x00008580 }, /* GL_SOURCE0_RGB_EXT */ + { 40921, 0x00008589 }, /* GL_SOURCE1_ALPHA */ + { 40938, 0x00008589 }, /* GL_SOURCE1_ALPHA_ARB */ + { 40959, 0x00008589 }, /* GL_SOURCE1_ALPHA_EXT */ + { 40980, 0x00008581 }, /* GL_SOURCE1_RGB */ + { 40995, 0x00008581 }, /* GL_SOURCE1_RGB_ARB */ + { 41014, 0x00008581 }, /* GL_SOURCE1_RGB_EXT */ + { 41033, 0x0000858A }, /* GL_SOURCE2_ALPHA */ + { 41050, 0x0000858A }, /* GL_SOURCE2_ALPHA_ARB */ + { 41071, 0x0000858A }, /* GL_SOURCE2_ALPHA_EXT */ + { 41092, 0x00008582 }, /* GL_SOURCE2_RGB */ + { 41107, 0x00008582 }, /* GL_SOURCE2_RGB_ARB */ + { 41126, 0x00008582 }, /* GL_SOURCE2_RGB_EXT */ + { 41145, 0x0000858B }, /* GL_SOURCE3_ALPHA_NV */ + { 41165, 0x00008583 }, /* GL_SOURCE3_RGB_NV */ + { 41183, 0x00001202 }, /* GL_SPECULAR */ + { 41195, 0x00002402 }, /* GL_SPHERE_MAP */ + { 41209, 0x00001206 }, /* GL_SPOT_CUTOFF */ + { 41224, 0x00001204 }, /* GL_SPOT_DIRECTION */ + { 41242, 0x00001205 }, /* GL_SPOT_EXPONENT */ + { 41259, 0x00008588 }, /* GL_SRC0_ALPHA */ + { 41273, 0x00008580 }, /* GL_SRC0_RGB */ + { 41285, 0x00008589 }, /* GL_SRC1_ALPHA */ + { 41299, 0x000088F9 }, /* GL_SRC1_COLOR */ + { 41313, 0x00008581 }, /* GL_SRC1_RGB */ + { 41325, 0x0000858A }, /* GL_SRC2_ALPHA */ + { 41339, 0x00008582 }, /* GL_SRC2_RGB */ + { 41351, 0x00000302 }, /* GL_SRC_ALPHA */ + { 41364, 0x00000308 }, /* GL_SRC_ALPHA_SATURATE */ + { 41386, 0x00000300 }, /* GL_SRC_COLOR */ + { 41399, 0x00008C40 }, /* GL_SRGB */ + { 41407, 0x00008C41 }, /* GL_SRGB8 */ + { 41416, 0x00008C43 }, /* GL_SRGB8_ALPHA8 */ + { 41432, 0x00008C42 }, /* GL_SRGB_ALPHA */ + { 41446, 0x00000503 }, /* GL_STACK_OVERFLOW */ + { 41464, 0x00000504 }, /* GL_STACK_UNDERFLOW */ + { 41483, 0x000088E6 }, /* GL_STATIC_COPY */ + { 41498, 0x000088E6 }, /* GL_STATIC_COPY_ARB */ + { 41517, 0x000088E4 }, /* GL_STATIC_DRAW */ + { 41532, 0x000088E4 }, /* GL_STATIC_DRAW_ARB */ + { 41551, 0x000088E5 }, /* GL_STATIC_READ */ + { 41566, 0x000088E5 }, /* GL_STATIC_READ_ARB */ + { 41585, 0x00001802 }, /* GL_STENCIL */ + { 41596, 0x00008D20 }, /* GL_STENCIL_ATTACHMENT */ + { 41618, 0x00008D20 }, /* GL_STENCIL_ATTACHMENT_EXT */ + { 41644, 0x00008D20 }, /* GL_STENCIL_ATTACHMENT_OES */ + { 41670, 0x00008801 }, /* GL_STENCIL_BACK_FAIL */ + { 41691, 0x00008801 }, /* GL_STENCIL_BACK_FAIL_ATI */ + { 41716, 0x00008800 }, /* GL_STENCIL_BACK_FUNC */ + { 41737, 0x00008800 }, /* GL_STENCIL_BACK_FUNC_ATI */ + { 41762, 0x00008802 }, /* GL_STENCIL_BACK_PASS_DEPTH_FAIL */ + { 41794, 0x00008802 }, /* GL_STENCIL_BACK_PASS_DEPTH_FAIL_ATI */ + { 41830, 0x00008803 }, /* GL_STENCIL_BACK_PASS_DEPTH_PASS */ + { 41862, 0x00008803 }, /* GL_STENCIL_BACK_PASS_DEPTH_PASS_ATI */ + { 41898, 0x00008CA3 }, /* GL_STENCIL_BACK_REF */ + { 41918, 0x00008CA4 }, /* GL_STENCIL_BACK_VALUE_MASK */ + { 41945, 0x00008CA5 }, /* GL_STENCIL_BACK_WRITEMASK */ + { 41971, 0x00000D57 }, /* GL_STENCIL_BITS */ + { 41987, 0x00008224 }, /* GL_STENCIL_BUFFER */ + { 42005, 0x00000400 }, /* GL_STENCIL_BUFFER_BIT */ + { 42027, 0x00000B91 }, /* GL_STENCIL_CLEAR_VALUE */ + { 42050, 0x00000B94 }, /* GL_STENCIL_FAIL */ + { 42066, 0x00000B92 }, /* GL_STENCIL_FUNC */ + { 42082, 0x00001901 }, /* GL_STENCIL_INDEX */ + { 42099, 0x00008D46 }, /* GL_STENCIL_INDEX1 */ + { 42117, 0x00008D49 }, /* GL_STENCIL_INDEX16 */ + { 42136, 0x00008D49 }, /* GL_STENCIL_INDEX16_EXT */ + { 42159, 0x00008D46 }, /* GL_STENCIL_INDEX1_EXT */ + { 42181, 0x00008D46 }, /* GL_STENCIL_INDEX1_OES */ + { 42203, 0x00008D47 }, /* GL_STENCIL_INDEX4 */ + { 42221, 0x00008D47 }, /* GL_STENCIL_INDEX4_EXT */ + { 42243, 0x00008D47 }, /* GL_STENCIL_INDEX4_OES */ + { 42265, 0x00008D48 }, /* GL_STENCIL_INDEX8 */ + { 42283, 0x00008D48 }, /* GL_STENCIL_INDEX8_EXT */ + { 42305, 0x00008D48 }, /* GL_STENCIL_INDEX8_OES */ + { 42327, 0x00008D45 }, /* GL_STENCIL_INDEX_EXT */ + { 42348, 0x00000B95 }, /* GL_STENCIL_PASS_DEPTH_FAIL */ + { 42375, 0x00000B96 }, /* GL_STENCIL_PASS_DEPTH_PASS */ + { 42402, 0x00000B97 }, /* GL_STENCIL_REF */ + { 42417, 0x00000B90 }, /* GL_STENCIL_TEST */ + { 42433, 0x00008910 }, /* GL_STENCIL_TEST_TWO_SIDE_EXT */ + { 42462, 0x00000B93 }, /* GL_STENCIL_VALUE_MASK */ + { 42484, 0x00000B98 }, /* GL_STENCIL_WRITEMASK */ + { 42505, 0x00000C33 }, /* GL_STEREO */ + { 42515, 0x000085BE }, /* GL_STORAGE_CACHED_APPLE */ + { 42539, 0x000085BD }, /* GL_STORAGE_PRIVATE_APPLE */ + { 42564, 0x000085BF }, /* GL_STORAGE_SHARED_APPLE */ + { 42588, 0x000088E2 }, /* GL_STREAM_COPY */ + { 42603, 0x000088E2 }, /* GL_STREAM_COPY_ARB */ + { 42622, 0x000088E0 }, /* GL_STREAM_DRAW */ + { 42637, 0x000088E0 }, /* GL_STREAM_DRAW_ARB */ + { 42656, 0x000088E1 }, /* GL_STREAM_READ */ + { 42671, 0x000088E1 }, /* GL_STREAM_READ_ARB */ + { 42690, 0x00000D50 }, /* GL_SUBPIXEL_BITS */ + { 42707, 0x000084E7 }, /* GL_SUBTRACT */ + { 42719, 0x000084E7 }, /* GL_SUBTRACT_ARB */ + { 42735, 0x00009113 }, /* GL_SYNC_CONDITION */ + { 42753, 0x00009116 }, /* GL_SYNC_FENCE */ + { 42767, 0x00009115 }, /* GL_SYNC_FLAGS */ + { 42781, 0x00000001 }, /* GL_SYNC_FLUSH_COMMANDS_BIT */ + { 42808, 0x00009117 }, /* GL_SYNC_GPU_COMMANDS_COMPLETE */ + { 42838, 0x00009114 }, /* GL_SYNC_STATUS */ + { 42853, 0x00002001 }, /* GL_T */ + { 42858, 0x00002A2A }, /* GL_T2F_C3F_V3F */ + { 42873, 0x00002A2C }, /* GL_T2F_C4F_N3F_V3F */ + { 42892, 0x00002A29 }, /* GL_T2F_C4UB_V3F */ + { 42908, 0x00002A2B }, /* GL_T2F_N3F_V3F */ + { 42923, 0x00002A27 }, /* GL_T2F_V3F */ + { 42934, 0x00002A2D }, /* GL_T4F_C4F_N3F_V4F */ + { 42953, 0x00002A28 }, /* GL_T4F_V4F */ + { 42964, 0x00008031 }, /* GL_TABLE_TOO_LARGE_EXT */ + { 42987, 0x00001702 }, /* GL_TEXTURE */ + { 42998, 0x000084C0 }, /* GL_TEXTURE0 */ + { 43010, 0x000084C0 }, /* GL_TEXTURE0_ARB */ + { 43026, 0x000084C1 }, /* GL_TEXTURE1 */ + { 43038, 0x000084CA }, /* GL_TEXTURE10 */ + { 43051, 0x000084CA }, /* GL_TEXTURE10_ARB */ + { 43068, 0x000084CB }, /* GL_TEXTURE11 */ + { 43081, 0x000084CB }, /* GL_TEXTURE11_ARB */ + { 43098, 0x000084CC }, /* GL_TEXTURE12 */ + { 43111, 0x000084CC }, /* GL_TEXTURE12_ARB */ + { 43128, 0x000084CD }, /* GL_TEXTURE13 */ + { 43141, 0x000084CD }, /* GL_TEXTURE13_ARB */ + { 43158, 0x000084CE }, /* GL_TEXTURE14 */ + { 43171, 0x000084CE }, /* GL_TEXTURE14_ARB */ + { 43188, 0x000084CF }, /* GL_TEXTURE15 */ + { 43201, 0x000084CF }, /* GL_TEXTURE15_ARB */ + { 43218, 0x000084D0 }, /* GL_TEXTURE16 */ + { 43231, 0x000084D0 }, /* GL_TEXTURE16_ARB */ + { 43248, 0x000084D1 }, /* GL_TEXTURE17 */ + { 43261, 0x000084D1 }, /* GL_TEXTURE17_ARB */ + { 43278, 0x000084D2 }, /* GL_TEXTURE18 */ + { 43291, 0x000084D2 }, /* GL_TEXTURE18_ARB */ + { 43308, 0x000084D3 }, /* GL_TEXTURE19 */ + { 43321, 0x000084D3 }, /* GL_TEXTURE19_ARB */ + { 43338, 0x000084C1 }, /* GL_TEXTURE1_ARB */ + { 43354, 0x000084C2 }, /* GL_TEXTURE2 */ + { 43366, 0x000084D4 }, /* GL_TEXTURE20 */ + { 43379, 0x000084D4 }, /* GL_TEXTURE20_ARB */ + { 43396, 0x000084D5 }, /* GL_TEXTURE21 */ + { 43409, 0x000084D5 }, /* GL_TEXTURE21_ARB */ + { 43426, 0x000084D6 }, /* GL_TEXTURE22 */ + { 43439, 0x000084D6 }, /* GL_TEXTURE22_ARB */ + { 43456, 0x000084D7 }, /* GL_TEXTURE23 */ + { 43469, 0x000084D7 }, /* GL_TEXTURE23_ARB */ + { 43486, 0x000084D8 }, /* GL_TEXTURE24 */ + { 43499, 0x000084D8 }, /* GL_TEXTURE24_ARB */ + { 43516, 0x000084D9 }, /* GL_TEXTURE25 */ + { 43529, 0x000084D9 }, /* GL_TEXTURE25_ARB */ + { 43546, 0x000084DA }, /* GL_TEXTURE26 */ + { 43559, 0x000084DA }, /* GL_TEXTURE26_ARB */ + { 43576, 0x000084DB }, /* GL_TEXTURE27 */ + { 43589, 0x000084DB }, /* GL_TEXTURE27_ARB */ + { 43606, 0x000084DC }, /* GL_TEXTURE28 */ + { 43619, 0x000084DC }, /* GL_TEXTURE28_ARB */ + { 43636, 0x000084DD }, /* GL_TEXTURE29 */ + { 43649, 0x000084DD }, /* GL_TEXTURE29_ARB */ + { 43666, 0x000084C2 }, /* GL_TEXTURE2_ARB */ + { 43682, 0x000084C3 }, /* GL_TEXTURE3 */ + { 43694, 0x000084DE }, /* GL_TEXTURE30 */ + { 43707, 0x000084DE }, /* GL_TEXTURE30_ARB */ + { 43724, 0x000084DF }, /* GL_TEXTURE31 */ + { 43737, 0x000084DF }, /* GL_TEXTURE31_ARB */ + { 43754, 0x000084C3 }, /* GL_TEXTURE3_ARB */ + { 43770, 0x000084C4 }, /* GL_TEXTURE4 */ + { 43782, 0x000084C4 }, /* GL_TEXTURE4_ARB */ + { 43798, 0x000084C5 }, /* GL_TEXTURE5 */ + { 43810, 0x000084C5 }, /* GL_TEXTURE5_ARB */ + { 43826, 0x000084C6 }, /* GL_TEXTURE6 */ + { 43838, 0x000084C6 }, /* GL_TEXTURE6_ARB */ + { 43854, 0x000084C7 }, /* GL_TEXTURE7 */ + { 43866, 0x000084C7 }, /* GL_TEXTURE7_ARB */ + { 43882, 0x000084C8 }, /* GL_TEXTURE8 */ + { 43894, 0x000084C8 }, /* GL_TEXTURE8_ARB */ + { 43910, 0x000084C9 }, /* GL_TEXTURE9 */ + { 43922, 0x000084C9 }, /* GL_TEXTURE9_ARB */ + { 43938, 0x00000DE0 }, /* GL_TEXTURE_1D */ + { 43952, 0x00008C18 }, /* GL_TEXTURE_1D_ARRAY */ + { 43972, 0x00008C18 }, /* GL_TEXTURE_1D_ARRAY_EXT */ + { 43996, 0x00000DE1 }, /* GL_TEXTURE_2D */ + { 44010, 0x00008C1A }, /* GL_TEXTURE_2D_ARRAY */ + { 44030, 0x00008C1A }, /* GL_TEXTURE_2D_ARRAY_EXT */ + { 44054, 0x0000806F }, /* GL_TEXTURE_3D */ + { 44068, 0x0000806F }, /* GL_TEXTURE_3D_OES */ + { 44086, 0x0000805F }, /* GL_TEXTURE_ALPHA_SIZE */ + { 44108, 0x0000805F }, /* GL_TEXTURE_ALPHA_SIZE_EXT */ + { 44134, 0x0000813C }, /* GL_TEXTURE_BASE_LEVEL */ + { 44156, 0x00008068 }, /* GL_TEXTURE_BINDING_1D */ + { 44178, 0x00008C1C }, /* GL_TEXTURE_BINDING_1D_ARRAY */ + { 44206, 0x00008C1C }, /* GL_TEXTURE_BINDING_1D_ARRAY_EXT */ + { 44238, 0x00008069 }, /* GL_TEXTURE_BINDING_2D */ + { 44260, 0x00008C1D }, /* GL_TEXTURE_BINDING_2D_ARRAY */ + { 44288, 0x00008C1D }, /* GL_TEXTURE_BINDING_2D_ARRAY_EXT */ + { 44320, 0x0000806A }, /* GL_TEXTURE_BINDING_3D */ + { 44342, 0x0000806A }, /* GL_TEXTURE_BINDING_3D_OES */ + { 44368, 0x00008C2C }, /* GL_TEXTURE_BINDING_BUFFER */ + { 44394, 0x00008C2C }, /* GL_TEXTURE_BINDING_BUFFER_ARB */ + { 44424, 0x00008514 }, /* GL_TEXTURE_BINDING_CUBE_MAP */ + { 44452, 0x00008514 }, /* GL_TEXTURE_BINDING_CUBE_MAP_ARB */ + { 44484, 0x00008514 }, /* GL_TEXTURE_BINDING_CUBE_MAP_OES */ + { 44516, 0x00008D67 }, /* GL_TEXTURE_BINDING_EXTERNAL_OES */ + { 44548, 0x000084F6 }, /* GL_TEXTURE_BINDING_RECTANGLE */ + { 44577, 0x000084F6 }, /* GL_TEXTURE_BINDING_RECTANGLE_ARB */ + { 44610, 0x000084F6 }, /* GL_TEXTURE_BINDING_RECTANGLE_NV */ + { 44642, 0x00040000 }, /* GL_TEXTURE_BIT */ + { 44657, 0x0000805E }, /* GL_TEXTURE_BLUE_SIZE */ + { 44678, 0x0000805E }, /* GL_TEXTURE_BLUE_SIZE_EXT */ + { 44703, 0x00001005 }, /* GL_TEXTURE_BORDER */ + { 44721, 0x00001004 }, /* GL_TEXTURE_BORDER_COLOR */ + { 44745, 0x00008C2A }, /* GL_TEXTURE_BUFFER */ + { 44763, 0x00008C2A }, /* GL_TEXTURE_BUFFER_ARB */ + { 44785, 0x00008C2D }, /* GL_TEXTURE_BUFFER_DATA_STORE_BINDING */ + { 44822, 0x00008C2D }, /* GL_TEXTURE_BUFFER_DATA_STORE_BINDING_ARB */ + { 44863, 0x00008C2E }, /* GL_TEXTURE_BUFFER_FORMAT */ + { 44888, 0x00008C2E }, /* GL_TEXTURE_BUFFER_FORMAT_ARB */ + { 44917, 0x00008171 }, /* GL_TEXTURE_CLIPMAP_CENTER_SGIX */ + { 44948, 0x00008176 }, /* GL_TEXTURE_CLIPMAP_DEPTH_SGIX */ + { 44978, 0x00008172 }, /* GL_TEXTURE_CLIPMAP_FRAME_SGIX */ + { 45008, 0x00008175 }, /* GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX */ + { 45043, 0x00008173 }, /* GL_TEXTURE_CLIPMAP_OFFSET_SGIX */ + { 45074, 0x00008174 }, /* GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX */ + { 45112, 0x000080BC }, /* GL_TEXTURE_COLOR_TABLE_SGI */ + { 45139, 0x000081EF }, /* GL_TEXTURE_COLOR_WRITEMASK_SGIS */ + { 45171, 0x000080BF }, /* GL_TEXTURE_COMPARE_FAIL_VALUE_ARB */ + { 45205, 0x0000884D }, /* GL_TEXTURE_COMPARE_FUNC */ + { 45229, 0x0000884D }, /* GL_TEXTURE_COMPARE_FUNC_ARB */ + { 45257, 0x0000884C }, /* GL_TEXTURE_COMPARE_MODE */ + { 45281, 0x0000884C }, /* GL_TEXTURE_COMPARE_MODE_ARB */ + { 45309, 0x0000819B }, /* GL_TEXTURE_COMPARE_OPERATOR_SGIX */ + { 45342, 0x0000819A }, /* GL_TEXTURE_COMPARE_SGIX */ + { 45366, 0x00001003 }, /* GL_TEXTURE_COMPONENTS */ + { 45388, 0x000086A1 }, /* GL_TEXTURE_COMPRESSED */ + { 45410, 0x000086A1 }, /* GL_TEXTURE_COMPRESSED_ARB */ + { 45436, 0x000086A3 }, /* GL_TEXTURE_COMPRESSED_FORMATS_ARB */ + { 45470, 0x000086A0 }, /* GL_TEXTURE_COMPRESSED_IMAGE_SIZE */ + { 45503, 0x000086A0 }, /* GL_TEXTURE_COMPRESSED_IMAGE_SIZE_ARB */ + { 45540, 0x000084EF }, /* GL_TEXTURE_COMPRESSION_HINT */ + { 45568, 0x000084EF }, /* GL_TEXTURE_COMPRESSION_HINT_ARB */ + { 45600, 0x00008078 }, /* GL_TEXTURE_COORD_ARRAY */ + { 45623, 0x0000889A }, /* GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING */ + { 45661, 0x0000889A }, /* GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING_ARB */ + { 45703, 0x00008092 }, /* GL_TEXTURE_COORD_ARRAY_POINTER */ + { 45734, 0x00008088 }, /* GL_TEXTURE_COORD_ARRAY_SIZE */ + { 45762, 0x0000808A }, /* GL_TEXTURE_COORD_ARRAY_STRIDE */ + { 45792, 0x00008089 }, /* GL_TEXTURE_COORD_ARRAY_TYPE */ + { 45820, 0x00008B9D }, /* GL_TEXTURE_CROP_RECT_OES */ + { 45845, 0x00008513 }, /* GL_TEXTURE_CUBE_MAP */ + { 45865, 0x00008513 }, /* GL_TEXTURE_CUBE_MAP_ARB */ + { 45889, 0x00008516 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X */ + { 45920, 0x00008516 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X_ARB */ + { 45955, 0x00008516 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X_OES */ + { 45990, 0x00008518 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y */ + { 46021, 0x00008518 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_ARB */ + { 46056, 0x00008518 }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y_OES */ + { 46091, 0x0000851A }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z */ + { 46122, 0x0000851A }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_ARB */ + { 46157, 0x0000851A }, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z_OES */ + { 46192, 0x00008513 }, /* GL_TEXTURE_CUBE_MAP_OES */ + { 46216, 0x00008515 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X */ + { 46247, 0x00008515 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X_ARB */ + { 46282, 0x00008515 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X_OES */ + { 46317, 0x00008517 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y */ + { 46348, 0x00008517 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y_ARB */ + { 46383, 0x00008517 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y_OES */ + { 46418, 0x00008519 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z */ + { 46449, 0x00008519 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z_ARB */ + { 46484, 0x00008519 }, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z_OES */ + { 46519, 0x0000884F }, /* GL_TEXTURE_CUBE_MAP_SEAMLESS */ + { 46548, 0x00008071 }, /* GL_TEXTURE_DEPTH */ + { 46565, 0x0000884A }, /* GL_TEXTURE_DEPTH_SIZE */ + { 46587, 0x0000884A }, /* GL_TEXTURE_DEPTH_SIZE_ARB */ + { 46613, 0x00002300 }, /* GL_TEXTURE_ENV */ + { 46628, 0x00002201 }, /* GL_TEXTURE_ENV_COLOR */ + { 46649, 0x00002200 }, /* GL_TEXTURE_ENV_MODE */ + { 46669, 0x00008D65 }, /* GL_TEXTURE_EXTERNAL_OES */ + { 46693, 0x00008500 }, /* GL_TEXTURE_FILTER_CONTROL */ + { 46719, 0x00008500 }, /* GL_TEXTURE_FILTER_CONTROL_EXT */ + { 46749, 0x00002500 }, /* GL_TEXTURE_GEN_MODE */ + { 46769, 0x00002500 }, /* GL_TEXTURE_GEN_MODE_OES */ + { 46793, 0x00000C63 }, /* GL_TEXTURE_GEN_Q */ + { 46810, 0x00000C62 }, /* GL_TEXTURE_GEN_R */ + { 46827, 0x00000C60 }, /* GL_TEXTURE_GEN_S */ + { 46844, 0x00008D60 }, /* GL_TEXTURE_GEN_STR_OES */ + { 46867, 0x00000C61 }, /* GL_TEXTURE_GEN_T */ + { 46884, 0x0000819D }, /* GL_TEXTURE_GEQUAL_R_SGIX */ + { 46909, 0x0000805D }, /* GL_TEXTURE_GREEN_SIZE */ + { 46931, 0x0000805D }, /* GL_TEXTURE_GREEN_SIZE_EXT */ + { 46957, 0x00001001 }, /* GL_TEXTURE_HEIGHT */ + { 46975, 0x000080ED }, /* GL_TEXTURE_INDEX_SIZE_EXT */ + { 47001, 0x00008061 }, /* GL_TEXTURE_INTENSITY_SIZE */ + { 47027, 0x00008061 }, /* GL_TEXTURE_INTENSITY_SIZE_EXT */ + { 47057, 0x00001003 }, /* GL_TEXTURE_INTERNAL_FORMAT */ + { 47084, 0x0000819C }, /* GL_TEXTURE_LEQUAL_R_SGIX */ + { 47109, 0x00008501 }, /* GL_TEXTURE_LOD_BIAS */ + { 47129, 0x00008501 }, /* GL_TEXTURE_LOD_BIAS_EXT */ + { 47153, 0x00008190 }, /* GL_TEXTURE_LOD_BIAS_R_SGIX */ + { 47180, 0x0000818E }, /* GL_TEXTURE_LOD_BIAS_S_SGIX */ + { 47207, 0x0000818F }, /* GL_TEXTURE_LOD_BIAS_T_SGIX */ + { 47234, 0x00008060 }, /* GL_TEXTURE_LUMINANCE_SIZE */ + { 47260, 0x00008060 }, /* GL_TEXTURE_LUMINANCE_SIZE_EXT */ + { 47290, 0x00002800 }, /* GL_TEXTURE_MAG_FILTER */ + { 47312, 0x00000BA8 }, /* GL_TEXTURE_MATRIX */ + { 47330, 0x0000898F }, /* GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES */ + { 47370, 0x000084FE }, /* GL_TEXTURE_MAX_ANISOTROPY_EXT */ + { 47400, 0x0000836B }, /* GL_TEXTURE_MAX_CLAMP_R_SGIX */ + { 47428, 0x00008369 }, /* GL_TEXTURE_MAX_CLAMP_S_SGIX */ + { 47456, 0x0000836A }, /* GL_TEXTURE_MAX_CLAMP_T_SGIX */ + { 47484, 0x0000813D }, /* GL_TEXTURE_MAX_LEVEL */ + { 47505, 0x0000813B }, /* GL_TEXTURE_MAX_LOD */ + { 47524, 0x00002801 }, /* GL_TEXTURE_MIN_FILTER */ + { 47546, 0x0000813A }, /* GL_TEXTURE_MIN_LOD */ + { 47565, 0x00008066 }, /* GL_TEXTURE_PRIORITY */ + { 47585, 0x000085B7 }, /* GL_TEXTURE_RANGE_LENGTH_APPLE */ + { 47615, 0x000085B8 }, /* GL_TEXTURE_RANGE_POINTER_APPLE */ + { 47646, 0x000084F5 }, /* GL_TEXTURE_RECTANGLE */ + { 47667, 0x000084F5 }, /* GL_TEXTURE_RECTANGLE_ARB */ + { 47692, 0x000084F5 }, /* GL_TEXTURE_RECTANGLE_NV */ + { 47716, 0x0000805C }, /* GL_TEXTURE_RED_SIZE */ + { 47736, 0x0000805C }, /* GL_TEXTURE_RED_SIZE_EXT */ + { 47760, 0x00008067 }, /* GL_TEXTURE_RESIDENT */ + { 47780, 0x00008C3F }, /* GL_TEXTURE_SHARED_SIZE */ + { 47803, 0x00000BA5 }, /* GL_TEXTURE_STACK_DEPTH */ + { 47826, 0x000088F1 }, /* GL_TEXTURE_STENCIL_SIZE */ + { 47850, 0x000088F1 }, /* GL_TEXTURE_STENCIL_SIZE_EXT */ + { 47878, 0x000085BC }, /* GL_TEXTURE_STORAGE_HINT_APPLE */ + { 47908, 0x00008065 }, /* GL_TEXTURE_TOO_LARGE_EXT */ + { 47933, 0x0000888F }, /* GL_TEXTURE_UNSIGNED_REMAP_MODE_NV */ + { 47967, 0x00001000 }, /* GL_TEXTURE_WIDTH */ + { 47984, 0x00008072 }, /* GL_TEXTURE_WRAP_R */ + { 48002, 0x00008072 }, /* GL_TEXTURE_WRAP_R_OES */ + { 48024, 0x00002802 }, /* GL_TEXTURE_WRAP_S */ + { 48042, 0x00002803 }, /* GL_TEXTURE_WRAP_T */ + { 48060, 0x0000911B }, /* GL_TIMEOUT_EXPIRED */ + { 48079, 0x000088BF }, /* GL_TIME_ELAPSED_EXT */ + { 48099, 0x00008648 }, /* GL_TRACK_MATRIX_NV */ + { 48118, 0x00008649 }, /* GL_TRACK_MATRIX_TRANSFORM_NV */ + { 48147, 0x00001000 }, /* GL_TRANSFORM_BIT */ + { 48164, 0x00008E22 }, /* GL_TRANSFORM_FEEDBACK */ + { 48186, 0x00008E25 }, /* GL_TRANSFORM_FEEDBACK_BINDING */ + { 48216, 0x00008C8E }, /* GL_TRANSFORM_FEEDBACK_BUFFER */ + { 48245, 0x00008E24 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE */ + { 48281, 0x00008C8F }, /* GL_TRANSFORM_FEEDBACK_BUFFER_BINDING */ + { 48318, 0x00008C8F }, /* GL_TRANSFORM_FEEDBACK_BUFFER_BINDING_EXT */ + { 48359, 0x00008C8E }, /* GL_TRANSFORM_FEEDBACK_BUFFER_EXT */ + { 48392, 0x00008C7F }, /* GL_TRANSFORM_FEEDBACK_BUFFER_MODE */ + { 48426, 0x00008C7F }, /* GL_TRANSFORM_FEEDBACK_BUFFER_MODE_EXT */ + { 48464, 0x00008E23 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED */ + { 48500, 0x00008C85 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_SIZE */ + { 48534, 0x00008C85 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_SIZE_EXT */ + { 48572, 0x00008C84 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_START */ + { 48607, 0x00008C84 }, /* GL_TRANSFORM_FEEDBACK_BUFFER_START_EXT */ + { 48646, 0x00008C88 }, /* GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN */ + { 48687, 0x00008C88 }, /* GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN_EXT */ + { 48732, 0x00008C83 }, /* GL_TRANSFORM_FEEDBACK_VARYINGS */ + { 48763, 0x00008C83 }, /* GL_TRANSFORM_FEEDBACK_VARYINGS_EXT */ + { 48798, 0x00008C76 }, /* GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH */ + { 48839, 0x00008C76 }, /* GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH_EXT */ + { 48884, 0x000084E6 }, /* GL_TRANSPOSE_COLOR_MATRIX */ + { 48910, 0x000084E6 }, /* GL_TRANSPOSE_COLOR_MATRIX_ARB */ + { 48940, 0x000088B7 }, /* GL_TRANSPOSE_CURRENT_MATRIX_ARB */ + { 48972, 0x000084E3 }, /* GL_TRANSPOSE_MODELVIEW_MATRIX */ + { 49002, 0x000084E3 }, /* GL_TRANSPOSE_MODELVIEW_MATRIX_ARB */ + { 49036, 0x0000862C }, /* GL_TRANSPOSE_NV */ + { 49052, 0x000084E4 }, /* GL_TRANSPOSE_PROJECTION_MATRIX */ + { 49083, 0x000084E4 }, /* GL_TRANSPOSE_PROJECTION_MATRIX_ARB */ + { 49118, 0x000084E5 }, /* GL_TRANSPOSE_TEXTURE_MATRIX */ + { 49146, 0x000084E5 }, /* GL_TRANSPOSE_TEXTURE_MATRIX_ARB */ + { 49178, 0x00000004 }, /* GL_TRIANGLES */ + { 49191, 0x0000000C }, /* GL_TRIANGLES_ADJACENCY */ + { 49214, 0x0000000C }, /* GL_TRIANGLES_ADJACENCY_ARB */ + { 49241, 0x00000006 }, /* GL_TRIANGLE_FAN */ + { 49257, 0x00008615 }, /* GL_TRIANGLE_MESH_SUN */ + { 49278, 0x00000005 }, /* GL_TRIANGLE_STRIP */ + { 49296, 0x0000000D }, /* GL_TRIANGLE_STRIP_ADJACENCY */ + { 49324, 0x0000000D }, /* GL_TRIANGLE_STRIP_ADJACENCY_ARB */ + { 49356, 0x00000001 }, /* GL_TRUE */ + { 49364, 0x00008A1C }, /* GL_UNDEFINED_APPLE */ + { 49383, 0x00008255 }, /* GL_UNKNOWN_CONTEXT_RESET_ARB */ + { 49412, 0x00000CF5 }, /* GL_UNPACK_ALIGNMENT */ + { 49432, 0x0000806E }, /* GL_UNPACK_IMAGE_HEIGHT */ + { 49455, 0x00000CF1 }, /* GL_UNPACK_LSB_FIRST */ + { 49475, 0x00000CF2 }, /* GL_UNPACK_ROW_LENGTH */ + { 49496, 0x0000806D }, /* GL_UNPACK_SKIP_IMAGES */ + { 49518, 0x00000CF4 }, /* GL_UNPACK_SKIP_PIXELS */ + { 49540, 0x00000CF3 }, /* GL_UNPACK_SKIP_ROWS */ + { 49560, 0x00000CF0 }, /* GL_UNPACK_SWAP_BYTES */ + { 49581, 0x00009118 }, /* GL_UNSIGNALED */ + { 49595, 0x00001401 }, /* GL_UNSIGNED_BYTE */ + { 49612, 0x00008362 }, /* GL_UNSIGNED_BYTE_2_3_3_REV */ + { 49639, 0x00008032 }, /* GL_UNSIGNED_BYTE_3_3_2 */ + { 49662, 0x00001405 }, /* GL_UNSIGNED_INT */ + { 49678, 0x00008C3B }, /* GL_UNSIGNED_INT_10F_11F_11F_REV */ + { 49710, 0x00008036 }, /* GL_UNSIGNED_INT_10_10_10_2 */ + { 49737, 0x00008DF6 }, /* GL_UNSIGNED_INT_10_10_10_2_OES */ + { 49768, 0x000084FA }, /* GL_UNSIGNED_INT_24_8 */ + { 49789, 0x000084FA }, /* GL_UNSIGNED_INT_24_8_EXT */ + { 49814, 0x000084FA }, /* GL_UNSIGNED_INT_24_8_NV */ + { 49838, 0x000084FA }, /* GL_UNSIGNED_INT_24_8_OES */ + { 49863, 0x00008368 }, /* GL_UNSIGNED_INT_2_10_10_10_REV */ + { 49894, 0x00008368 }, /* GL_UNSIGNED_INT_2_10_10_10_REV_EXT */ + { 49929, 0x00008C3E }, /* GL_UNSIGNED_INT_5_9_9_9_REV */ + { 49957, 0x00008035 }, /* GL_UNSIGNED_INT_8_8_8_8 */ + { 49981, 0x00008367 }, /* GL_UNSIGNED_INT_8_8_8_8_REV */ + { 50009, 0x00008DD1 }, /* GL_UNSIGNED_INT_SAMPLER_1D */ + { 50036, 0x00008DD6 }, /* GL_UNSIGNED_INT_SAMPLER_1D_ARRAY */ + { 50069, 0x00008DD6 }, /* GL_UNSIGNED_INT_SAMPLER_1D_ARRAY_EXT */ + { 50106, 0x00008DD1 }, /* GL_UNSIGNED_INT_SAMPLER_1D_EXT */ + { 50137, 0x00008DD2 }, /* GL_UNSIGNED_INT_SAMPLER_2D */ + { 50164, 0x00008DD7 }, /* GL_UNSIGNED_INT_SAMPLER_2D_ARRAY */ + { 50197, 0x00008DD7 }, /* GL_UNSIGNED_INT_SAMPLER_2D_ARRAY_EXT */ + { 50234, 0x00008DD2 }, /* GL_UNSIGNED_INT_SAMPLER_2D_EXT */ + { 50265, 0x00008DD5 }, /* GL_UNSIGNED_INT_SAMPLER_2D_RECT */ + { 50297, 0x00008DD5 }, /* GL_UNSIGNED_INT_SAMPLER_2D_RECT_EXT */ + { 50333, 0x00008DD3 }, /* GL_UNSIGNED_INT_SAMPLER_3D */ + { 50360, 0x00008DD3 }, /* GL_UNSIGNED_INT_SAMPLER_3D_EXT */ + { 50391, 0x00008DD8 }, /* GL_UNSIGNED_INT_SAMPLER_BUFFER */ + { 50422, 0x00008DD8 }, /* GL_UNSIGNED_INT_SAMPLER_BUFFER_EXT */ + { 50457, 0x00008DD4 }, /* GL_UNSIGNED_INT_SAMPLER_CUBE */ + { 50486, 0x00008DD4 }, /* GL_UNSIGNED_INT_SAMPLER_CUBE_EXT */ + { 50519, 0x00008DC6 }, /* GL_UNSIGNED_INT_VEC2 */ + { 50540, 0x00008DC6 }, /* GL_UNSIGNED_INT_VEC2_EXT */ + { 50565, 0x00008DC7 }, /* GL_UNSIGNED_INT_VEC3 */ + { 50586, 0x00008DC7 }, /* GL_UNSIGNED_INT_VEC3_EXT */ + { 50611, 0x00008DC8 }, /* GL_UNSIGNED_INT_VEC4 */ + { 50632, 0x00008DC8 }, /* GL_UNSIGNED_INT_VEC4_EXT */ + { 50657, 0x00008C17 }, /* GL_UNSIGNED_NORMALIZED */ + { 50680, 0x00001403 }, /* GL_UNSIGNED_SHORT */ + { 50698, 0x00008366 }, /* GL_UNSIGNED_SHORT_1_5_5_5_REV */ + { 50728, 0x00008366 }, /* GL_UNSIGNED_SHORT_1_5_5_5_REV_EXT */ + { 50762, 0x00008033 }, /* GL_UNSIGNED_SHORT_4_4_4_4 */ + { 50788, 0x00008365 }, /* GL_UNSIGNED_SHORT_4_4_4_4_REV */ + { 50818, 0x00008365 }, /* GL_UNSIGNED_SHORT_4_4_4_4_REV_EXT */ + { 50852, 0x00008034 }, /* GL_UNSIGNED_SHORT_5_5_5_1 */ + { 50878, 0x00008363 }, /* GL_UNSIGNED_SHORT_5_6_5 */ + { 50902, 0x00008364 }, /* GL_UNSIGNED_SHORT_5_6_5_REV */ + { 50930, 0x000085BA }, /* GL_UNSIGNED_SHORT_8_8_APPLE */ + { 50958, 0x000085BA }, /* GL_UNSIGNED_SHORT_8_8_MESA */ + { 50985, 0x000085BB }, /* GL_UNSIGNED_SHORT_8_8_REV_APPLE */ + { 51017, 0x000085BB }, /* GL_UNSIGNED_SHORT_8_8_REV_MESA */ + { 51048, 0x00008CA2 }, /* GL_UPPER_LEFT */ + { 51062, 0x00002A20 }, /* GL_V2F */ + { 51069, 0x00002A21 }, /* GL_V3F */ + { 51076, 0x00008B83 }, /* GL_VALIDATE_STATUS */ + { 51095, 0x00001F00 }, /* GL_VENDOR */ + { 51105, 0x00001F02 }, /* GL_VERSION */ + { 51116, 0x00008074 }, /* GL_VERTEX_ARRAY */ + { 51132, 0x000085B5 }, /* GL_VERTEX_ARRAY_BINDING */ + { 51156, 0x000085B5 }, /* GL_VERTEX_ARRAY_BINDING_APPLE */ + { 51186, 0x00008896 }, /* GL_VERTEX_ARRAY_BUFFER_BINDING */ + { 51217, 0x00008896 }, /* GL_VERTEX_ARRAY_BUFFER_BINDING_ARB */ + { 51252, 0x0000808E }, /* GL_VERTEX_ARRAY_POINTER */ + { 51276, 0x0000807A }, /* GL_VERTEX_ARRAY_SIZE */ + { 51297, 0x0000807C }, /* GL_VERTEX_ARRAY_STRIDE */ + { 51320, 0x0000807B }, /* GL_VERTEX_ARRAY_TYPE */ + { 51341, 0x00008650 }, /* GL_VERTEX_ATTRIB_ARRAY0_NV */ + { 51368, 0x0000865A }, /* GL_VERTEX_ATTRIB_ARRAY10_NV */ + { 51396, 0x0000865B }, /* GL_VERTEX_ATTRIB_ARRAY11_NV */ + { 51424, 0x0000865C }, /* GL_VERTEX_ATTRIB_ARRAY12_NV */ + { 51452, 0x0000865D }, /* GL_VERTEX_ATTRIB_ARRAY13_NV */ + { 51480, 0x0000865E }, /* GL_VERTEX_ATTRIB_ARRAY14_NV */ + { 51508, 0x0000865F }, /* GL_VERTEX_ATTRIB_ARRAY15_NV */ + { 51536, 0x00008651 }, /* GL_VERTEX_ATTRIB_ARRAY1_NV */ + { 51563, 0x00008652 }, /* GL_VERTEX_ATTRIB_ARRAY2_NV */ + { 51590, 0x00008653 }, /* GL_VERTEX_ATTRIB_ARRAY3_NV */ + { 51617, 0x00008654 }, /* GL_VERTEX_ATTRIB_ARRAY4_NV */ + { 51644, 0x00008655 }, /* GL_VERTEX_ATTRIB_ARRAY5_NV */ + { 51671, 0x00008656 }, /* GL_VERTEX_ATTRIB_ARRAY6_NV */ + { 51698, 0x00008657 }, /* GL_VERTEX_ATTRIB_ARRAY7_NV */ + { 51725, 0x00008658 }, /* GL_VERTEX_ATTRIB_ARRAY8_NV */ + { 51752, 0x00008659 }, /* GL_VERTEX_ATTRIB_ARRAY9_NV */ + { 51779, 0x0000889F }, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING */ + { 51817, 0x0000889F }, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING_ARB */ + { 51859, 0x000088FE }, /* GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB */ + { 51894, 0x00008622 }, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED */ + { 51925, 0x00008622 }, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED_ARB */ + { 51960, 0x000088FD }, /* GL_VERTEX_ATTRIB_ARRAY_INTEGER */ + { 51991, 0x000088FD }, /* GL_VERTEX_ATTRIB_ARRAY_INTEGER_EXT */ + { 52026, 0x0000886A }, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED */ + { 52060, 0x0000886A }, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED_ARB */ + { 52098, 0x00008645 }, /* GL_VERTEX_ATTRIB_ARRAY_POINTER */ + { 52129, 0x00008645 }, /* GL_VERTEX_ATTRIB_ARRAY_POINTER_ARB */ + { 52164, 0x00008623 }, /* GL_VERTEX_ATTRIB_ARRAY_SIZE */ + { 52192, 0x00008623 }, /* GL_VERTEX_ATTRIB_ARRAY_SIZE_ARB */ + { 52224, 0x00008624 }, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE */ + { 52254, 0x00008624 }, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE_ARB */ + { 52288, 0x00008625 }, /* GL_VERTEX_ATTRIB_ARRAY_TYPE */ + { 52316, 0x00008625 }, /* GL_VERTEX_ATTRIB_ARRAY_TYPE_ARB */ + { 52348, 0x000086A7 }, /* GL_VERTEX_BLEND_ARB */ + { 52368, 0x00008620 }, /* GL_VERTEX_PROGRAM_ARB */ + { 52390, 0x0000864A }, /* GL_VERTEX_PROGRAM_BINDING_NV */ + { 52419, 0x00008620 }, /* GL_VERTEX_PROGRAM_NV */ + { 52440, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE */ + { 52469, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE_ARB */ + { 52502, 0x00008642 }, /* GL_VERTEX_PROGRAM_POINT_SIZE_NV */ + { 52534, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE */ + { 52561, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE_ARB */ + { 52592, 0x00008643 }, /* GL_VERTEX_PROGRAM_TWO_SIDE_NV */ + { 52622, 0x00008B31 }, /* GL_VERTEX_SHADER */ + { 52639, 0x00008B31 }, /* GL_VERTEX_SHADER_ARB */ + { 52660, 0x00008621 }, /* GL_VERTEX_STATE_PROGRAM_NV */ + { 52687, 0x00000BA2 }, /* GL_VIEWPORT */ + { 52699, 0x00000800 }, /* GL_VIEWPORT_BIT */ + { 52715, 0x00008A1A }, /* GL_VOLATILE_APPLE */ + { 52733, 0x0000911D }, /* GL_WAIT_FAILED */ + { 52748, 0x000086AD }, /* GL_WEIGHT_ARRAY_ARB */ + { 52768, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING */ + { 52799, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING_ARB */ + { 52834, 0x0000889E }, /* GL_WEIGHT_ARRAY_BUFFER_BINDING_OES */ + { 52869, 0x000086AD }, /* GL_WEIGHT_ARRAY_OES */ + { 52889, 0x000086AC }, /* GL_WEIGHT_ARRAY_POINTER_ARB */ + { 52917, 0x000086AC }, /* GL_WEIGHT_ARRAY_POINTER_OES */ + { 52945, 0x000086AB }, /* GL_WEIGHT_ARRAY_SIZE_ARB */ + { 52970, 0x000086AB }, /* GL_WEIGHT_ARRAY_SIZE_OES */ + { 52995, 0x000086AA }, /* GL_WEIGHT_ARRAY_STRIDE_ARB */ + { 53022, 0x000086AA }, /* GL_WEIGHT_ARRAY_STRIDE_OES */ + { 53049, 0x000086A9 }, /* GL_WEIGHT_ARRAY_TYPE_ARB */ + { 53074, 0x000086A9 }, /* GL_WEIGHT_ARRAY_TYPE_OES */ + { 53099, 0x000086A6 }, /* GL_WEIGHT_SUM_UNITY_ARB */ + { 53123, 0x000081D4 }, /* GL_WRAP_BORDER_SUN */ + { 53142, 0x000088B9 }, /* GL_WRITE_ONLY */ + { 53156, 0x000088B9 }, /* GL_WRITE_ONLY_ARB */ + { 53174, 0x000088B9 }, /* GL_WRITE_ONLY_OES */ + { 53192, 0x00001506 }, /* GL_XOR */ + { 53199, 0x000085B9 }, /* GL_YCBCR_422_APPLE */ + { 53218, 0x00008757 }, /* GL_YCBCR_MESA */ + { 53232, 0x00000000 }, /* GL_ZERO */ + { 53240, 0x00000D16 }, /* GL_ZOOM_X */ + { 53250, 0x00000D17 }, /* GL_ZOOM_Y */ }; -static const unsigned reduced_enums[1594] = +static const unsigned reduced_enums[1598] = { 576, /* GL_FALSE */ 873, /* GL_LINES */ 877, /* GL_LINE_LOOP */ 884, /* GL_LINE_STRIP */ - 2201, /* GL_TRIANGLES */ - 2206, /* GL_TRIANGLE_STRIP */ - 2204, /* GL_TRIANGLE_FAN */ - 1561, /* GL_QUADS */ - 1565, /* GL_QUAD_STRIP */ - 1429, /* GL_POLYGON */ + 2205, /* GL_TRIANGLES */ + 2210, /* GL_TRIANGLE_STRIP */ + 2208, /* GL_TRIANGLE_FAN */ + 1564, /* GL_QUADS */ + 1568, /* GL_QUAD_STRIP */ + 1432, /* GL_POLYGON */ 874, /* GL_LINES_ADJACENCY */ 885, /* GL_LINE_STRIP_ADJACENCY */ - 2202, /* GL_TRIANGLES_ADJACENCY */ - 2207, /* GL_TRIANGLE_STRIP_ADJACENCY */ - 1441, /* GL_POLYGON_STIPPLE_BIT */ - 1384, /* GL_PIXEL_MODE_BIT */ + 2206, /* GL_TRIANGLES_ADJACENCY */ + 2211, /* GL_TRIANGLE_STRIP_ADJACENCY */ + 1444, /* GL_POLYGON_STIPPLE_BIT */ + 1387, /* GL_PIXEL_MODE_BIT */ 860, /* GL_LIGHTING_BIT */ 610, /* GL_FOG_BIT */ 8, /* GL_ACCUM */ 896, /* GL_LOAD */ - 1652, /* GL_RETURN */ - 1249, /* GL_MULT */ + 1655, /* GL_RETURN */ + 1250, /* GL_MULT */ 24, /* GL_ADD */ - 1265, /* GL_NEVER */ + 1266, /* GL_NEVER */ 850, /* GL_LESS */ 565, /* GL_EQUAL */ 849, /* GL_LEQUAL */ 734, /* GL_GREATER */ - 1282, /* GL_NOTEQUAL */ + 1283, /* GL_NOTEQUAL */ 732, /* GL_GEQUAL */ 55, /* GL_ALWAYS */ - 1863, /* GL_SRC_COLOR */ - 1317, /* GL_ONE_MINUS_SRC_COLOR */ - 1861, /* GL_SRC_ALPHA */ - 1316, /* GL_ONE_MINUS_SRC_ALPHA */ + 1867, /* GL_SRC_COLOR */ + 1320, /* GL_ONE_MINUS_SRC_COLOR */ + 1865, /* GL_SRC_ALPHA */ + 1319, /* GL_ONE_MINUS_SRC_ALPHA */ 544, /* GL_DST_ALPHA */ - 1314, /* GL_ONE_MINUS_DST_ALPHA */ + 1315, /* GL_ONE_MINUS_DST_ALPHA */ 545, /* GL_DST_COLOR */ - 1315, /* GL_ONE_MINUS_DST_COLOR */ - 1862, /* GL_SRC_ALPHA_SATURATE */ + 1316, /* GL_ONE_MINUS_DST_COLOR */ + 1866, /* GL_SRC_ALPHA_SATURATE */ 709, /* GL_FRONT_LEFT */ 710, /* GL_FRONT_RIGHT */ 77, /* GL_BACK_LEFT */ @@ -4816,7 +4824,7 @@ static const unsigned reduced_enums[1594] = 706, /* GL_FRONT */ 76, /* GL_BACK */ 848, /* GL_LEFT */ - 1743, /* GL_RIGHT */ + 1746, /* GL_RIGHT */ 707, /* GL_FRONT_AND_BACK */ 71, /* GL_AUX0 */ 72, /* GL_AUX1 */ @@ -4825,19 +4833,19 @@ static const unsigned reduced_enums[1594] = 836, /* GL_INVALID_ENUM */ 841, /* GL_INVALID_VALUE */ 840, /* GL_INVALID_OPERATION */ - 1868, /* GL_STACK_OVERFLOW */ - 1869, /* GL_STACK_UNDERFLOW */ - 1342, /* GL_OUT_OF_MEMORY */ + 1872, /* GL_STACK_OVERFLOW */ + 1873, /* GL_STACK_UNDERFLOW */ + 1345, /* GL_OUT_OF_MEMORY */ 837, /* GL_INVALID_FRAMEBUFFER_OPERATION */ 0, /* GL_2D */ 2, /* GL_3D */ 3, /* GL_3D_COLOR */ 4, /* GL_3D_COLOR_TEXTURE */ 6, /* GL_4D_COLOR_TEXTURE */ - 1362, /* GL_PASS_THROUGH_TOKEN */ - 1428, /* GL_POINT_TOKEN */ + 1365, /* GL_PASS_THROUGH_TOKEN */ + 1431, /* GL_POINT_TOKEN */ 887, /* GL_LINE_TOKEN */ - 1442, /* GL_POLYGON_TOKEN */ + 1445, /* GL_POLYGON_TOKEN */ 87, /* GL_BITMAP_TOKEN */ 543, /* GL_DRAW_PIXEL_TOKEN */ 353, /* GL_COPY_PIXEL_TOKEN */ @@ -4847,7 +4855,7 @@ static const unsigned reduced_enums[1594] = 390, /* GL_CW */ 154, /* GL_CCW */ 187, /* GL_COEFF */ - 1339, /* GL_ORDER */ + 1342, /* GL_ORDER */ 464, /* GL_DOMAIN */ 363, /* GL_CURRENT_COLOR */ 366, /* GL_CURRENT_INDEX */ @@ -4859,10 +4867,10 @@ static const unsigned reduced_enums[1594] = 381, /* GL_CURRENT_RASTER_POSITION */ 382, /* GL_CURRENT_RASTER_POSITION_VALID */ 379, /* GL_CURRENT_RASTER_DISTANCE */ - 1420, /* GL_POINT_SMOOTH */ - 1404, /* GL_POINT_SIZE */ - 1419, /* GL_POINT_SIZE_RANGE */ - 1410, /* GL_POINT_SIZE_GRANULARITY */ + 1423, /* GL_POINT_SMOOTH */ + 1407, /* GL_POINT_SIZE */ + 1422, /* GL_POINT_SIZE_RANGE */ + 1413, /* GL_POINT_SIZE_GRANULARITY */ 879, /* GL_LINE_SMOOTH */ 888, /* GL_LINE_WIDTH */ 890, /* GL_LINE_WIDTH_RANGE */ @@ -4871,12 +4879,12 @@ static const unsigned reduced_enums[1594] = 882, /* GL_LINE_STIPPLE_PATTERN */ 883, /* GL_LINE_STIPPLE_REPEAT */ 895, /* GL_LIST_MODE */ - 1106, /* GL_MAX_LIST_NESTING */ + 1107, /* GL_MAX_LIST_NESTING */ 892, /* GL_LIST_BASE */ 894, /* GL_LIST_INDEX */ - 1431, /* GL_POLYGON_MODE */ - 1438, /* GL_POLYGON_SMOOTH */ - 1440, /* GL_POLYGON_STIPPLE */ + 1434, /* GL_POLYGON_MODE */ + 1441, /* GL_POLYGON_SMOOTH */ + 1443, /* GL_POLYGON_STIPPLE */ 554, /* GL_EDGE_FLAG */ 356, /* GL_CULL_FACE */ 357, /* GL_CULL_FACE_MODE */ @@ -4885,7 +4893,7 @@ static const unsigned reduced_enums[1594] = 864, /* GL_LIGHT_MODEL_LOCAL_VIEWER */ 865, /* GL_LIGHT_MODEL_TWO_SIDE */ 861, /* GL_LIGHT_MODEL_AMBIENT */ - 1810, /* GL_SHADE_MODEL */ + 1813, /* GL_SHADE_MODEL */ 235, /* GL_COLOR_MATERIAL_FACE */ 236, /* GL_COLOR_MATERIAL_PARAMETER */ 234, /* GL_COLOR_MATERIAL */ @@ -4902,24 +4910,24 @@ static const unsigned reduced_enums[1594] = 434, /* GL_DEPTH_CLEAR_VALUE */ 448, /* GL_DEPTH_FUNC */ 12, /* GL_ACCUM_CLEAR_VALUE */ - 1913, /* GL_STENCIL_TEST */ - 1894, /* GL_STENCIL_CLEAR_VALUE */ - 1896, /* GL_STENCIL_FUNC */ - 1915, /* GL_STENCIL_VALUE_MASK */ - 1895, /* GL_STENCIL_FAIL */ - 1910, /* GL_STENCIL_PASS_DEPTH_FAIL */ - 1911, /* GL_STENCIL_PASS_DEPTH_PASS */ - 1912, /* GL_STENCIL_REF */ - 1916, /* GL_STENCIL_WRITEMASK */ + 1917, /* GL_STENCIL_TEST */ + 1898, /* GL_STENCIL_CLEAR_VALUE */ + 1900, /* GL_STENCIL_FUNC */ + 1919, /* GL_STENCIL_VALUE_MASK */ + 1899, /* GL_STENCIL_FAIL */ + 1914, /* GL_STENCIL_PASS_DEPTH_FAIL */ + 1915, /* GL_STENCIL_PASS_DEPTH_PASS */ + 1916, /* GL_STENCIL_REF */ + 1920, /* GL_STENCIL_WRITEMASK */ 1053, /* GL_MATRIX_MODE */ - 1271, /* GL_NORMALIZE */ - 2334, /* GL_VIEWPORT */ - 1244, /* GL_MODELVIEW_STACK_DEPTH */ - 1535, /* GL_PROJECTION_STACK_DEPTH */ - 2155, /* GL_TEXTURE_STACK_DEPTH */ - 1241, /* GL_MODELVIEW_MATRIX */ - 1533, /* GL_PROJECTION_MATRIX */ - 2135, /* GL_TEXTURE_MATRIX */ + 1272, /* GL_NORMALIZE */ + 2338, /* GL_VIEWPORT */ + 1245, /* GL_MODELVIEW_STACK_DEPTH */ + 1538, /* GL_PROJECTION_STACK_DEPTH */ + 2159, /* GL_TEXTURE_STACK_DEPTH */ + 1242, /* GL_MODELVIEW_MATRIX */ + 1536, /* GL_PROJECTION_MATRIX */ + 2139, /* GL_TEXTURE_MATRIX */ 69, /* GL_ATTRIB_STACK_DEPTH */ 169, /* GL_CLIENT_ATTRIB_STACK_DEPTH */ 51, /* GL_ALPHA_TEST */ @@ -4934,67 +4942,67 @@ static const unsigned reduced_enums[1594] = 233, /* GL_COLOR_LOGIC_OP */ 75, /* GL_AUX_BUFFERS */ 474, /* GL_DRAW_BUFFER */ - 1588, /* GL_READ_BUFFER */ - 1787, /* GL_SCISSOR_BOX */ - 1788, /* GL_SCISSOR_TEST */ + 1591, /* GL_READ_BUFFER */ + 1790, /* GL_SCISSOR_BOX */ + 1791, /* GL_SCISSOR_TEST */ 782, /* GL_INDEX_CLEAR_VALUE */ 787, /* GL_INDEX_WRITEMASK */ 230, /* GL_COLOR_CLEAR_VALUE */ 272, /* GL_COLOR_WRITEMASK */ 784, /* GL_INDEX_MODE */ - 1732, /* GL_RGBA_MODE */ + 1735, /* GL_RGBA_MODE */ 473, /* GL_DOUBLEBUFFER */ - 1917, /* GL_STEREO */ - 1642, /* GL_RENDER_MODE */ - 1363, /* GL_PERSPECTIVE_CORRECTION_HINT */ - 1421, /* GL_POINT_SMOOTH_HINT */ + 1921, /* GL_STEREO */ + 1645, /* GL_RENDER_MODE */ + 1366, /* GL_PERSPECTIVE_CORRECTION_HINT */ + 1424, /* GL_POINT_SMOOTH_HINT */ 880, /* GL_LINE_SMOOTH_HINT */ - 1439, /* GL_POLYGON_SMOOTH_HINT */ + 1442, /* GL_POLYGON_SMOOTH_HINT */ 630, /* GL_FOG_HINT */ - 2115, /* GL_TEXTURE_GEN_S */ - 2117, /* GL_TEXTURE_GEN_T */ - 2114, /* GL_TEXTURE_GEN_R */ - 2113, /* GL_TEXTURE_GEN_Q */ - 1376, /* GL_PIXEL_MAP_I_TO_I */ - 1382, /* GL_PIXEL_MAP_S_TO_S */ - 1378, /* GL_PIXEL_MAP_I_TO_R */ - 1374, /* GL_PIXEL_MAP_I_TO_G */ - 1372, /* GL_PIXEL_MAP_I_TO_B */ - 1370, /* GL_PIXEL_MAP_I_TO_A */ - 1380, /* GL_PIXEL_MAP_R_TO_R */ - 1368, /* GL_PIXEL_MAP_G_TO_G */ - 1366, /* GL_PIXEL_MAP_B_TO_B */ - 1364, /* GL_PIXEL_MAP_A_TO_A */ - 1377, /* GL_PIXEL_MAP_I_TO_I_SIZE */ - 1383, /* GL_PIXEL_MAP_S_TO_S_SIZE */ - 1379, /* GL_PIXEL_MAP_I_TO_R_SIZE */ - 1375, /* GL_PIXEL_MAP_I_TO_G_SIZE */ - 1373, /* GL_PIXEL_MAP_I_TO_B_SIZE */ - 1371, /* GL_PIXEL_MAP_I_TO_A_SIZE */ - 1381, /* GL_PIXEL_MAP_R_TO_R_SIZE */ - 1369, /* GL_PIXEL_MAP_G_TO_G_SIZE */ - 1367, /* GL_PIXEL_MAP_B_TO_B_SIZE */ - 1365, /* GL_PIXEL_MAP_A_TO_A_SIZE */ - 2219, /* GL_UNPACK_SWAP_BYTES */ - 2214, /* GL_UNPACK_LSB_FIRST */ - 2215, /* GL_UNPACK_ROW_LENGTH */ - 2218, /* GL_UNPACK_SKIP_ROWS */ - 2217, /* GL_UNPACK_SKIP_PIXELS */ - 2212, /* GL_UNPACK_ALIGNMENT */ - 1351, /* GL_PACK_SWAP_BYTES */ - 1346, /* GL_PACK_LSB_FIRST */ - 1347, /* GL_PACK_ROW_LENGTH */ - 1350, /* GL_PACK_SKIP_ROWS */ - 1349, /* GL_PACK_SKIP_PIXELS */ - 1343, /* GL_PACK_ALIGNMENT */ + 2119, /* GL_TEXTURE_GEN_S */ + 2121, /* GL_TEXTURE_GEN_T */ + 2118, /* GL_TEXTURE_GEN_R */ + 2117, /* GL_TEXTURE_GEN_Q */ + 1379, /* GL_PIXEL_MAP_I_TO_I */ + 1385, /* GL_PIXEL_MAP_S_TO_S */ + 1381, /* GL_PIXEL_MAP_I_TO_R */ + 1377, /* GL_PIXEL_MAP_I_TO_G */ + 1375, /* GL_PIXEL_MAP_I_TO_B */ + 1373, /* GL_PIXEL_MAP_I_TO_A */ + 1383, /* GL_PIXEL_MAP_R_TO_R */ + 1371, /* GL_PIXEL_MAP_G_TO_G */ + 1369, /* GL_PIXEL_MAP_B_TO_B */ + 1367, /* GL_PIXEL_MAP_A_TO_A */ + 1380, /* GL_PIXEL_MAP_I_TO_I_SIZE */ + 1386, /* GL_PIXEL_MAP_S_TO_S_SIZE */ + 1382, /* GL_PIXEL_MAP_I_TO_R_SIZE */ + 1378, /* GL_PIXEL_MAP_I_TO_G_SIZE */ + 1376, /* GL_PIXEL_MAP_I_TO_B_SIZE */ + 1374, /* GL_PIXEL_MAP_I_TO_A_SIZE */ + 1384, /* GL_PIXEL_MAP_R_TO_R_SIZE */ + 1372, /* GL_PIXEL_MAP_G_TO_G_SIZE */ + 1370, /* GL_PIXEL_MAP_B_TO_B_SIZE */ + 1368, /* GL_PIXEL_MAP_A_TO_A_SIZE */ + 2223, /* GL_UNPACK_SWAP_BYTES */ + 2218, /* GL_UNPACK_LSB_FIRST */ + 2219, /* GL_UNPACK_ROW_LENGTH */ + 2222, /* GL_UNPACK_SKIP_ROWS */ + 2221, /* GL_UNPACK_SKIP_PIXELS */ + 2216, /* GL_UNPACK_ALIGNMENT */ + 1354, /* GL_PACK_SWAP_BYTES */ + 1349, /* GL_PACK_LSB_FIRST */ + 1350, /* GL_PACK_ROW_LENGTH */ + 1353, /* GL_PACK_SKIP_ROWS */ + 1352, /* GL_PACK_SKIP_PIXELS */ + 1346, /* GL_PACK_ALIGNMENT */ 994, /* GL_MAP_COLOR */ 999, /* GL_MAP_STENCIL */ 786, /* GL_INDEX_SHIFT */ 785, /* GL_INDEX_OFFSET */ - 1604, /* GL_RED_SCALE */ - 1600, /* GL_RED_BIAS */ - 2360, /* GL_ZOOM_X */ - 2361, /* GL_ZOOM_Y */ + 1607, /* GL_RED_SCALE */ + 1603, /* GL_RED_BIAS */ + 2364, /* GL_ZOOM_X */ + 2365, /* GL_ZOOM_Y */ 740, /* GL_GREEN_SCALE */ 736, /* GL_GREEN_BIAS */ 115, /* GL_BLUE_SCALE */ @@ -5003,31 +5011,31 @@ static const unsigned reduced_enums[1594] = 47, /* GL_ALPHA_BIAS */ 450, /* GL_DEPTH_SCALE */ 426, /* GL_DEPTH_BIAS */ - 1088, /* GL_MAX_EVAL_ORDER */ - 1105, /* GL_MAX_LIGHTS */ + 1089, /* GL_MAX_EVAL_ORDER */ + 1106, /* GL_MAX_LIGHTS */ 1065, /* GL_MAX_CLIP_DISTANCES */ - 1160, /* GL_MAX_TEXTURE_SIZE */ - 1112, /* GL_MAX_PIXEL_MAP_TABLE */ + 1161, /* GL_MAX_TEXTURE_SIZE */ + 1113, /* GL_MAX_PIXEL_MAP_TABLE */ 1061, /* GL_MAX_ATTRIB_STACK_DEPTH */ - 1108, /* GL_MAX_MODELVIEW_STACK_DEPTH */ - 1109, /* GL_MAX_NAME_STACK_DEPTH */ - 1139, /* GL_MAX_PROJECTION_STACK_DEPTH */ - 1161, /* GL_MAX_TEXTURE_STACK_DEPTH */ - 1187, /* GL_MAX_VIEWPORT_DIMS */ + 1109, /* GL_MAX_MODELVIEW_STACK_DEPTH */ + 1110, /* GL_MAX_NAME_STACK_DEPTH */ + 1140, /* GL_MAX_PROJECTION_STACK_DEPTH */ + 1162, /* GL_MAX_TEXTURE_STACK_DEPTH */ + 1188, /* GL_MAX_VIEWPORT_DIMS */ 1062, /* GL_MAX_CLIENT_ATTRIB_STACK_DEPTH */ - 1927, /* GL_SUBPIXEL_BITS */ + 1931, /* GL_SUBPIXEL_BITS */ 781, /* GL_INDEX_BITS */ - 1601, /* GL_RED_BITS */ + 1604, /* GL_RED_BITS */ 737, /* GL_GREEN_BITS */ 112, /* GL_BLUE_BITS */ 48, /* GL_ALPHA_BITS */ 427, /* GL_DEPTH_BITS */ - 1891, /* GL_STENCIL_BITS */ + 1895, /* GL_STENCIL_BITS */ 14, /* GL_ACCUM_RED_BITS */ 13, /* GL_ACCUM_GREEN_BITS */ 10, /* GL_ACCUM_BLUE_BITS */ 9, /* GL_ACCUM_ALPHA_BITS */ - 1258, /* GL_NAME_STACK_DEPTH */ + 1259, /* GL_NAME_STACK_DEPTH */ 70, /* GL_AUTO_NORMAL */ 940, /* GL_MAP1_COLOR_4 */ 943, /* GL_MAP1_INDEX */ @@ -5051,39 +5059,39 @@ static const unsigned reduced_enums[1594] = 942, /* GL_MAP1_GRID_SEGMENTS */ 968, /* GL_MAP2_GRID_DOMAIN */ 969, /* GL_MAP2_GRID_SEGMENTS */ - 2010, /* GL_TEXTURE_1D */ - 2013, /* GL_TEXTURE_2D */ + 2014, /* GL_TEXTURE_1D */ + 2017, /* GL_TEXTURE_2D */ 579, /* GL_FEEDBACK_BUFFER_POINTER */ 580, /* GL_FEEDBACK_BUFFER_SIZE */ 581, /* GL_FEEDBACK_BUFFER_TYPE */ - 1797, /* GL_SELECTION_BUFFER_POINTER */ - 1798, /* GL_SELECTION_BUFFER_SIZE */ - 2161, /* GL_TEXTURE_WIDTH */ - 2121, /* GL_TEXTURE_HEIGHT */ - 2064, /* GL_TEXTURE_COMPONENTS */ - 2042, /* GL_TEXTURE_BORDER_COLOR */ - 2041, /* GL_TEXTURE_BORDER */ + 1800, /* GL_SELECTION_BUFFER_POINTER */ + 1801, /* GL_SELECTION_BUFFER_SIZE */ + 2165, /* GL_TEXTURE_WIDTH */ + 2125, /* GL_TEXTURE_HEIGHT */ + 2068, /* GL_TEXTURE_COMPONENTS */ + 2046, /* GL_TEXTURE_BORDER_COLOR */ + 2045, /* GL_TEXTURE_BORDER */ 465, /* GL_DONT_CARE */ 577, /* GL_FASTEST */ - 1266, /* GL_NICEST */ + 1267, /* GL_NICEST */ 56, /* GL_AMBIENT */ 462, /* GL_DIFFUSE */ - 1850, /* GL_SPECULAR */ - 1443, /* GL_POSITION */ - 1853, /* GL_SPOT_DIRECTION */ - 1854, /* GL_SPOT_EXPONENT */ - 1852, /* GL_SPOT_CUTOFF */ + 1853, /* GL_SPECULAR */ + 1446, /* GL_POSITION */ + 1856, /* GL_SPOT_DIRECTION */ + 1857, /* GL_SPOT_EXPONENT */ + 1855, /* GL_SPOT_CUTOFF */ 320, /* GL_CONSTANT_ATTENUATION */ 868, /* GL_LINEAR_ATTENUATION */ - 1560, /* GL_QUADRATIC_ATTENUATION */ + 1563, /* GL_QUADRATIC_ATTENUATION */ 287, /* GL_COMPILE */ 288, /* GL_COMPILE_AND_EXECUTE */ 149, /* GL_BYTE */ - 2221, /* GL_UNSIGNED_BYTE */ - 1815, /* GL_SHORT */ - 2260, /* GL_UNSIGNED_SHORT */ + 2225, /* GL_UNSIGNED_BYTE */ + 1818, /* GL_SHORT */ + 2264, /* GL_UNSIGNED_SHORT */ 790, /* GL_INT */ - 2224, /* GL_UNSIGNED_INT */ + 2228, /* GL_UNSIGNED_INT */ 590, /* GL_FLOAT */ 1, /* GL_2_BYTES */ 5, /* GL_3_BYTES */ @@ -5096,100 +5104,100 @@ static const unsigned reduced_enums[1594] = 60, /* GL_AND_REVERSE */ 351, /* GL_COPY */ 59, /* GL_AND_INVERTED */ - 1269, /* GL_NOOP */ - 2356, /* GL_XOR */ - 1338, /* GL_OR */ - 1270, /* GL_NOR */ + 1270, /* GL_NOOP */ + 2360, /* GL_XOR */ + 1341, /* GL_OR */ + 1271, /* GL_NOR */ 566, /* GL_EQUIV */ 844, /* GL_INVERT */ - 1341, /* GL_OR_REVERSE */ + 1344, /* GL_OR_REVERSE */ 352, /* GL_COPY_INVERTED */ - 1340, /* GL_OR_INVERTED */ - 1259, /* GL_NAND */ - 1804, /* GL_SET */ + 1343, /* GL_OR_INVERTED */ + 1260, /* GL_NAND */ + 1807, /* GL_SET */ 563, /* GL_EMISSION */ - 1814, /* GL_SHININESS */ + 1817, /* GL_SHININESS */ 57, /* GL_AMBIENT_AND_DIFFUSE */ 232, /* GL_COLOR_INDEXES */ - 1208, /* GL_MODELVIEW */ - 1532, /* GL_PROJECTION */ - 1945, /* GL_TEXTURE */ + 1209, /* GL_MODELVIEW */ + 1535, /* GL_PROJECTION */ + 1949, /* GL_TEXTURE */ 188, /* GL_COLOR */ 419, /* GL_DEPTH */ - 1876, /* GL_STENCIL */ + 1880, /* GL_STENCIL */ 231, /* GL_COLOR_INDEX */ - 1897, /* GL_STENCIL_INDEX */ + 1901, /* GL_STENCIL_INDEX */ 435, /* GL_DEPTH_COMPONENT */ - 1597, /* GL_RED */ + 1600, /* GL_RED */ 735, /* GL_GREEN */ 110, /* GL_BLUE */ 32, /* GL_ALPHA */ - 1655, /* GL_RGB */ - 1696, /* GL_RGBA */ + 1658, /* GL_RGB */ + 1699, /* GL_RGBA */ 903, /* GL_LUMINANCE */ 930, /* GL_LUMINANCE_ALPHA */ 86, /* GL_BITMAP */ - 1393, /* GL_POINT */ + 1396, /* GL_POINT */ 866, /* GL_LINE */ 582, /* GL_FILL */ - 1611, /* GL_RENDER */ + 1614, /* GL_RENDER */ 578, /* GL_FEEDBACK */ - 1796, /* GL_SELECT */ + 1799, /* GL_SELECT */ 589, /* GL_FLAT */ - 1825, /* GL_SMOOTH */ + 1828, /* GL_SMOOTH */ 845, /* GL_KEEP */ - 1644, /* GL_REPLACE */ + 1647, /* GL_REPLACE */ 771, /* GL_INCR */ 415, /* GL_DECR */ - 2277, /* GL_VENDOR */ - 1641, /* GL_RENDERER */ - 2278, /* GL_VERSION */ + 2281, /* GL_VENDOR */ + 1644, /* GL_RENDERER */ + 2282, /* GL_VERSION */ 571, /* GL_EXTENSIONS */ - 1744, /* GL_S */ - 1936, /* GL_T */ - 1580, /* GL_R */ - 1559, /* GL_Q */ - 1245, /* GL_MODULATE */ + 1747, /* GL_S */ + 1940, /* GL_T */ + 1583, /* GL_R */ + 1562, /* GL_Q */ + 1246, /* GL_MODULATE */ 414, /* GL_DECAL */ - 2107, /* GL_TEXTURE_ENV_MODE */ - 2106, /* GL_TEXTURE_ENV_COLOR */ - 2105, /* GL_TEXTURE_ENV */ + 2111, /* GL_TEXTURE_ENV_MODE */ + 2110, /* GL_TEXTURE_ENV_COLOR */ + 2109, /* GL_TEXTURE_ENV */ 572, /* GL_EYE_LINEAR */ - 1299, /* GL_OBJECT_LINEAR */ - 1851, /* GL_SPHERE_MAP */ - 2111, /* GL_TEXTURE_GEN_MODE */ - 1301, /* GL_OBJECT_PLANE */ + 1300, /* GL_OBJECT_LINEAR */ + 1854, /* GL_SPHERE_MAP */ + 2115, /* GL_TEXTURE_GEN_MODE */ + 1302, /* GL_OBJECT_PLANE */ 573, /* GL_EYE_PLANE */ - 1260, /* GL_NEAREST */ + 1261, /* GL_NEAREST */ 867, /* GL_LINEAR */ - 1264, /* GL_NEAREST_MIPMAP_NEAREST */ + 1265, /* GL_NEAREST_MIPMAP_NEAREST */ 872, /* GL_LINEAR_MIPMAP_NEAREST */ - 1263, /* GL_NEAREST_MIPMAP_LINEAR */ + 1264, /* GL_NEAREST_MIPMAP_LINEAR */ 871, /* GL_LINEAR_MIPMAP_LINEAR */ - 2134, /* GL_TEXTURE_MAG_FILTER */ - 2143, /* GL_TEXTURE_MIN_FILTER */ - 2164, /* GL_TEXTURE_WRAP_S */ - 2165, /* GL_TEXTURE_WRAP_T */ + 2138, /* GL_TEXTURE_MAG_FILTER */ + 2147, /* GL_TEXTURE_MIN_FILTER */ + 2168, /* GL_TEXTURE_WRAP_S */ + 2169, /* GL_TEXTURE_WRAP_T */ 155, /* GL_CLAMP */ - 1643, /* GL_REPEAT */ - 1437, /* GL_POLYGON_OFFSET_UNITS */ - 1436, /* GL_POLYGON_OFFSET_POINT */ - 1435, /* GL_POLYGON_OFFSET_LINE */ - 1583, /* GL_R3_G3_B2 */ - 2274, /* GL_V2F */ - 2275, /* GL_V3F */ + 1646, /* GL_REPEAT */ + 1440, /* GL_POLYGON_OFFSET_UNITS */ + 1439, /* GL_POLYGON_OFFSET_POINT */ + 1438, /* GL_POLYGON_OFFSET_LINE */ + 1586, /* GL_R3_G3_B2 */ + 2278, /* GL_V2F */ + 2279, /* GL_V3F */ 152, /* GL_C4UB_V2F */ 153, /* GL_C4UB_V3F */ 150, /* GL_C3F_V3F */ - 1257, /* GL_N3F_V3F */ + 1258, /* GL_N3F_V3F */ 151, /* GL_C4F_N3F_V3F */ - 1941, /* GL_T2F_V3F */ - 1943, /* GL_T4F_V4F */ - 1939, /* GL_T2F_C4UB_V3F */ - 1937, /* GL_T2F_C3F_V3F */ - 1940, /* GL_T2F_N3F_V3F */ - 1938, /* GL_T2F_C4F_N3F_V3F */ - 1942, /* GL_T4F_C4F_N3F_V4F */ + 1945, /* GL_T2F_V3F */ + 1947, /* GL_T4F_V4F */ + 1943, /* GL_T2F_C4UB_V3F */ + 1941, /* GL_T2F_C3F_V3F */ + 1944, /* GL_T2F_N3F_V3F */ + 1942, /* GL_T2F_C4F_N3F_V3F */ + 1946, /* GL_T4F_C4F_N3F_V4F */ 172, /* GL_CLIP_DISTANCE0 */ 173, /* GL_CLIP_DISTANCE1 */ 174, /* GL_CLIP_DISTANCE2 */ @@ -5208,38 +5216,38 @@ static const unsigned reduced_enums[1594] = 858, /* GL_LIGHT7 */ 746, /* GL_HINT_BIT */ 322, /* GL_CONSTANT_COLOR */ - 1312, /* GL_ONE_MINUS_CONSTANT_COLOR */ + 1313, /* GL_ONE_MINUS_CONSTANT_COLOR */ 317, /* GL_CONSTANT_ALPHA */ - 1310, /* GL_ONE_MINUS_CONSTANT_ALPHA */ + 1311, /* GL_ONE_MINUS_CONSTANT_ALPHA */ 89, /* GL_BLEND_COLOR */ 711, /* GL_FUNC_ADD */ - 1190, /* GL_MIN */ + 1191, /* GL_MIN */ 1056, /* GL_MAX */ 96, /* GL_BLEND_EQUATION */ 717, /* GL_FUNC_SUBTRACT */ 714, /* GL_FUNC_REVERSE_SUBTRACT */ 331, /* GL_CONVOLUTION_1D */ 332, /* GL_CONVOLUTION_2D */ - 1799, /* GL_SEPARABLE_2D */ + 1802, /* GL_SEPARABLE_2D */ 335, /* GL_CONVOLUTION_BORDER_MODE */ 339, /* GL_CONVOLUTION_FILTER_SCALE */ 337, /* GL_CONVOLUTION_FILTER_BIAS */ - 1598, /* GL_REDUCE */ + 1601, /* GL_REDUCE */ 341, /* GL_CONVOLUTION_FORMAT */ 345, /* GL_CONVOLUTION_WIDTH */ 343, /* GL_CONVOLUTION_HEIGHT */ 1075, /* GL_MAX_CONVOLUTION_WIDTH */ 1073, /* GL_MAX_CONVOLUTION_HEIGHT */ - 1476, /* GL_POST_CONVOLUTION_RED_SCALE */ - 1472, /* GL_POST_CONVOLUTION_GREEN_SCALE */ - 1467, /* GL_POST_CONVOLUTION_BLUE_SCALE */ - 1463, /* GL_POST_CONVOLUTION_ALPHA_SCALE */ - 1474, /* GL_POST_CONVOLUTION_RED_BIAS */ - 1470, /* GL_POST_CONVOLUTION_GREEN_BIAS */ - 1465, /* GL_POST_CONVOLUTION_BLUE_BIAS */ - 1461, /* GL_POST_CONVOLUTION_ALPHA_BIAS */ + 1479, /* GL_POST_CONVOLUTION_RED_SCALE */ + 1475, /* GL_POST_CONVOLUTION_GREEN_SCALE */ + 1470, /* GL_POST_CONVOLUTION_BLUE_SCALE */ + 1466, /* GL_POST_CONVOLUTION_ALPHA_SCALE */ + 1477, /* GL_POST_CONVOLUTION_RED_BIAS */ + 1473, /* GL_POST_CONVOLUTION_GREEN_BIAS */ + 1468, /* GL_POST_CONVOLUTION_BLUE_BIAS */ + 1464, /* GL_POST_CONVOLUTION_ALPHA_BIAS */ 747, /* GL_HISTOGRAM */ - 1539, /* GL_PROXY_HISTOGRAM */ + 1542, /* GL_PROXY_HISTOGRAM */ 763, /* GL_HISTOGRAM_WIDTH */ 753, /* GL_HISTOGRAM_FORMAT */ 759, /* GL_HISTOGRAM_RED_SIZE */ @@ -5248,19 +5256,19 @@ static const unsigned reduced_enums[1594] = 748, /* GL_HISTOGRAM_ALPHA_SIZE */ 757, /* GL_HISTOGRAM_LUMINANCE_SIZE */ 761, /* GL_HISTOGRAM_SINK */ - 1191, /* GL_MINMAX */ - 1193, /* GL_MINMAX_FORMAT */ - 1195, /* GL_MINMAX_SINK */ - 1944, /* GL_TABLE_TOO_LARGE_EXT */ - 2223, /* GL_UNSIGNED_BYTE_3_3_2 */ - 2263, /* GL_UNSIGNED_SHORT_4_4_4_4 */ - 2266, /* GL_UNSIGNED_SHORT_5_5_5_1 */ - 2235, /* GL_UNSIGNED_INT_8_8_8_8 */ - 2226, /* GL_UNSIGNED_INT_10_10_10_2 */ - 1434, /* GL_POLYGON_OFFSET_FILL */ - 1433, /* GL_POLYGON_OFFSET_FACTOR */ - 1432, /* GL_POLYGON_OFFSET_BIAS */ - 1648, /* GL_RESCALE_NORMAL */ + 1192, /* GL_MINMAX */ + 1194, /* GL_MINMAX_FORMAT */ + 1196, /* GL_MINMAX_SINK */ + 1948, /* GL_TABLE_TOO_LARGE_EXT */ + 2227, /* GL_UNSIGNED_BYTE_3_3_2 */ + 2267, /* GL_UNSIGNED_SHORT_4_4_4_4 */ + 2270, /* GL_UNSIGNED_SHORT_5_5_5_1 */ + 2239, /* GL_UNSIGNED_INT_8_8_8_8 */ + 2230, /* GL_UNSIGNED_INT_10_10_10_2 */ + 1437, /* GL_POLYGON_OFFSET_FILL */ + 1436, /* GL_POLYGON_OFFSET_FACTOR */ + 1435, /* GL_POLYGON_OFFSET_BIAS */ + 1651, /* GL_RESCALE_NORMAL */ 41, /* GL_ALPHA4 */ 43, /* GL_ALPHA8 */ 33, /* GL_ALPHA12 */ @@ -5280,102 +5288,102 @@ static const unsigned reduced_enums[1594] = 802, /* GL_INTENSITY8 */ 792, /* GL_INTENSITY12 */ 794, /* GL_INTENSITY16 */ - 1671, /* GL_RGB2_EXT */ - 1677, /* GL_RGB4 */ - 1680, /* GL_RGB5 */ - 1687, /* GL_RGB8 */ - 1656, /* GL_RGB10 */ - 1661, /* GL_RGB12 */ - 1663, /* GL_RGB16 */ - 1707, /* GL_RGBA2 */ - 1714, /* GL_RGBA4 */ - 1683, /* GL_RGB5_A1 */ - 1719, /* GL_RGBA8 */ - 1657, /* GL_RGB10_A2 */ - 1697, /* GL_RGBA12 */ - 1699, /* GL_RGBA16 */ - 2151, /* GL_TEXTURE_RED_SIZE */ - 2119, /* GL_TEXTURE_GREEN_SIZE */ - 2039, /* GL_TEXTURE_BLUE_SIZE */ - 2018, /* GL_TEXTURE_ALPHA_SIZE */ - 2132, /* GL_TEXTURE_LUMINANCE_SIZE */ - 2123, /* GL_TEXTURE_INTENSITY_SIZE */ - 1645, /* GL_REPLACE_EXT */ - 1543, /* GL_PROXY_TEXTURE_1D */ - 1547, /* GL_PROXY_TEXTURE_2D */ - 2159, /* GL_TEXTURE_TOO_LARGE_EXT */ - 2145, /* GL_TEXTURE_PRIORITY */ - 2153, /* GL_TEXTURE_RESIDENT */ - 2021, /* GL_TEXTURE_BINDING_1D */ - 2024, /* GL_TEXTURE_BINDING_2D */ - 2027, /* GL_TEXTURE_BINDING_3D */ - 1348, /* GL_PACK_SKIP_IMAGES */ - 1344, /* GL_PACK_IMAGE_HEIGHT */ - 2216, /* GL_UNPACK_SKIP_IMAGES */ - 2213, /* GL_UNPACK_IMAGE_HEIGHT */ - 2016, /* GL_TEXTURE_3D */ - 1551, /* GL_PROXY_TEXTURE_3D */ - 2102, /* GL_TEXTURE_DEPTH */ - 2162, /* GL_TEXTURE_WRAP_R */ + 1674, /* GL_RGB2_EXT */ + 1680, /* GL_RGB4 */ + 1683, /* GL_RGB5 */ + 1690, /* GL_RGB8 */ + 1659, /* GL_RGB10 */ + 1664, /* GL_RGB12 */ + 1666, /* GL_RGB16 */ + 1710, /* GL_RGBA2 */ + 1717, /* GL_RGBA4 */ + 1686, /* GL_RGB5_A1 */ + 1722, /* GL_RGBA8 */ + 1660, /* GL_RGB10_A2 */ + 1700, /* GL_RGBA12 */ + 1702, /* GL_RGBA16 */ + 2155, /* GL_TEXTURE_RED_SIZE */ + 2123, /* GL_TEXTURE_GREEN_SIZE */ + 2043, /* GL_TEXTURE_BLUE_SIZE */ + 2022, /* GL_TEXTURE_ALPHA_SIZE */ + 2136, /* GL_TEXTURE_LUMINANCE_SIZE */ + 2127, /* GL_TEXTURE_INTENSITY_SIZE */ + 1648, /* GL_REPLACE_EXT */ + 1546, /* GL_PROXY_TEXTURE_1D */ + 1550, /* GL_PROXY_TEXTURE_2D */ + 2163, /* GL_TEXTURE_TOO_LARGE_EXT */ + 2149, /* GL_TEXTURE_PRIORITY */ + 2157, /* GL_TEXTURE_RESIDENT */ + 2025, /* GL_TEXTURE_BINDING_1D */ + 2028, /* GL_TEXTURE_BINDING_2D */ + 2031, /* GL_TEXTURE_BINDING_3D */ + 1351, /* GL_PACK_SKIP_IMAGES */ + 1347, /* GL_PACK_IMAGE_HEIGHT */ + 2220, /* GL_UNPACK_SKIP_IMAGES */ + 2217, /* GL_UNPACK_IMAGE_HEIGHT */ + 2020, /* GL_TEXTURE_3D */ + 1554, /* GL_PROXY_TEXTURE_3D */ + 2106, /* GL_TEXTURE_DEPTH */ + 2166, /* GL_TEXTURE_WRAP_R */ 1057, /* GL_MAX_3D_TEXTURE_SIZE */ - 2279, /* GL_VERTEX_ARRAY */ - 1272, /* GL_NORMAL_ARRAY */ + 2283, /* GL_VERTEX_ARRAY */ + 1273, /* GL_NORMAL_ARRAY */ 189, /* GL_COLOR_ARRAY */ 775, /* GL_INDEX_ARRAY */ - 2072, /* GL_TEXTURE_COORD_ARRAY */ + 2076, /* GL_TEXTURE_COORD_ARRAY */ 555, /* GL_EDGE_FLAG_ARRAY */ - 2285, /* GL_VERTEX_ARRAY_SIZE */ - 2287, /* GL_VERTEX_ARRAY_TYPE */ - 2286, /* GL_VERTEX_ARRAY_STRIDE */ - 1277, /* GL_NORMAL_ARRAY_TYPE */ - 1276, /* GL_NORMAL_ARRAY_STRIDE */ + 2289, /* GL_VERTEX_ARRAY_SIZE */ + 2291, /* GL_VERTEX_ARRAY_TYPE */ + 2290, /* GL_VERTEX_ARRAY_STRIDE */ + 1278, /* GL_NORMAL_ARRAY_TYPE */ + 1277, /* GL_NORMAL_ARRAY_STRIDE */ 193, /* GL_COLOR_ARRAY_SIZE */ 195, /* GL_COLOR_ARRAY_TYPE */ 194, /* GL_COLOR_ARRAY_STRIDE */ 780, /* GL_INDEX_ARRAY_TYPE */ 779, /* GL_INDEX_ARRAY_STRIDE */ - 2076, /* GL_TEXTURE_COORD_ARRAY_SIZE */ - 2078, /* GL_TEXTURE_COORD_ARRAY_TYPE */ - 2077, /* GL_TEXTURE_COORD_ARRAY_STRIDE */ + 2080, /* GL_TEXTURE_COORD_ARRAY_SIZE */ + 2082, /* GL_TEXTURE_COORD_ARRAY_TYPE */ + 2081, /* GL_TEXTURE_COORD_ARRAY_STRIDE */ 559, /* GL_EDGE_FLAG_ARRAY_STRIDE */ - 2284, /* GL_VERTEX_ARRAY_POINTER */ - 1275, /* GL_NORMAL_ARRAY_POINTER */ + 2288, /* GL_VERTEX_ARRAY_POINTER */ + 1276, /* GL_NORMAL_ARRAY_POINTER */ 192, /* GL_COLOR_ARRAY_POINTER */ 778, /* GL_INDEX_ARRAY_POINTER */ - 2075, /* GL_TEXTURE_COORD_ARRAY_POINTER */ + 2079, /* GL_TEXTURE_COORD_ARRAY_POINTER */ 558, /* GL_EDGE_FLAG_ARRAY_POINTER */ - 1250, /* GL_MULTISAMPLE */ - 1773, /* GL_SAMPLE_ALPHA_TO_COVERAGE */ - 1775, /* GL_SAMPLE_ALPHA_TO_ONE */ - 1780, /* GL_SAMPLE_COVERAGE */ - 1777, /* GL_SAMPLE_BUFFERS */ - 1768, /* GL_SAMPLES */ - 1784, /* GL_SAMPLE_COVERAGE_VALUE */ - 1782, /* GL_SAMPLE_COVERAGE_INVERT */ + 1251, /* GL_MULTISAMPLE */ + 1776, /* GL_SAMPLE_ALPHA_TO_COVERAGE */ + 1778, /* GL_SAMPLE_ALPHA_TO_ONE */ + 1783, /* GL_SAMPLE_COVERAGE */ + 1780, /* GL_SAMPLE_BUFFERS */ + 1771, /* GL_SAMPLES */ + 1787, /* GL_SAMPLE_COVERAGE_VALUE */ + 1785, /* GL_SAMPLE_COVERAGE_INVERT */ 237, /* GL_COLOR_MATRIX */ 239, /* GL_COLOR_MATRIX_STACK_DEPTH */ 1069, /* GL_MAX_COLOR_MATRIX_STACK_DEPTH */ - 1459, /* GL_POST_COLOR_MATRIX_RED_SCALE */ - 1455, /* GL_POST_COLOR_MATRIX_GREEN_SCALE */ - 1450, /* GL_POST_COLOR_MATRIX_BLUE_SCALE */ - 1446, /* GL_POST_COLOR_MATRIX_ALPHA_SCALE */ - 1457, /* GL_POST_COLOR_MATRIX_RED_BIAS */ - 1453, /* GL_POST_COLOR_MATRIX_GREEN_BIAS */ - 1448, /* GL_POST_COLOR_MATRIX_BLUE_BIAS */ - 1444, /* GL_POST_COLOR_MATRIX_ALPHA_BIAS */ - 2055, /* GL_TEXTURE_COLOR_TABLE_SGI */ - 1552, /* GL_PROXY_TEXTURE_COLOR_TABLE_SGI */ - 2057, /* GL_TEXTURE_COMPARE_FAIL_VALUE_ARB */ + 1462, /* GL_POST_COLOR_MATRIX_RED_SCALE */ + 1458, /* GL_POST_COLOR_MATRIX_GREEN_SCALE */ + 1453, /* GL_POST_COLOR_MATRIX_BLUE_SCALE */ + 1449, /* GL_POST_COLOR_MATRIX_ALPHA_SCALE */ + 1460, /* GL_POST_COLOR_MATRIX_RED_BIAS */ + 1456, /* GL_POST_COLOR_MATRIX_GREEN_BIAS */ + 1451, /* GL_POST_COLOR_MATRIX_BLUE_BIAS */ + 1447, /* GL_POST_COLOR_MATRIX_ALPHA_BIAS */ + 2059, /* GL_TEXTURE_COLOR_TABLE_SGI */ + 1555, /* GL_PROXY_TEXTURE_COLOR_TABLE_SGI */ + 2061, /* GL_TEXTURE_COMPARE_FAIL_VALUE_ARB */ 94, /* GL_BLEND_DST_RGB */ 108, /* GL_BLEND_SRC_RGB */ 92, /* GL_BLEND_DST_ALPHA */ 106, /* GL_BLEND_SRC_ALPHA */ 243, /* GL_COLOR_TABLE */ - 1469, /* GL_POST_CONVOLUTION_COLOR_TABLE */ - 1452, /* GL_POST_COLOR_MATRIX_COLOR_TABLE */ - 1538, /* GL_PROXY_COLOR_TABLE */ - 1542, /* GL_PROXY_POST_CONVOLUTION_COLOR_TABLE */ - 1541, /* GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE */ + 1472, /* GL_POST_CONVOLUTION_COLOR_TABLE */ + 1455, /* GL_POST_COLOR_MATRIX_COLOR_TABLE */ + 1541, /* GL_PROXY_COLOR_TABLE */ + 1545, /* GL_PROXY_POST_CONVOLUTION_COLOR_TABLE */ + 1544, /* GL_PROXY_POST_COLOR_MATRIX_COLOR_TABLE */ 267, /* GL_COLOR_TABLE_SCALE */ 247, /* GL_COLOR_TABLE_BIAS */ 252, /* GL_COLOR_TABLE_FORMAT */ @@ -5388,62 +5396,62 @@ static const unsigned reduced_enums[1594] = 258, /* GL_COLOR_TABLE_INTENSITY_SIZE */ 79, /* GL_BGR */ 80, /* GL_BGRA */ - 1087, /* GL_MAX_ELEMENTS_VERTICES */ - 1086, /* GL_MAX_ELEMENTS_INDICES */ - 2122, /* GL_TEXTURE_INDEX_SIZE_EXT */ + 1088, /* GL_MAX_ELEMENTS_VERTICES */ + 1087, /* GL_MAX_ELEMENTS_INDICES */ + 2126, /* GL_TEXTURE_INDEX_SIZE_EXT */ 186, /* GL_CLIP_VOLUME_CLIPPING_HINT_EXT */ - 1415, /* GL_POINT_SIZE_MIN */ - 1411, /* GL_POINT_SIZE_MAX */ - 1400, /* GL_POINT_FADE_THRESHOLD_SIZE */ - 1396, /* GL_POINT_DISTANCE_ATTENUATION */ + 1418, /* GL_POINT_SIZE_MIN */ + 1414, /* GL_POINT_SIZE_MAX */ + 1403, /* GL_POINT_FADE_THRESHOLD_SIZE */ + 1399, /* GL_POINT_DISTANCE_ATTENUATION */ 159, /* GL_CLAMP_TO_BORDER */ 162, /* GL_CLAMP_TO_EDGE */ - 2144, /* GL_TEXTURE_MIN_LOD */ - 2142, /* GL_TEXTURE_MAX_LOD */ - 2020, /* GL_TEXTURE_BASE_LEVEL */ - 2141, /* GL_TEXTURE_MAX_LEVEL */ + 2148, /* GL_TEXTURE_MIN_LOD */ + 2146, /* GL_TEXTURE_MAX_LOD */ + 2024, /* GL_TEXTURE_BASE_LEVEL */ + 2145, /* GL_TEXTURE_MAX_LEVEL */ 766, /* GL_IGNORE_BORDER_HP */ 321, /* GL_CONSTANT_BORDER_HP */ - 1646, /* GL_REPLICATE_BORDER_HP */ + 1649, /* GL_REPLICATE_BORDER_HP */ 333, /* GL_CONVOLUTION_BORDER_COLOR */ - 1307, /* GL_OCCLUSION_TEST_HP */ - 1308, /* GL_OCCLUSION_TEST_RESULT_HP */ + 1308, /* GL_OCCLUSION_TEST_HP */ + 1309, /* GL_OCCLUSION_TEST_RESULT_HP */ 869, /* GL_LINEAR_CLIPMAP_LINEAR_SGIX */ - 2049, /* GL_TEXTURE_CLIPMAP_CENTER_SGIX */ - 2051, /* GL_TEXTURE_CLIPMAP_FRAME_SGIX */ - 2053, /* GL_TEXTURE_CLIPMAP_OFFSET_SGIX */ - 2054, /* GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX */ - 2052, /* GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX */ - 2050, /* GL_TEXTURE_CLIPMAP_DEPTH_SGIX */ + 2053, /* GL_TEXTURE_CLIPMAP_CENTER_SGIX */ + 2055, /* GL_TEXTURE_CLIPMAP_FRAME_SGIX */ + 2057, /* GL_TEXTURE_CLIPMAP_OFFSET_SGIX */ + 2058, /* GL_TEXTURE_CLIPMAP_VIRTUAL_DEPTH_SGIX */ + 2056, /* GL_TEXTURE_CLIPMAP_LOD_OFFSET_SGIX */ + 2054, /* GL_TEXTURE_CLIPMAP_DEPTH_SGIX */ 1063, /* GL_MAX_CLIPMAP_DEPTH_SGIX */ 1064, /* GL_MAX_CLIPMAP_VIRTUAL_DEPTH_SGIX */ - 1479, /* GL_POST_TEXTURE_FILTER_BIAS_SGIX */ - 1481, /* GL_POST_TEXTURE_FILTER_SCALE_SGIX */ - 1478, /* GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX */ - 1480, /* GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX */ - 2130, /* GL_TEXTURE_LOD_BIAS_S_SGIX */ - 2131, /* GL_TEXTURE_LOD_BIAS_T_SGIX */ - 2129, /* GL_TEXTURE_LOD_BIAS_R_SGIX */ + 1482, /* GL_POST_TEXTURE_FILTER_BIAS_SGIX */ + 1484, /* GL_POST_TEXTURE_FILTER_SCALE_SGIX */ + 1481, /* GL_POST_TEXTURE_FILTER_BIAS_RANGE_SGIX */ + 1483, /* GL_POST_TEXTURE_FILTER_SCALE_RANGE_SGIX */ + 2134, /* GL_TEXTURE_LOD_BIAS_S_SGIX */ + 2135, /* GL_TEXTURE_LOD_BIAS_T_SGIX */ + 2133, /* GL_TEXTURE_LOD_BIAS_R_SGIX */ 720, /* GL_GENERATE_MIPMAP */ 721, /* GL_GENERATE_MIPMAP_HINT */ 633, /* GL_FOG_OFFSET_SGIX */ 634, /* GL_FOG_OFFSET_VALUE_SGIX */ - 2063, /* GL_TEXTURE_COMPARE_SGIX */ - 2062, /* GL_TEXTURE_COMPARE_OPERATOR_SGIX */ - 2126, /* GL_TEXTURE_LEQUAL_R_SGIX */ - 2118, /* GL_TEXTURE_GEQUAL_R_SGIX */ + 2067, /* GL_TEXTURE_COMPARE_SGIX */ + 2066, /* GL_TEXTURE_COMPARE_OPERATOR_SGIX */ + 2130, /* GL_TEXTURE_LEQUAL_R_SGIX */ + 2122, /* GL_TEXTURE_GEQUAL_R_SGIX */ 436, /* GL_DEPTH_COMPONENT16 */ 440, /* GL_DEPTH_COMPONENT24 */ 444, /* GL_DEPTH_COMPONENT32 */ 358, /* GL_CULL_VERTEX_EXT */ 360, /* GL_CULL_VERTEX_OBJECT_POSITION_EXT */ 359, /* GL_CULL_VERTEX_EYE_POSITION_EXT */ - 2352, /* GL_WRAP_BORDER_SUN */ - 2056, /* GL_TEXTURE_COLOR_WRITEMASK_SGIS */ + 2356, /* GL_WRAP_BORDER_SUN */ + 2060, /* GL_TEXTURE_COLOR_WRITEMASK_SGIS */ 862, /* GL_LIGHT_MODEL_COLOR_CONTROL */ - 1818, /* GL_SINGLE_COLOR */ - 1802, /* GL_SEPARATE_SPECULAR_COLOR */ - 1813, /* GL_SHARED_TEXTURE_PALETTE_EXT */ + 1821, /* GL_SINGLE_COLOR */ + 1805, /* GL_SEPARATE_SPECULAR_COLOR */ + 1816, /* GL_SHARED_TEXTURE_PALETTE_EXT */ 645, /* GL_FRAMEBUFFER_ATTACHMENT_COLOR_ENCODING */ 646, /* GL_FRAMEBUFFER_ATTACHMENT_COMPONENT_TYPE */ 657, /* GL_FRAMEBUFFER_ATTACHMENT_RED_SIZE */ @@ -5456,12 +5464,12 @@ static const unsigned reduced_enums[1594] = 702, /* GL_FRAMEBUFFER_UNDEFINED */ 452, /* GL_DEPTH_STENCIL_ATTACHMENT */ 939, /* GL_MAJOR_VERSION */ - 1197, /* GL_MINOR_VERSION */ - 1287, /* GL_NUM_EXTENSIONS */ + 1198, /* GL_MINOR_VERSION */ + 1288, /* GL_NUM_EXTENSIONS */ 327, /* GL_CONTEXT_FLAGS */ 774, /* GL_INDEX */ 430, /* GL_DEPTH_BUFFER */ - 1892, /* GL_STENCIL_BUFFER */ + 1896, /* GL_STENCIL_BUFFER */ 298, /* GL_COMPRESSED_RED */ 299, /* GL_COMPRESSED_RG */ 397, /* GL_DEBUG_OUTPUT_SYNCHRONOUS_ARB */ @@ -5483,33 +5491,33 @@ static const unsigned reduced_enums[1594] = 899, /* GL_LOSE_CONTEXT_ON_RESET_ARB */ 741, /* GL_GUILTY_CONTEXT_RESET_ARB */ 789, /* GL_INNOCENT_CONTEXT_RESET_ARB */ - 2211, /* GL_UNKNOWN_CONTEXT_RESET_ARB */ - 1650, /* GL_RESET_NOTIFICATION_STRATEGY_ARB */ - 1501, /* GL_PROGRAM_BINARY_RETRIEVABLE_HINT */ - 1284, /* GL_NO_RESET_NOTIFICATION_ARB */ - 2222, /* GL_UNSIGNED_BYTE_2_3_3_REV */ - 2267, /* GL_UNSIGNED_SHORT_5_6_5 */ - 2268, /* GL_UNSIGNED_SHORT_5_6_5_REV */ - 2264, /* GL_UNSIGNED_SHORT_4_4_4_4_REV */ - 2261, /* GL_UNSIGNED_SHORT_1_5_5_5_REV */ - 2236, /* GL_UNSIGNED_INT_8_8_8_8_REV */ - 2232, /* GL_UNSIGNED_INT_2_10_10_10_REV */ - 2139, /* GL_TEXTURE_MAX_CLAMP_S_SGIX */ - 2140, /* GL_TEXTURE_MAX_CLAMP_T_SGIX */ - 2138, /* GL_TEXTURE_MAX_CLAMP_R_SGIX */ - 1200, /* GL_MIRRORED_REPEAT */ - 1737, /* GL_RGB_S3TC */ - 1679, /* GL_RGB4_S3TC */ - 1733, /* GL_RGBA_S3TC */ - 1718, /* GL_RGBA4_S3TC */ - 1727, /* GL_RGBA_DXT5_S3TC */ - 1715, /* GL_RGBA4_DXT5_S3TC */ + 2215, /* GL_UNKNOWN_CONTEXT_RESET_ARB */ + 1653, /* GL_RESET_NOTIFICATION_STRATEGY_ARB */ + 1504, /* GL_PROGRAM_BINARY_RETRIEVABLE_HINT */ + 1285, /* GL_NO_RESET_NOTIFICATION_ARB */ + 2226, /* GL_UNSIGNED_BYTE_2_3_3_REV */ + 2271, /* GL_UNSIGNED_SHORT_5_6_5 */ + 2272, /* GL_UNSIGNED_SHORT_5_6_5_REV */ + 2268, /* GL_UNSIGNED_SHORT_4_4_4_4_REV */ + 2265, /* GL_UNSIGNED_SHORT_1_5_5_5_REV */ + 2240, /* GL_UNSIGNED_INT_8_8_8_8_REV */ + 2236, /* GL_UNSIGNED_INT_2_10_10_10_REV */ + 2143, /* GL_TEXTURE_MAX_CLAMP_S_SGIX */ + 2144, /* GL_TEXTURE_MAX_CLAMP_T_SGIX */ + 2142, /* GL_TEXTURE_MAX_CLAMP_R_SGIX */ + 1201, /* GL_MIRRORED_REPEAT */ + 1740, /* GL_RGB_S3TC */ + 1682, /* GL_RGB4_S3TC */ + 1736, /* GL_RGBA_S3TC */ + 1721, /* GL_RGBA4_S3TC */ + 1730, /* GL_RGBA_DXT5_S3TC */ + 1718, /* GL_RGBA4_DXT5_S3TC */ 309, /* GL_COMPRESSED_RGB_S3TC_DXT1_EXT */ 304, /* GL_COMPRESSED_RGBA_S3TC_DXT1_EXT */ 305, /* GL_COMPRESSED_RGBA_S3TC_DXT3_EXT */ 306, /* GL_COMPRESSED_RGBA_S3TC_DXT5_EXT */ - 1262, /* GL_NEAREST_CLIPMAP_NEAREST_SGIX */ - 1261, /* GL_NEAREST_CLIPMAP_LINEAR_SGIX */ + 1263, /* GL_NEAREST_CLIPMAP_NEAREST_SGIX */ + 1262, /* GL_NEAREST_CLIPMAP_LINEAR_SGIX */ 870, /* GL_LINEAR_CLIPMAP_NEAREST_SGIX */ 620, /* GL_FOG_COORDINATE_SOURCE */ 612, /* GL_FOG_COORD */ @@ -5521,152 +5529,152 @@ static const unsigned reduced_enums[1594] = 614, /* GL_FOG_COORDINATE_ARRAY */ 241, /* GL_COLOR_SUM */ 385, /* GL_CURRENT_SECONDARY_COLOR */ - 1793, /* GL_SECONDARY_COLOR_ARRAY_SIZE */ - 1795, /* GL_SECONDARY_COLOR_ARRAY_TYPE */ - 1794, /* GL_SECONDARY_COLOR_ARRAY_STRIDE */ - 1792, /* GL_SECONDARY_COLOR_ARRAY_POINTER */ - 1789, /* GL_SECONDARY_COLOR_ARRAY */ + 1796, /* GL_SECONDARY_COLOR_ARRAY_SIZE */ + 1798, /* GL_SECONDARY_COLOR_ARRAY_TYPE */ + 1797, /* GL_SECONDARY_COLOR_ARRAY_STRIDE */ + 1795, /* GL_SECONDARY_COLOR_ARRAY_POINTER */ + 1792, /* GL_SECONDARY_COLOR_ARRAY */ 383, /* GL_CURRENT_RASTER_SECONDARY_COLOR */ 29, /* GL_ALIASED_POINT_SIZE_RANGE */ 28, /* GL_ALIASED_LINE_WIDTH_RANGE */ - 1946, /* GL_TEXTURE0 */ - 1948, /* GL_TEXTURE1 */ - 1970, /* GL_TEXTURE2 */ - 1992, /* GL_TEXTURE3 */ - 1998, /* GL_TEXTURE4 */ - 2000, /* GL_TEXTURE5 */ - 2002, /* GL_TEXTURE6 */ - 2004, /* GL_TEXTURE7 */ - 2006, /* GL_TEXTURE8 */ - 2008, /* GL_TEXTURE9 */ - 1949, /* GL_TEXTURE10 */ - 1951, /* GL_TEXTURE11 */ - 1953, /* GL_TEXTURE12 */ - 1955, /* GL_TEXTURE13 */ - 1957, /* GL_TEXTURE14 */ - 1959, /* GL_TEXTURE15 */ - 1961, /* GL_TEXTURE16 */ - 1963, /* GL_TEXTURE17 */ - 1965, /* GL_TEXTURE18 */ - 1967, /* GL_TEXTURE19 */ - 1971, /* GL_TEXTURE20 */ - 1973, /* GL_TEXTURE21 */ - 1975, /* GL_TEXTURE22 */ - 1977, /* GL_TEXTURE23 */ - 1979, /* GL_TEXTURE24 */ - 1981, /* GL_TEXTURE25 */ - 1983, /* GL_TEXTURE26 */ - 1985, /* GL_TEXTURE27 */ - 1987, /* GL_TEXTURE28 */ - 1989, /* GL_TEXTURE29 */ - 1993, /* GL_TEXTURE30 */ - 1995, /* GL_TEXTURE31 */ + 1950, /* GL_TEXTURE0 */ + 1952, /* GL_TEXTURE1 */ + 1974, /* GL_TEXTURE2 */ + 1996, /* GL_TEXTURE3 */ + 2002, /* GL_TEXTURE4 */ + 2004, /* GL_TEXTURE5 */ + 2006, /* GL_TEXTURE6 */ + 2008, /* GL_TEXTURE7 */ + 2010, /* GL_TEXTURE8 */ + 2012, /* GL_TEXTURE9 */ + 1953, /* GL_TEXTURE10 */ + 1955, /* GL_TEXTURE11 */ + 1957, /* GL_TEXTURE12 */ + 1959, /* GL_TEXTURE13 */ + 1961, /* GL_TEXTURE14 */ + 1963, /* GL_TEXTURE15 */ + 1965, /* GL_TEXTURE16 */ + 1967, /* GL_TEXTURE17 */ + 1969, /* GL_TEXTURE18 */ + 1971, /* GL_TEXTURE19 */ + 1975, /* GL_TEXTURE20 */ + 1977, /* GL_TEXTURE21 */ + 1979, /* GL_TEXTURE22 */ + 1981, /* GL_TEXTURE23 */ + 1983, /* GL_TEXTURE24 */ + 1985, /* GL_TEXTURE25 */ + 1987, /* GL_TEXTURE26 */ + 1989, /* GL_TEXTURE27 */ + 1991, /* GL_TEXTURE28 */ + 1993, /* GL_TEXTURE29 */ + 1997, /* GL_TEXTURE30 */ + 1999, /* GL_TEXTURE31 */ 19, /* GL_ACTIVE_TEXTURE */ 166, /* GL_CLIENT_ACTIVE_TEXTURE */ - 1162, /* GL_MAX_TEXTURE_UNITS */ - 2194, /* GL_TRANSPOSE_MODELVIEW_MATRIX */ - 2197, /* GL_TRANSPOSE_PROJECTION_MATRIX */ - 2199, /* GL_TRANSPOSE_TEXTURE_MATRIX */ - 2191, /* GL_TRANSPOSE_COLOR_MATRIX */ - 1928, /* GL_SUBTRACT */ - 1143, /* GL_MAX_RENDERBUFFER_SIZE */ + 1163, /* GL_MAX_TEXTURE_UNITS */ + 2198, /* GL_TRANSPOSE_MODELVIEW_MATRIX */ + 2201, /* GL_TRANSPOSE_PROJECTION_MATRIX */ + 2203, /* GL_TRANSPOSE_TEXTURE_MATRIX */ + 2195, /* GL_TRANSPOSE_COLOR_MATRIX */ + 1932, /* GL_SUBTRACT */ + 1144, /* GL_MAX_RENDERBUFFER_SIZE */ 290, /* GL_COMPRESSED_ALPHA */ 294, /* GL_COMPRESSED_LUMINANCE */ 295, /* GL_COMPRESSED_LUMINANCE_ALPHA */ 292, /* GL_COMPRESSED_INTENSITY */ 300, /* GL_COMPRESSED_RGB */ 301, /* GL_COMPRESSED_RGBA */ - 2070, /* GL_TEXTURE_COMPRESSION_HINT */ - 2148, /* GL_TEXTURE_RECTANGLE */ - 2035, /* GL_TEXTURE_BINDING_RECTANGLE */ - 1555, /* GL_PROXY_TEXTURE_RECTANGLE */ - 1140, /* GL_MAX_RECTANGLE_TEXTURE_SIZE */ + 2074, /* GL_TEXTURE_COMPRESSION_HINT */ + 2152, /* GL_TEXTURE_RECTANGLE */ + 2039, /* GL_TEXTURE_BINDING_RECTANGLE */ + 1558, /* GL_PROXY_TEXTURE_RECTANGLE */ + 1141, /* GL_MAX_RECTANGLE_TEXTURE_SIZE */ 451, /* GL_DEPTH_STENCIL */ - 2228, /* GL_UNSIGNED_INT_24_8 */ - 1157, /* GL_MAX_TEXTURE_LOD_BIAS */ - 2137, /* GL_TEXTURE_MAX_ANISOTROPY_EXT */ - 1159, /* GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT */ - 2109, /* GL_TEXTURE_FILTER_CONTROL */ - 2127, /* GL_TEXTURE_LOD_BIAS */ + 2232, /* GL_UNSIGNED_INT_24_8 */ + 1158, /* GL_MAX_TEXTURE_LOD_BIAS */ + 2141, /* GL_TEXTURE_MAX_ANISOTROPY_EXT */ + 1160, /* GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT */ + 2113, /* GL_TEXTURE_FILTER_CONTROL */ + 2131, /* GL_TEXTURE_LOD_BIAS */ 274, /* GL_COMBINE4 */ - 1149, /* GL_MAX_SHININESS_NV */ - 1150, /* GL_MAX_SPOT_EXPONENT_NV */ + 1150, /* GL_MAX_SHININESS_NV */ + 1151, /* GL_MAX_SPOT_EXPONENT_NV */ 772, /* GL_INCR_WRAP */ 416, /* GL_DECR_WRAP */ - 1220, /* GL_MODELVIEW1_ARB */ - 1278, /* GL_NORMAL_MAP */ - 1606, /* GL_REFLECTION_MAP */ - 2080, /* GL_TEXTURE_CUBE_MAP */ - 2031, /* GL_TEXTURE_BINDING_CUBE_MAP */ - 2092, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X */ - 2082, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X */ - 2095, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y */ - 2085, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y */ - 2098, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z */ - 2088, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z */ - 1553, /* GL_PROXY_TEXTURE_CUBE_MAP */ + 1221, /* GL_MODELVIEW1_ARB */ + 1279, /* GL_NORMAL_MAP */ + 1609, /* GL_REFLECTION_MAP */ + 2084, /* GL_TEXTURE_CUBE_MAP */ + 2035, /* GL_TEXTURE_BINDING_CUBE_MAP */ + 2096, /* GL_TEXTURE_CUBE_MAP_POSITIVE_X */ + 2086, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_X */ + 2099, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Y */ + 2089, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Y */ + 2102, /* GL_TEXTURE_CUBE_MAP_POSITIVE_Z */ + 2092, /* GL_TEXTURE_CUBE_MAP_NEGATIVE_Z */ + 1556, /* GL_PROXY_TEXTURE_CUBE_MAP */ 1077, /* GL_MAX_CUBE_MAP_TEXTURE_SIZE */ - 1256, /* GL_MULTISAMPLE_FILTER_HINT_NV */ - 1493, /* GL_PRIMITIVE_RESTART_NV */ - 1492, /* GL_PRIMITIVE_RESTART_INDEX_NV */ + 1257, /* GL_MULTISAMPLE_FILTER_HINT_NV */ + 1496, /* GL_PRIMITIVE_RESTART_NV */ + 1495, /* GL_PRIMITIVE_RESTART_INDEX_NV */ 628, /* GL_FOG_DISTANCE_MODE_NV */ 575, /* GL_EYE_RADIAL_NV */ 574, /* GL_EYE_PLANE_ABSOLUTE_NV */ 273, /* GL_COMBINE */ 280, /* GL_COMBINE_RGB */ 275, /* GL_COMBINE_ALPHA */ - 1738, /* GL_RGB_SCALE */ + 1741, /* GL_RGB_SCALE */ 25, /* GL_ADD_SIGNED */ 809, /* GL_INTERPOLATE */ 316, /* GL_CONSTANT */ - 1485, /* GL_PRIMARY_COLOR */ - 1482, /* GL_PREVIOUS */ - 1833, /* GL_SOURCE0_RGB */ - 1839, /* GL_SOURCE1_RGB */ - 1845, /* GL_SOURCE2_RGB */ - 1849, /* GL_SOURCE3_RGB_NV */ - 1830, /* GL_SOURCE0_ALPHA */ - 1836, /* GL_SOURCE1_ALPHA */ - 1842, /* GL_SOURCE2_ALPHA */ - 1848, /* GL_SOURCE3_ALPHA_NV */ - 1321, /* GL_OPERAND0_RGB */ - 1327, /* GL_OPERAND1_RGB */ - 1333, /* GL_OPERAND2_RGB */ - 1337, /* GL_OPERAND3_RGB_NV */ - 1318, /* GL_OPERAND0_ALPHA */ - 1324, /* GL_OPERAND1_ALPHA */ - 1330, /* GL_OPERAND2_ALPHA */ - 1336, /* GL_OPERAND3_ALPHA_NV */ + 1488, /* GL_PRIMARY_COLOR */ + 1485, /* GL_PREVIOUS */ + 1836, /* GL_SOURCE0_RGB */ + 1842, /* GL_SOURCE1_RGB */ + 1848, /* GL_SOURCE2_RGB */ + 1852, /* GL_SOURCE3_RGB_NV */ + 1833, /* GL_SOURCE0_ALPHA */ + 1839, /* GL_SOURCE1_ALPHA */ + 1845, /* GL_SOURCE2_ALPHA */ + 1851, /* GL_SOURCE3_ALPHA_NV */ + 1324, /* GL_OPERAND0_RGB */ + 1330, /* GL_OPERAND1_RGB */ + 1336, /* GL_OPERAND2_RGB */ + 1340, /* GL_OPERAND3_RGB_NV */ + 1321, /* GL_OPERAND0_ALPHA */ + 1327, /* GL_OPERAND1_ALPHA */ + 1333, /* GL_OPERAND2_ALPHA */ + 1339, /* GL_OPERAND3_ALPHA_NV */ 137, /* GL_BUFFER_OBJECT_APPLE */ - 2280, /* GL_VERTEX_ARRAY_BINDING */ - 2146, /* GL_TEXTURE_RANGE_LENGTH_APPLE */ - 2147, /* GL_TEXTURE_RANGE_POINTER_APPLE */ - 2357, /* GL_YCBCR_422_APPLE */ - 2269, /* GL_UNSIGNED_SHORT_8_8_APPLE */ - 2271, /* GL_UNSIGNED_SHORT_8_8_REV_APPLE */ - 2158, /* GL_TEXTURE_STORAGE_HINT_APPLE */ - 1919, /* GL_STORAGE_PRIVATE_APPLE */ - 1918, /* GL_STORAGE_CACHED_APPLE */ - 1920, /* GL_STORAGE_SHARED_APPLE */ - 1820, /* GL_SLICE_ACCUM_SUN */ - 1564, /* GL_QUAD_MESH_SUN */ - 2205, /* GL_TRIANGLE_MESH_SUN */ - 2322, /* GL_VERTEX_PROGRAM_ARB */ - 2333, /* GL_VERTEX_STATE_PROGRAM_NV */ - 2307, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED */ - 2315, /* GL_VERTEX_ATTRIB_ARRAY_SIZE */ - 2317, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE */ - 2319, /* GL_VERTEX_ATTRIB_ARRAY_TYPE */ + 2284, /* GL_VERTEX_ARRAY_BINDING */ + 2150, /* GL_TEXTURE_RANGE_LENGTH_APPLE */ + 2151, /* GL_TEXTURE_RANGE_POINTER_APPLE */ + 2361, /* GL_YCBCR_422_APPLE */ + 2273, /* GL_UNSIGNED_SHORT_8_8_APPLE */ + 2275, /* GL_UNSIGNED_SHORT_8_8_REV_APPLE */ + 2162, /* GL_TEXTURE_STORAGE_HINT_APPLE */ + 1923, /* GL_STORAGE_PRIVATE_APPLE */ + 1922, /* GL_STORAGE_CACHED_APPLE */ + 1924, /* GL_STORAGE_SHARED_APPLE */ + 1823, /* GL_SLICE_ACCUM_SUN */ + 1567, /* GL_QUAD_MESH_SUN */ + 2209, /* GL_TRIANGLE_MESH_SUN */ + 2326, /* GL_VERTEX_PROGRAM_ARB */ + 2337, /* GL_VERTEX_STATE_PROGRAM_NV */ + 2311, /* GL_VERTEX_ATTRIB_ARRAY_ENABLED */ + 2319, /* GL_VERTEX_ATTRIB_ARRAY_SIZE */ + 2321, /* GL_VERTEX_ATTRIB_ARRAY_STRIDE */ + 2323, /* GL_VERTEX_ATTRIB_ARRAY_TYPE */ 387, /* GL_CURRENT_VERTEX_ATTRIB */ - 1509, /* GL_PROGRAM_LENGTH_ARB */ - 1525, /* GL_PROGRAM_STRING_ARB */ - 1243, /* GL_MODELVIEW_PROJECTION_NV */ + 1512, /* GL_PROGRAM_LENGTH_ARB */ + 1528, /* GL_PROGRAM_STRING_ARB */ + 1244, /* GL_MODELVIEW_PROJECTION_NV */ 765, /* GL_IDENTITY_NV */ 842, /* GL_INVERSE_NV */ - 2196, /* GL_TRANSPOSE_NV */ + 2200, /* GL_TRANSPOSE_NV */ 843, /* GL_INVERSE_TRANSPOSE_NV */ - 1125, /* GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB */ - 1124, /* GL_MAX_PROGRAM_MATRICES_ARB */ + 1126, /* GL_MAX_PROGRAM_MATRIX_STACK_DEPTH_ARB */ + 1125, /* GL_MAX_PROGRAM_MATRICES_ARB */ 1003, /* GL_MATRIX0_NV */ 1015, /* GL_MATRIX1_NV */ 1027, /* GL_MATRIX2_NV */ @@ -5677,33 +5685,33 @@ static const unsigned reduced_enums[1594] = 1039, /* GL_MATRIX7_NV */ 370, /* GL_CURRENT_MATRIX_STACK_DEPTH_ARB */ 367, /* GL_CURRENT_MATRIX_ARB */ - 1522, /* GL_PROGRAM_POINT_SIZE */ - 2328, /* GL_VERTEX_PROGRAM_TWO_SIDE */ - 1521, /* GL_PROGRAM_PARAMETER_NV */ - 2313, /* GL_VERTEX_ATTRIB_ARRAY_POINTER */ - 1527, /* GL_PROGRAM_TARGET_NV */ - 1524, /* GL_PROGRAM_RESIDENT_NV */ - 2168, /* GL_TRACK_MATRIX_NV */ - 2169, /* GL_TRACK_MATRIX_TRANSFORM_NV */ - 2323, /* GL_VERTEX_PROGRAM_BINDING_NV */ - 1503, /* GL_PROGRAM_ERROR_POSITION_ARB */ + 1525, /* GL_PROGRAM_POINT_SIZE */ + 2332, /* GL_VERTEX_PROGRAM_TWO_SIDE */ + 1524, /* GL_PROGRAM_PARAMETER_NV */ + 2317, /* GL_VERTEX_ATTRIB_ARRAY_POINTER */ + 1530, /* GL_PROGRAM_TARGET_NV */ + 1527, /* GL_PROGRAM_RESIDENT_NV */ + 2172, /* GL_TRACK_MATRIX_NV */ + 2173, /* GL_TRACK_MATRIX_TRANSFORM_NV */ + 2327, /* GL_VERTEX_PROGRAM_BINDING_NV */ + 1506, /* GL_PROGRAM_ERROR_POSITION_ARB */ 432, /* GL_DEPTH_CLAMP */ - 2288, /* GL_VERTEX_ATTRIB_ARRAY0_NV */ - 2295, /* GL_VERTEX_ATTRIB_ARRAY1_NV */ - 2296, /* GL_VERTEX_ATTRIB_ARRAY2_NV */ - 2297, /* GL_VERTEX_ATTRIB_ARRAY3_NV */ - 2298, /* GL_VERTEX_ATTRIB_ARRAY4_NV */ - 2299, /* GL_VERTEX_ATTRIB_ARRAY5_NV */ - 2300, /* GL_VERTEX_ATTRIB_ARRAY6_NV */ - 2301, /* GL_VERTEX_ATTRIB_ARRAY7_NV */ - 2302, /* GL_VERTEX_ATTRIB_ARRAY8_NV */ - 2303, /* GL_VERTEX_ATTRIB_ARRAY9_NV */ - 2289, /* GL_VERTEX_ATTRIB_ARRAY10_NV */ - 2290, /* GL_VERTEX_ATTRIB_ARRAY11_NV */ - 2291, /* GL_VERTEX_ATTRIB_ARRAY12_NV */ - 2292, /* GL_VERTEX_ATTRIB_ARRAY13_NV */ - 2293, /* GL_VERTEX_ATTRIB_ARRAY14_NV */ - 2294, /* GL_VERTEX_ATTRIB_ARRAY15_NV */ + 2292, /* GL_VERTEX_ATTRIB_ARRAY0_NV */ + 2299, /* GL_VERTEX_ATTRIB_ARRAY1_NV */ + 2300, /* GL_VERTEX_ATTRIB_ARRAY2_NV */ + 2301, /* GL_VERTEX_ATTRIB_ARRAY3_NV */ + 2302, /* GL_VERTEX_ATTRIB_ARRAY4_NV */ + 2303, /* GL_VERTEX_ATTRIB_ARRAY5_NV */ + 2304, /* GL_VERTEX_ATTRIB_ARRAY6_NV */ + 2305, /* GL_VERTEX_ATTRIB_ARRAY7_NV */ + 2306, /* GL_VERTEX_ATTRIB_ARRAY8_NV */ + 2307, /* GL_VERTEX_ATTRIB_ARRAY9_NV */ + 2293, /* GL_VERTEX_ATTRIB_ARRAY10_NV */ + 2294, /* GL_VERTEX_ATTRIB_ARRAY11_NV */ + 2295, /* GL_VERTEX_ATTRIB_ARRAY12_NV */ + 2296, /* GL_VERTEX_ATTRIB_ARRAY13_NV */ + 2297, /* GL_VERTEX_ATTRIB_ARRAY14_NV */ + 2298, /* GL_VERTEX_ATTRIB_ARRAY15_NV */ 951, /* GL_MAP1_VERTEX_ATTRIB0_4_NV */ 958, /* GL_MAP1_VERTEX_ATTRIB1_4_NV */ 959, /* GL_MAP1_VERTEX_ATTRIB2_4_NV */ @@ -5727,7 +5735,7 @@ static const unsigned reduced_enums[1594] = 988, /* GL_MAP2_VERTEX_ATTRIB4_4_NV */ 989, /* GL_MAP2_VERTEX_ATTRIB5_4_NV */ 990, /* GL_MAP2_VERTEX_ATTRIB6_4_NV */ - 1502, /* GL_PROGRAM_BINDING_ARB */ + 1505, /* GL_PROGRAM_BINDING_ARB */ 992, /* GL_MAP2_VERTEX_ATTRIB8_4_NV */ 993, /* GL_MAP2_VERTEX_ATTRIB9_4_NV */ 979, /* GL_MAP2_VERTEX_ATTRIB10_4_NV */ @@ -5736,66 +5744,66 @@ static const unsigned reduced_enums[1594] = 982, /* GL_MAP2_VERTEX_ATTRIB13_4_NV */ 983, /* GL_MAP2_VERTEX_ATTRIB14_4_NV */ 984, /* GL_MAP2_VERTEX_ATTRIB15_4_NV */ - 2068, /* GL_TEXTURE_COMPRESSED_IMAGE_SIZE */ - 2065, /* GL_TEXTURE_COMPRESSED */ - 1285, /* GL_NUM_COMPRESSED_TEXTURE_FORMATS */ + 2072, /* GL_TEXTURE_COMPRESSED_IMAGE_SIZE */ + 2069, /* GL_TEXTURE_COMPRESSED */ + 1286, /* GL_NUM_COMPRESSED_TEXTURE_FORMATS */ 314, /* GL_COMPRESSED_TEXTURE_FORMATS */ - 1184, /* GL_MAX_VERTEX_UNITS_ARB */ + 1185, /* GL_MAX_VERTEX_UNITS_ARB */ 23, /* GL_ACTIVE_VERTEX_UNITS_ARB */ - 2351, /* GL_WEIGHT_SUM_UNITY_ARB */ - 2321, /* GL_VERTEX_BLEND_ARB */ + 2355, /* GL_WEIGHT_SUM_UNITY_ARB */ + 2325, /* GL_VERTEX_BLEND_ARB */ 389, /* GL_CURRENT_WEIGHT_ARB */ - 2349, /* GL_WEIGHT_ARRAY_TYPE_ARB */ - 2347, /* GL_WEIGHT_ARRAY_STRIDE_ARB */ - 2345, /* GL_WEIGHT_ARRAY_SIZE_ARB */ - 2343, /* GL_WEIGHT_ARRAY_POINTER_ARB */ - 2338, /* GL_WEIGHT_ARRAY_ARB */ + 2353, /* GL_WEIGHT_ARRAY_TYPE_ARB */ + 2351, /* GL_WEIGHT_ARRAY_STRIDE_ARB */ + 2349, /* GL_WEIGHT_ARRAY_SIZE_ARB */ + 2347, /* GL_WEIGHT_ARRAY_POINTER_ARB */ + 2342, /* GL_WEIGHT_ARRAY_ARB */ 466, /* GL_DOT3_RGB */ 467, /* GL_DOT3_RGBA */ 308, /* GL_COMPRESSED_RGB_FXT1_3DFX */ 303, /* GL_COMPRESSED_RGBA_FXT1_3DFX */ - 1251, /* GL_MULTISAMPLE_3DFX */ - 1778, /* GL_SAMPLE_BUFFERS_3DFX */ - 1769, /* GL_SAMPLES_3DFX */ - 1231, /* GL_MODELVIEW2_ARB */ - 1234, /* GL_MODELVIEW3_ARB */ - 1235, /* GL_MODELVIEW4_ARB */ - 1236, /* GL_MODELVIEW5_ARB */ - 1237, /* GL_MODELVIEW6_ARB */ - 1238, /* GL_MODELVIEW7_ARB */ - 1239, /* GL_MODELVIEW8_ARB */ - 1240, /* GL_MODELVIEW9_ARB */ - 1210, /* GL_MODELVIEW10_ARB */ - 1211, /* GL_MODELVIEW11_ARB */ - 1212, /* GL_MODELVIEW12_ARB */ - 1213, /* GL_MODELVIEW13_ARB */ - 1214, /* GL_MODELVIEW14_ARB */ - 1215, /* GL_MODELVIEW15_ARB */ - 1216, /* GL_MODELVIEW16_ARB */ - 1217, /* GL_MODELVIEW17_ARB */ - 1218, /* GL_MODELVIEW18_ARB */ - 1219, /* GL_MODELVIEW19_ARB */ - 1221, /* GL_MODELVIEW20_ARB */ - 1222, /* GL_MODELVIEW21_ARB */ - 1223, /* GL_MODELVIEW22_ARB */ - 1224, /* GL_MODELVIEW23_ARB */ - 1225, /* GL_MODELVIEW24_ARB */ - 1226, /* GL_MODELVIEW25_ARB */ - 1227, /* GL_MODELVIEW26_ARB */ - 1228, /* GL_MODELVIEW27_ARB */ - 1229, /* GL_MODELVIEW28_ARB */ - 1230, /* GL_MODELVIEW29_ARB */ - 1232, /* GL_MODELVIEW30_ARB */ - 1233, /* GL_MODELVIEW31_ARB */ + 1252, /* GL_MULTISAMPLE_3DFX */ + 1781, /* GL_SAMPLE_BUFFERS_3DFX */ + 1772, /* GL_SAMPLES_3DFX */ + 1232, /* GL_MODELVIEW2_ARB */ + 1235, /* GL_MODELVIEW3_ARB */ + 1236, /* GL_MODELVIEW4_ARB */ + 1237, /* GL_MODELVIEW5_ARB */ + 1238, /* GL_MODELVIEW6_ARB */ + 1239, /* GL_MODELVIEW7_ARB */ + 1240, /* GL_MODELVIEW8_ARB */ + 1241, /* GL_MODELVIEW9_ARB */ + 1211, /* GL_MODELVIEW10_ARB */ + 1212, /* GL_MODELVIEW11_ARB */ + 1213, /* GL_MODELVIEW12_ARB */ + 1214, /* GL_MODELVIEW13_ARB */ + 1215, /* GL_MODELVIEW14_ARB */ + 1216, /* GL_MODELVIEW15_ARB */ + 1217, /* GL_MODELVIEW16_ARB */ + 1218, /* GL_MODELVIEW17_ARB */ + 1219, /* GL_MODELVIEW18_ARB */ + 1220, /* GL_MODELVIEW19_ARB */ + 1222, /* GL_MODELVIEW20_ARB */ + 1223, /* GL_MODELVIEW21_ARB */ + 1224, /* GL_MODELVIEW22_ARB */ + 1225, /* GL_MODELVIEW23_ARB */ + 1226, /* GL_MODELVIEW24_ARB */ + 1227, /* GL_MODELVIEW25_ARB */ + 1228, /* GL_MODELVIEW26_ARB */ + 1229, /* GL_MODELVIEW27_ARB */ + 1230, /* GL_MODELVIEW28_ARB */ + 1231, /* GL_MODELVIEW29_ARB */ + 1233, /* GL_MODELVIEW30_ARB */ + 1234, /* GL_MODELVIEW31_ARB */ 471, /* GL_DOT3_RGB_EXT */ - 1499, /* GL_PROGRAM_BINARY_LENGTH */ - 1204, /* GL_MIRROR_CLAMP_EXT */ - 1207, /* GL_MIRROR_CLAMP_TO_EDGE_EXT */ - 1246, /* GL_MODULATE_ADD_ATI */ - 1247, /* GL_MODULATE_SIGNED_ADD_ATI */ - 1248, /* GL_MODULATE_SUBTRACT_ATI */ - 2358, /* GL_YCBCR_MESA */ - 1345, /* GL_PACK_INVERT_MESA */ + 1502, /* GL_PROGRAM_BINARY_LENGTH */ + 1205, /* GL_MIRROR_CLAMP_EXT */ + 1208, /* GL_MIRROR_CLAMP_TO_EDGE_EXT */ + 1247, /* GL_MODULATE_ADD_ATI */ + 1248, /* GL_MODULATE_SIGNED_ADD_ATI */ + 1249, /* GL_MODULATE_SUBTRACT_ATI */ + 2362, /* GL_YCBCR_MESA */ + 1348, /* GL_PACK_INVERT_MESA */ 396, /* GL_DEBUG_OBJECT_MESA */ 398, /* GL_DEBUG_PRINT_MESA */ 391, /* GL_DEBUG_ASSERT_MESA */ @@ -5809,30 +5817,30 @@ static const unsigned reduced_enums[1594] = 546, /* GL_DU8DV8_ATI */ 143, /* GL_BUMP_ENVMAP_ATI */ 147, /* GL_BUMP_TARGET_ATI */ - 1288, /* GL_NUM_PROGRAM_BINARY_FORMATS */ - 1497, /* GL_PROGRAM_BINARY_FORMATS */ - 1882, /* GL_STENCIL_BACK_FUNC */ - 1880, /* GL_STENCIL_BACK_FAIL */ - 1884, /* GL_STENCIL_BACK_PASS_DEPTH_FAIL */ - 1886, /* GL_STENCIL_BACK_PASS_DEPTH_PASS */ + 1289, /* GL_NUM_PROGRAM_BINARY_FORMATS */ + 1500, /* GL_PROGRAM_BINARY_FORMATS */ + 1886, /* GL_STENCIL_BACK_FUNC */ + 1884, /* GL_STENCIL_BACK_FAIL */ + 1888, /* GL_STENCIL_BACK_PASS_DEPTH_FAIL */ + 1890, /* GL_STENCIL_BACK_PASS_DEPTH_PASS */ 637, /* GL_FRAGMENT_PROGRAM_ARB */ - 1495, /* GL_PROGRAM_ALU_INSTRUCTIONS_ARB */ - 1530, /* GL_PROGRAM_TEX_INSTRUCTIONS_ARB */ - 1529, /* GL_PROGRAM_TEX_INDIRECTIONS_ARB */ - 1512, /* GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ - 1518, /* GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ - 1517, /* GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ - 1114, /* GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB */ - 1138, /* GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB */ - 1137, /* GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB */ - 1127, /* GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ - 1133, /* GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ - 1132, /* GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ - 1709, /* GL_RGBA32F */ - 1672, /* GL_RGB32F */ - 1700, /* GL_RGBA16F */ - 1664, /* GL_RGB16F */ - 1728, /* GL_RGBA_FLOAT_MODE_ARB */ + 1498, /* GL_PROGRAM_ALU_INSTRUCTIONS_ARB */ + 1533, /* GL_PROGRAM_TEX_INSTRUCTIONS_ARB */ + 1532, /* GL_PROGRAM_TEX_INDIRECTIONS_ARB */ + 1515, /* GL_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ + 1521, /* GL_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ + 1520, /* GL_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ + 1115, /* GL_MAX_PROGRAM_ALU_INSTRUCTIONS_ARB */ + 1139, /* GL_MAX_PROGRAM_TEX_INSTRUCTIONS_ARB */ + 1138, /* GL_MAX_PROGRAM_TEX_INDIRECTIONS_ARB */ + 1128, /* GL_MAX_PROGRAM_NATIVE_ALU_INSTRUCTIONS_ARB */ + 1134, /* GL_MAX_PROGRAM_NATIVE_TEX_INSTRUCTIONS_ARB */ + 1133, /* GL_MAX_PROGRAM_NATIVE_TEX_INDIRECTIONS_ARB */ + 1712, /* GL_RGBA32F */ + 1675, /* GL_RGB32F */ + 1703, /* GL_RGBA16F */ + 1667, /* GL_RGB16F */ + 1731, /* GL_RGBA_FLOAT_MODE_ARB */ 1082, /* GL_MAX_DRAW_BUFFERS */ 475, /* GL_DRAW_BUFFER0 */ 479, /* GL_DRAW_BUFFER1 */ @@ -5852,8 +5860,8 @@ static const unsigned reduced_enums[1594] = 500, /* GL_DRAW_BUFFER15 */ 97, /* GL_BLEND_EQUATION_ALPHA */ 1054, /* GL_MATRIX_PALETTE_ARB */ - 1107, /* GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB */ - 1110, /* GL_MAX_PALETTE_MATRICES_ARB */ + 1108, /* GL_MAX_MATRIX_PALETTE_STACK_DEPTH_ARB */ + 1111, /* GL_MAX_PALETTE_MATRICES_ARB */ 373, /* GL_CURRENT_PALETTE_MATRIX_ARB */ 1042, /* GL_MATRIX_INDEX_ARRAY_ARB */ 368, /* GL_CURRENT_MATRIX_INDEX_ARB */ @@ -5861,76 +5869,76 @@ static const unsigned reduced_enums[1594] = 1051, /* GL_MATRIX_INDEX_ARRAY_TYPE_ARB */ 1049, /* GL_MATRIX_INDEX_ARRAY_STRIDE_ARB */ 1045, /* GL_MATRIX_INDEX_ARRAY_POINTER_ARB */ - 2103, /* GL_TEXTURE_DEPTH_SIZE */ + 2107, /* GL_TEXTURE_DEPTH_SIZE */ 459, /* GL_DEPTH_TEXTURE_MODE */ - 2060, /* GL_TEXTURE_COMPARE_MODE */ - 2058, /* GL_TEXTURE_COMPARE_FUNC */ + 2064, /* GL_TEXTURE_COMPARE_MODE */ + 2062, /* GL_TEXTURE_COMPARE_FUNC */ 284, /* GL_COMPARE_REF_TO_TEXTURE */ - 2101, /* GL_TEXTURE_CUBE_MAP_SEAMLESS */ - 1422, /* GL_POINT_SPRITE */ + 2105, /* GL_TEXTURE_CUBE_MAP_SEAMLESS */ + 1425, /* GL_POINT_SPRITE */ 347, /* GL_COORD_REPLACE */ - 1427, /* GL_POINT_SPRITE_R_MODE_NV */ - 1570, /* GL_QUERY_COUNTER_BITS */ + 1430, /* GL_POINT_SPRITE_R_MODE_NV */ + 1573, /* GL_QUERY_COUNTER_BITS */ 376, /* GL_CURRENT_QUERY */ - 1574, /* GL_QUERY_RESULT */ - 1576, /* GL_QUERY_RESULT_AVAILABLE */ - 1176, /* GL_MAX_VERTEX_ATTRIBS */ - 2311, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED */ + 1577, /* GL_QUERY_RESULT */ + 1579, /* GL_QUERY_RESULT_AVAILABLE */ + 1177, /* GL_MAX_VERTEX_ATTRIBS */ + 2315, /* GL_VERTEX_ATTRIB_ARRAY_NORMALIZED */ 457, /* GL_DEPTH_STENCIL_TO_RGBA_NV */ 456, /* GL_DEPTH_STENCIL_TO_BGRA_NV */ - 1153, /* GL_MAX_TEXTURE_COORDS */ - 1155, /* GL_MAX_TEXTURE_IMAGE_UNITS */ - 1505, /* GL_PROGRAM_ERROR_STRING_ARB */ - 1507, /* GL_PROGRAM_FORMAT_ASCII_ARB */ - 1506, /* GL_PROGRAM_FORMAT_ARB */ - 2160, /* GL_TEXTURE_UNSIGNED_REMAP_MODE_NV */ + 1154, /* GL_MAX_TEXTURE_COORDS */ + 1156, /* GL_MAX_TEXTURE_IMAGE_UNITS */ + 1508, /* GL_PROGRAM_ERROR_STRING_ARB */ + 1510, /* GL_PROGRAM_FORMAT_ASCII_ARB */ + 1509, /* GL_PROGRAM_FORMAT_ARB */ + 2164, /* GL_TEXTURE_UNSIGNED_REMAP_MODE_NV */ 429, /* GL_DEPTH_BOUNDS_TEST_EXT */ 428, /* GL_DEPTH_BOUNDS_EXT */ 61, /* GL_ARRAY_BUFFER */ 560, /* GL_ELEMENT_ARRAY_BUFFER */ 62, /* GL_ARRAY_BUFFER_BINDING */ 561, /* GL_ELEMENT_ARRAY_BUFFER_BINDING */ - 2282, /* GL_VERTEX_ARRAY_BUFFER_BINDING */ - 1273, /* GL_NORMAL_ARRAY_BUFFER_BINDING */ + 2286, /* GL_VERTEX_ARRAY_BUFFER_BINDING */ + 1274, /* GL_NORMAL_ARRAY_BUFFER_BINDING */ 190, /* GL_COLOR_ARRAY_BUFFER_BINDING */ 776, /* GL_INDEX_ARRAY_BUFFER_BINDING */ - 2073, /* GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING */ + 2077, /* GL_TEXTURE_COORD_ARRAY_BUFFER_BINDING */ 556, /* GL_EDGE_FLAG_ARRAY_BUFFER_BINDING */ - 1790, /* GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING */ + 1793, /* GL_SECONDARY_COLOR_ARRAY_BUFFER_BINDING */ 615, /* GL_FOG_COORDINATE_ARRAY_BUFFER_BINDING */ - 2339, /* GL_WEIGHT_ARRAY_BUFFER_BINDING */ - 2304, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING */ - 1508, /* GL_PROGRAM_INSTRUCTIONS_ARB */ - 1120, /* GL_MAX_PROGRAM_INSTRUCTIONS_ARB */ - 1514, /* GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ - 1129, /* GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ - 1528, /* GL_PROGRAM_TEMPORARIES_ARB */ - 1135, /* GL_MAX_PROGRAM_TEMPORARIES_ARB */ - 1516, /* GL_PROGRAM_NATIVE_TEMPORARIES_ARB */ - 1131, /* GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB */ - 1520, /* GL_PROGRAM_PARAMETERS_ARB */ - 1134, /* GL_MAX_PROGRAM_PARAMETERS_ARB */ - 1515, /* GL_PROGRAM_NATIVE_PARAMETERS_ARB */ - 1130, /* GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB */ - 1496, /* GL_PROGRAM_ATTRIBS_ARB */ - 1115, /* GL_MAX_PROGRAM_ATTRIBS_ARB */ - 1513, /* GL_PROGRAM_NATIVE_ATTRIBS_ARB */ - 1128, /* GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB */ - 1494, /* GL_PROGRAM_ADDRESS_REGISTERS_ARB */ - 1113, /* GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB */ - 1511, /* GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ - 1126, /* GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ - 1121, /* GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB */ - 1117, /* GL_MAX_PROGRAM_ENV_PARAMETERS_ARB */ - 1531, /* GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB */ - 2193, /* GL_TRANSPOSE_CURRENT_MATRIX_ARB */ - 1593, /* GL_READ_ONLY */ - 2353, /* GL_WRITE_ONLY */ - 1595, /* GL_READ_WRITE */ + 2343, /* GL_WEIGHT_ARRAY_BUFFER_BINDING */ + 2308, /* GL_VERTEX_ATTRIB_ARRAY_BUFFER_BINDING */ + 1511, /* GL_PROGRAM_INSTRUCTIONS_ARB */ + 1121, /* GL_MAX_PROGRAM_INSTRUCTIONS_ARB */ + 1517, /* GL_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ + 1130, /* GL_MAX_PROGRAM_NATIVE_INSTRUCTIONS_ARB */ + 1531, /* GL_PROGRAM_TEMPORARIES_ARB */ + 1136, /* GL_MAX_PROGRAM_TEMPORARIES_ARB */ + 1519, /* GL_PROGRAM_NATIVE_TEMPORARIES_ARB */ + 1132, /* GL_MAX_PROGRAM_NATIVE_TEMPORARIES_ARB */ + 1523, /* GL_PROGRAM_PARAMETERS_ARB */ + 1135, /* GL_MAX_PROGRAM_PARAMETERS_ARB */ + 1518, /* GL_PROGRAM_NATIVE_PARAMETERS_ARB */ + 1131, /* GL_MAX_PROGRAM_NATIVE_PARAMETERS_ARB */ + 1499, /* GL_PROGRAM_ATTRIBS_ARB */ + 1116, /* GL_MAX_PROGRAM_ATTRIBS_ARB */ + 1516, /* GL_PROGRAM_NATIVE_ATTRIBS_ARB */ + 1129, /* GL_MAX_PROGRAM_NATIVE_ATTRIBS_ARB */ + 1497, /* GL_PROGRAM_ADDRESS_REGISTERS_ARB */ + 1114, /* GL_MAX_PROGRAM_ADDRESS_REGISTERS_ARB */ + 1514, /* GL_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ + 1127, /* GL_MAX_PROGRAM_NATIVE_ADDRESS_REGISTERS_ARB */ + 1122, /* GL_MAX_PROGRAM_LOCAL_PARAMETERS_ARB */ + 1118, /* GL_MAX_PROGRAM_ENV_PARAMETERS_ARB */ + 1534, /* GL_PROGRAM_UNDER_NATIVE_LIMITS_ARB */ + 2197, /* GL_TRANSPOSE_CURRENT_MATRIX_ARB */ + 1596, /* GL_READ_ONLY */ + 2357, /* GL_WRITE_ONLY */ + 1598, /* GL_READ_WRITE */ 124, /* GL_BUFFER_ACCESS */ 129, /* GL_BUFFER_MAPPED */ 134, /* GL_BUFFER_MAP_POINTER */ - 2167, /* GL_TIME_ELAPSED_EXT */ + 2171, /* GL_TIME_ELAPSED_EXT */ 1002, /* GL_MATRIX0_ARB */ 1014, /* GL_MATRIX1_ARB */ 1026, /* GL_MATRIX2_ARB */ @@ -5963,67 +5971,71 @@ static const unsigned reduced_enums[1594] = 1025, /* GL_MATRIX29_ARB */ 1028, /* GL_MATRIX30_ARB */ 1029, /* GL_MATRIX31_ARB */ - 1923, /* GL_STREAM_DRAW */ - 1925, /* GL_STREAM_READ */ - 1921, /* GL_STREAM_COPY */ - 1872, /* GL_STATIC_DRAW */ - 1874, /* GL_STATIC_READ */ - 1870, /* GL_STATIC_COPY */ + 1927, /* GL_STREAM_DRAW */ + 1929, /* GL_STREAM_READ */ + 1925, /* GL_STREAM_COPY */ + 1876, /* GL_STATIC_DRAW */ + 1878, /* GL_STATIC_READ */ + 1874, /* GL_STATIC_COPY */ 550, /* GL_DYNAMIC_DRAW */ 552, /* GL_DYNAMIC_READ */ 548, /* GL_DYNAMIC_COPY */ - 1385, /* GL_PIXEL_PACK_BUFFER */ - 1389, /* GL_PIXEL_UNPACK_BUFFER */ - 1386, /* GL_PIXEL_PACK_BUFFER_BINDING */ - 1390, /* GL_PIXEL_UNPACK_BUFFER_BINDING */ + 1388, /* GL_PIXEL_PACK_BUFFER */ + 1392, /* GL_PIXEL_UNPACK_BUFFER */ + 1389, /* GL_PIXEL_PACK_BUFFER_BINDING */ + 1393, /* GL_PIXEL_UNPACK_BUFFER_BINDING */ 420, /* GL_DEPTH24_STENCIL8 */ - 2156, /* GL_TEXTURE_STENCIL_SIZE */ - 1118, /* GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV */ - 1116, /* GL_MAX_PROGRAM_CALL_DEPTH_NV */ - 1119, /* GL_MAX_PROGRAM_IF_DEPTH_NV */ - 1123, /* GL_MAX_PROGRAM_LOOP_DEPTH_NV */ - 1122, /* GL_MAX_PROGRAM_LOOP_COUNT_NV */ - 2309, /* GL_VERTEX_ATTRIB_ARRAY_INTEGER */ - 2306, /* GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB */ + 2160, /* GL_TEXTURE_STENCIL_SIZE */ + 1119, /* GL_MAX_PROGRAM_EXEC_INSTRUCTIONS_NV */ + 1117, /* GL_MAX_PROGRAM_CALL_DEPTH_NV */ + 1120, /* GL_MAX_PROGRAM_IF_DEPTH_NV */ + 1124, /* GL_MAX_PROGRAM_LOOP_DEPTH_NV */ + 1123, /* GL_MAX_PROGRAM_LOOP_COUNT_NV */ + 1861, /* GL_SRC1_COLOR */ + 1318, /* GL_ONE_MINUS_SRC1_COLOR */ + 1317, /* GL_ONE_MINUS_SRC1_ALPHA */ + 1086, /* GL_MAX_DUAL_SOURCE_DRAW_BUFFERS */ + 2313, /* GL_VERTEX_ATTRIB_ARRAY_INTEGER */ + 2310, /* GL_VERTEX_ATTRIB_ARRAY_DIVISOR_ARB */ 1059, /* GL_MAX_ARRAY_TEXTURE_LAYERS */ - 1199, /* GL_MIN_PROGRAM_TEXEL_OFFSET */ - 1136, /* GL_MAX_PROGRAM_TEXEL_OFFSET */ - 1914, /* GL_STENCIL_TEST_TWO_SIDE_EXT */ + 1200, /* GL_MIN_PROGRAM_TEXEL_OFFSET */ + 1137, /* GL_MAX_PROGRAM_TEXEL_OFFSET */ + 1918, /* GL_STENCIL_TEST_TWO_SIDE_EXT */ 18, /* GL_ACTIVE_STENCIL_FACE_EXT */ - 1205, /* GL_MIRROR_CLAMP_TO_BORDER_EXT */ - 1771, /* GL_SAMPLES_PASSED */ + 1206, /* GL_MIRROR_CLAMP_TO_BORDER_EXT */ + 1774, /* GL_SAMPLES_PASSED */ 730, /* GL_GEOMETRY_VERTICES_OUT */ 724, /* GL_GEOMETRY_INPUT_TYPE */ 726, /* GL_GEOMETRY_OUTPUT_TYPE */ - 1761, /* GL_SAMPLER_BINDING */ + 1764, /* GL_SAMPLER_BINDING */ 164, /* GL_CLAMP_VERTEX_COLOR_ARB */ 156, /* GL_CLAMP_FRAGMENT_COLOR_ARB */ 157, /* GL_CLAMP_READ_COLOR */ 587, /* GL_FIXED_ONLY */ - 1409, /* GL_POINT_SIZE_ARRAY_TYPE_OES */ - 1408, /* GL_POINT_SIZE_ARRAY_STRIDE_OES */ - 1407, /* GL_POINT_SIZE_ARRAY_POINTER_OES */ - 1242, /* GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES */ - 1534, /* GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES */ - 2136, /* GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES */ + 1412, /* GL_POINT_SIZE_ARRAY_TYPE_OES */ + 1411, /* GL_POINT_SIZE_ARRAY_STRIDE_OES */ + 1410, /* GL_POINT_SIZE_ARRAY_POINTER_OES */ + 1243, /* GL_MODELVIEW_MATRIX_FLOAT_AS_INT_BITS_OES */ + 1537, /* GL_PROJECTION_MATRIX_FLOAT_AS_INT_BITS_OES */ + 2140, /* GL_TEXTURE_MATRIX_FLOAT_AS_INT_BITS_OES */ 138, /* GL_BUFFER_SERIALIZED_MODIFY_APPLE */ 128, /* GL_BUFFER_FLUSHING_UNMAP_APPLE */ - 1610, /* GL_RELEASED_APPLE */ - 2336, /* GL_VOLATILE_APPLE */ - 1651, /* GL_RETAINED_APPLE */ - 2210, /* GL_UNDEFINED_APPLE */ - 1558, /* GL_PURGEABLE_APPLE */ + 1613, /* GL_RELEASED_APPLE */ + 2340, /* GL_VOLATILE_APPLE */ + 1654, /* GL_RETAINED_APPLE */ + 2214, /* GL_UNDEFINED_APPLE */ + 1561, /* GL_PURGEABLE_APPLE */ 638, /* GL_FRAGMENT_SHADER */ - 2331, /* GL_VERTEX_SHADER */ - 1519, /* GL_PROGRAM_OBJECT_ARB */ - 1807, /* GL_SHADER_OBJECT_ARB */ - 1091, /* GL_MAX_FRAGMENT_UNIFORM_COMPONENTS */ - 1181, /* GL_MAX_VERTEX_UNIFORM_COMPONENTS */ - 1172, /* GL_MAX_VARYING_COMPONENTS */ - 1179, /* GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS */ + 2335, /* GL_VERTEX_SHADER */ + 1522, /* GL_PROGRAM_OBJECT_ARB */ + 1810, /* GL_SHADER_OBJECT_ARB */ + 1092, /* GL_MAX_FRAGMENT_UNIFORM_COMPONENTS */ + 1182, /* GL_MAX_VERTEX_UNIFORM_COMPONENTS */ + 1173, /* GL_MAX_VARYING_COMPONENTS */ + 1180, /* GL_MAX_VERTEX_TEXTURE_IMAGE_UNITS */ 1071, /* GL_MAX_COMBINED_TEXTURE_IMAGE_UNITS */ - 1305, /* GL_OBJECT_TYPE_ARB */ - 1809, /* GL_SHADER_TYPE */ + 1306, /* GL_OBJECT_TYPE_ARB */ + 1812, /* GL_SHADER_TYPE */ 603, /* GL_FLOAT_VEC2 */ 605, /* GL_FLOAT_VEC3 */ 607, /* GL_FLOAT_VEC4 */ @@ -6037,14 +6049,14 @@ static const unsigned reduced_enums[1594] = 591, /* GL_FLOAT_MAT2 */ 595, /* GL_FLOAT_MAT3 */ 599, /* GL_FLOAT_MAT4 */ - 1745, /* GL_SAMPLER_1D */ - 1751, /* GL_SAMPLER_2D */ - 1759, /* GL_SAMPLER_3D */ - 1764, /* GL_SAMPLER_CUBE */ - 1750, /* GL_SAMPLER_1D_SHADOW */ - 1758, /* GL_SAMPLER_2D_SHADOW */ - 1756, /* GL_SAMPLER_2D_RECT */ - 1757, /* GL_SAMPLER_2D_RECT_SHADOW */ + 1748, /* GL_SAMPLER_1D */ + 1754, /* GL_SAMPLER_2D */ + 1762, /* GL_SAMPLER_3D */ + 1767, /* GL_SAMPLER_CUBE */ + 1753, /* GL_SAMPLER_1D_SHADOW */ + 1761, /* GL_SAMPLER_2D_SHADOW */ + 1759, /* GL_SAMPLER_2D_RECT */ + 1760, /* GL_SAMPLER_2D_RECT_SHADOW */ 593, /* GL_FLOAT_MAT2x3 */ 594, /* GL_FLOAT_MAT2x4 */ 597, /* GL_FLOAT_MAT3x2 */ @@ -6054,90 +6066,90 @@ static const unsigned reduced_enums[1594] = 418, /* GL_DELETE_STATUS */ 289, /* GL_COMPILE_STATUS */ 891, /* GL_LINK_STATUS */ - 2276, /* GL_VALIDATE_STATUS */ + 2280, /* GL_VALIDATE_STATUS */ 788, /* GL_INFO_LOG_LENGTH */ 64, /* GL_ATTACHED_SHADERS */ 21, /* GL_ACTIVE_UNIFORMS */ 22, /* GL_ACTIVE_UNIFORM_MAX_LENGTH */ - 1808, /* GL_SHADER_SOURCE_LENGTH */ + 1811, /* GL_SHADER_SOURCE_LENGTH */ 15, /* GL_ACTIVE_ATTRIBUTES */ 16, /* GL_ACTIVE_ATTRIBUTE_MAX_LENGTH */ 640, /* GL_FRAGMENT_SHADER_DERIVATIVE_HINT */ - 1811, /* GL_SHADING_LANGUAGE_VERSION */ + 1814, /* GL_SHADING_LANGUAGE_VERSION */ 375, /* GL_CURRENT_PROGRAM */ - 1354, /* GL_PALETTE4_RGB8_OES */ - 1356, /* GL_PALETTE4_RGBA8_OES */ - 1352, /* GL_PALETTE4_R5_G6_B5_OES */ - 1355, /* GL_PALETTE4_RGBA4_OES */ - 1353, /* GL_PALETTE4_RGB5_A1_OES */ - 1359, /* GL_PALETTE8_RGB8_OES */ - 1361, /* GL_PALETTE8_RGBA8_OES */ - 1357, /* GL_PALETTE8_R5_G6_B5_OES */ - 1360, /* GL_PALETTE8_RGBA4_OES */ - 1358, /* GL_PALETTE8_RGB5_A1_OES */ + 1357, /* GL_PALETTE4_RGB8_OES */ + 1359, /* GL_PALETTE4_RGBA8_OES */ + 1355, /* GL_PALETTE4_R5_G6_B5_OES */ + 1358, /* GL_PALETTE4_RGBA4_OES */ + 1356, /* GL_PALETTE4_RGB5_A1_OES */ + 1362, /* GL_PALETTE8_RGB8_OES */ + 1364, /* GL_PALETTE8_RGBA8_OES */ + 1360, /* GL_PALETTE8_R5_G6_B5_OES */ + 1363, /* GL_PALETTE8_RGBA4_OES */ + 1361, /* GL_PALETTE8_RGB5_A1_OES */ 769, /* GL_IMPLEMENTATION_COLOR_READ_TYPE */ 767, /* GL_IMPLEMENTATION_COLOR_READ_FORMAT */ - 1406, /* GL_POINT_SIZE_ARRAY_OES */ - 2079, /* GL_TEXTURE_CROP_RECT_OES */ + 1409, /* GL_POINT_SIZE_ARRAY_OES */ + 2083, /* GL_TEXTURE_CROP_RECT_OES */ 1043, /* GL_MATRIX_INDEX_ARRAY_BUFFER_BINDING_OES */ - 1405, /* GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES */ - 2259, /* GL_UNSIGNED_NORMALIZED */ - 2011, /* GL_TEXTURE_1D_ARRAY */ - 1544, /* GL_PROXY_TEXTURE_1D_ARRAY */ - 2014, /* GL_TEXTURE_2D_ARRAY */ - 1548, /* GL_PROXY_TEXTURE_2D_ARRAY */ - 2022, /* GL_TEXTURE_BINDING_1D_ARRAY */ - 2025, /* GL_TEXTURE_BINDING_2D_ARRAY */ - 1098, /* GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS */ - 2043, /* GL_TEXTURE_BUFFER */ - 1151, /* GL_MAX_TEXTURE_BUFFER_SIZE */ - 2029, /* GL_TEXTURE_BINDING_BUFFER */ - 2045, /* GL_TEXTURE_BUFFER_DATA_STORE_BINDING */ - 2047, /* GL_TEXTURE_BUFFER_FORMAT */ - 1581, /* GL_R11F_G11F_B10F */ - 2225, /* GL_UNSIGNED_INT_10F_11F_11F_REV */ - 1695, /* GL_RGB9_E5 */ - 2234, /* GL_UNSIGNED_INT_5_9_9_9_REV */ - 2154, /* GL_TEXTURE_SHARED_SIZE */ - 1864, /* GL_SRGB */ - 1865, /* GL_SRGB8 */ - 1867, /* GL_SRGB_ALPHA */ - 1866, /* GL_SRGB8_ALPHA8 */ - 1824, /* GL_SLUMINANCE_ALPHA */ - 1823, /* GL_SLUMINANCE8_ALPHA8 */ - 1821, /* GL_SLUMINANCE */ - 1822, /* GL_SLUMINANCE8 */ + 1408, /* GL_POINT_SIZE_ARRAY_BUFFER_BINDING_OES */ + 2263, /* GL_UNSIGNED_NORMALIZED */ + 2015, /* GL_TEXTURE_1D_ARRAY */ + 1547, /* GL_PROXY_TEXTURE_1D_ARRAY */ + 2018, /* GL_TEXTURE_2D_ARRAY */ + 1551, /* GL_PROXY_TEXTURE_2D_ARRAY */ + 2026, /* GL_TEXTURE_BINDING_1D_ARRAY */ + 2029, /* GL_TEXTURE_BINDING_2D_ARRAY */ + 1099, /* GL_MAX_GEOMETRY_TEXTURE_IMAGE_UNITS */ + 2047, /* GL_TEXTURE_BUFFER */ + 1152, /* GL_MAX_TEXTURE_BUFFER_SIZE */ + 2033, /* GL_TEXTURE_BINDING_BUFFER */ + 2049, /* GL_TEXTURE_BUFFER_DATA_STORE_BINDING */ + 2051, /* GL_TEXTURE_BUFFER_FORMAT */ + 1584, /* GL_R11F_G11F_B10F */ + 2229, /* GL_UNSIGNED_INT_10F_11F_11F_REV */ + 1698, /* GL_RGB9_E5 */ + 2238, /* GL_UNSIGNED_INT_5_9_9_9_REV */ + 2158, /* GL_TEXTURE_SHARED_SIZE */ + 1868, /* GL_SRGB */ + 1869, /* GL_SRGB8 */ + 1871, /* GL_SRGB_ALPHA */ + 1870, /* GL_SRGB8_ALPHA8 */ + 1827, /* GL_SLUMINANCE_ALPHA */ + 1826, /* GL_SLUMINANCE8_ALPHA8 */ + 1824, /* GL_SLUMINANCE */ + 1825, /* GL_SLUMINANCE8 */ 312, /* GL_COMPRESSED_SRGB */ 313, /* GL_COMPRESSED_SRGB_ALPHA */ 310, /* GL_COMPRESSED_SLUMINANCE */ 311, /* GL_COMPRESSED_SLUMINANCE_ALPHA */ - 2189, /* GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH */ - 2178, /* GL_TRANSFORM_FEEDBACK_BUFFER_MODE */ - 1170, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS */ - 2187, /* GL_TRANSFORM_FEEDBACK_VARYINGS */ - 2183, /* GL_TRANSFORM_FEEDBACK_BUFFER_START */ - 2181, /* GL_TRANSFORM_FEEDBACK_BUFFER_SIZE */ - 1488, /* GL_PRIMITIVES_GENERATED */ - 2185, /* GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN */ - 1585, /* GL_RASTERIZER_DISCARD */ - 1166, /* GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS */ - 1168, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS */ + 2193, /* GL_TRANSFORM_FEEDBACK_VARYING_MAX_LENGTH */ + 2182, /* GL_TRANSFORM_FEEDBACK_BUFFER_MODE */ + 1171, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_COMPONENTS */ + 2191, /* GL_TRANSFORM_FEEDBACK_VARYINGS */ + 2187, /* GL_TRANSFORM_FEEDBACK_BUFFER_START */ + 2185, /* GL_TRANSFORM_FEEDBACK_BUFFER_SIZE */ + 1491, /* GL_PRIMITIVES_GENERATED */ + 2189, /* GL_TRANSFORM_FEEDBACK_PRIMITIVES_WRITTEN */ + 1588, /* GL_RASTERIZER_DISCARD */ + 1167, /* GL_MAX_TRANSFORM_FEEDBACK_INTERLEAVED_COMPONENTS */ + 1169, /* GL_MAX_TRANSFORM_FEEDBACK_SEPARATE_ATTRIBS */ 807, /* GL_INTERLEAVED_ATTRIBS */ - 1800, /* GL_SEPARATE_ATTRIBS */ - 2173, /* GL_TRANSFORM_FEEDBACK_BUFFER */ - 2175, /* GL_TRANSFORM_FEEDBACK_BUFFER_BINDING */ - 1424, /* GL_POINT_SPRITE_COORD_ORIGIN */ + 1803, /* GL_SEPARATE_ATTRIBS */ + 2177, /* GL_TRANSFORM_FEEDBACK_BUFFER */ + 2179, /* GL_TRANSFORM_FEEDBACK_BUFFER_BINDING */ + 1427, /* GL_POINT_SPRITE_COORD_ORIGIN */ 900, /* GL_LOWER_LEFT */ - 2273, /* GL_UPPER_LEFT */ - 1888, /* GL_STENCIL_BACK_REF */ - 1889, /* GL_STENCIL_BACK_VALUE_MASK */ - 1890, /* GL_STENCIL_BACK_WRITEMASK */ + 2277, /* GL_UPPER_LEFT */ + 1892, /* GL_STENCIL_BACK_REF */ + 1893, /* GL_STENCIL_BACK_VALUE_MASK */ + 1894, /* GL_STENCIL_BACK_WRITEMASK */ 540, /* GL_DRAW_FRAMEBUFFER_BINDING */ - 1615, /* GL_RENDERBUFFER_BINDING */ - 1589, /* GL_READ_FRAMEBUFFER */ + 1618, /* GL_RENDERBUFFER_BINDING */ + 1592, /* GL_READ_FRAMEBUFFER */ 539, /* GL_DRAW_FRAMEBUFFER */ - 1590, /* GL_READ_FRAMEBUFFER_BINDING */ - 1634, /* GL_RENDERBUFFER_SAMPLES */ + 1593, /* GL_READ_FRAMEBUFFER_BINDING */ + 1637, /* GL_RENDERBUFFER_SAMPLES */ 654, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_TYPE */ 651, /* GL_FRAMEBUFFER_ATTACHMENT_OBJECT_NAME */ 666, /* GL_FRAMEBUFFER_ATTACHMENT_TEXTURE_LEVEL */ @@ -6171,93 +6183,93 @@ static const unsigned reduced_enums[1594] = 208, /* GL_COLOR_ATTACHMENT14 */ 210, /* GL_COLOR_ATTACHMENT15 */ 423, /* GL_DEPTH_ATTACHMENT */ - 1877, /* GL_STENCIL_ATTACHMENT */ + 1881, /* GL_STENCIL_ATTACHMENT */ 642, /* GL_FRAMEBUFFER */ - 1612, /* GL_RENDERBUFFER */ - 1638, /* GL_RENDERBUFFER_WIDTH */ - 1625, /* GL_RENDERBUFFER_HEIGHT */ - 1628, /* GL_RENDERBUFFER_INTERNAL_FORMAT */ - 1909, /* GL_STENCIL_INDEX_EXT */ - 1898, /* GL_STENCIL_INDEX1 */ - 1903, /* GL_STENCIL_INDEX4 */ - 1906, /* GL_STENCIL_INDEX8 */ - 1899, /* GL_STENCIL_INDEX16 */ - 1632, /* GL_RENDERBUFFER_RED_SIZE */ - 1623, /* GL_RENDERBUFFER_GREEN_SIZE */ - 1618, /* GL_RENDERBUFFER_BLUE_SIZE */ - 1613, /* GL_RENDERBUFFER_ALPHA_SIZE */ - 1620, /* GL_RENDERBUFFER_DEPTH_SIZE */ - 1636, /* GL_RENDERBUFFER_STENCIL_SIZE */ + 1615, /* GL_RENDERBUFFER */ + 1641, /* GL_RENDERBUFFER_WIDTH */ + 1628, /* GL_RENDERBUFFER_HEIGHT */ + 1631, /* GL_RENDERBUFFER_INTERNAL_FORMAT */ + 1913, /* GL_STENCIL_INDEX_EXT */ + 1902, /* GL_STENCIL_INDEX1 */ + 1907, /* GL_STENCIL_INDEX4 */ + 1910, /* GL_STENCIL_INDEX8 */ + 1903, /* GL_STENCIL_INDEX16 */ + 1635, /* GL_RENDERBUFFER_RED_SIZE */ + 1626, /* GL_RENDERBUFFER_GREEN_SIZE */ + 1621, /* GL_RENDERBUFFER_BLUE_SIZE */ + 1616, /* GL_RENDERBUFFER_ALPHA_SIZE */ + 1623, /* GL_RENDERBUFFER_DEPTH_SIZE */ + 1639, /* GL_RENDERBUFFER_STENCIL_SIZE */ 695, /* GL_FRAMEBUFFER_INCOMPLETE_MULTISAMPLE */ - 1146, /* GL_MAX_SAMPLES */ - 2116, /* GL_TEXTURE_GEN_STR_OES */ + 1147, /* GL_MAX_SAMPLES */ + 2120, /* GL_TEXTURE_GEN_STR_OES */ 743, /* GL_HALF_FLOAT_OES */ - 1681, /* GL_RGB565 */ + 1684, /* GL_RGB565 */ 567, /* GL_ETC1_RGB8_OES */ - 2108, /* GL_TEXTURE_EXTERNAL_OES */ - 1767, /* GL_SAMPLER_EXTERNAL_OES */ - 2034, /* GL_TEXTURE_BINDING_EXTERNAL_OES */ - 1647, /* GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES */ - 1712, /* GL_RGBA32UI */ - 1675, /* GL_RGB32UI */ + 2112, /* GL_TEXTURE_EXTERNAL_OES */ + 1770, /* GL_SAMPLER_EXTERNAL_OES */ + 2038, /* GL_TEXTURE_BINDING_EXTERNAL_OES */ + 1650, /* GL_REQUIRED_TEXTURE_IMAGE_UNITS_OES */ + 1715, /* GL_RGBA32UI */ + 1678, /* GL_RGB32UI */ 40, /* GL_ALPHA32UI_EXT */ 799, /* GL_INTENSITY32UI_EXT */ 917, /* GL_LUMINANCE32UI_EXT */ 934, /* GL_LUMINANCE_ALPHA32UI_EXT */ - 1703, /* GL_RGBA16UI */ - 1667, /* GL_RGB16UI */ + 1706, /* GL_RGBA16UI */ + 1670, /* GL_RGB16UI */ 37, /* GL_ALPHA16UI_EXT */ 796, /* GL_INTENSITY16UI_EXT */ 912, /* GL_LUMINANCE16UI_EXT */ 932, /* GL_LUMINANCE_ALPHA16UI_EXT */ - 1722, /* GL_RGBA8UI */ - 1690, /* GL_RGB8UI */ + 1725, /* GL_RGBA8UI */ + 1693, /* GL_RGB8UI */ 45, /* GL_ALPHA8UI_EXT */ 804, /* GL_INTENSITY8UI_EXT */ 926, /* GL_LUMINANCE8UI_EXT */ 936, /* GL_LUMINANCE_ALPHA8UI_EXT */ - 1710, /* GL_RGBA32I */ - 1673, /* GL_RGB32I */ + 1713, /* GL_RGBA32I */ + 1676, /* GL_RGB32I */ 39, /* GL_ALPHA32I_EXT */ 798, /* GL_INTENSITY32I_EXT */ 916, /* GL_LUMINANCE32I_EXT */ 933, /* GL_LUMINANCE_ALPHA32I_EXT */ - 1701, /* GL_RGBA16I */ - 1665, /* GL_RGB16I */ + 1704, /* GL_RGBA16I */ + 1668, /* GL_RGB16I */ 36, /* GL_ALPHA16I_EXT */ 795, /* GL_INTENSITY16I_EXT */ 911, /* GL_LUMINANCE16I_EXT */ 931, /* GL_LUMINANCE_ALPHA16I_EXT */ - 1720, /* GL_RGBA8I */ - 1688, /* GL_RGB8I */ + 1723, /* GL_RGBA8I */ + 1691, /* GL_RGB8I */ 44, /* GL_ALPHA8I_EXT */ 803, /* GL_INTENSITY8I_EXT */ 925, /* GL_LUMINANCE8I_EXT */ 935, /* GL_LUMINANCE_ALPHA8I_EXT */ - 1602, /* GL_RED_INTEGER */ + 1605, /* GL_RED_INTEGER */ 738, /* GL_GREEN_INTEGER */ 113, /* GL_BLUE_INTEGER */ 49, /* GL_ALPHA_INTEGER_EXT */ - 1735, /* GL_RGB_INTEGER */ - 1729, /* GL_RGBA_INTEGER */ + 1738, /* GL_RGB_INTEGER */ + 1732, /* GL_RGBA_INTEGER */ 84, /* GL_BGR_INTEGER */ 82, /* GL_BGRA_INTEGER */ 938, /* GL_LUMINANCE_INTEGER_EXT */ 937, /* GL_LUMINANCE_ALPHA_INTEGER_EXT */ - 1731, /* GL_RGBA_INTEGER_MODE_EXT */ + 1734, /* GL_RGBA_INTEGER_MODE_EXT */ 813, /* GL_INT_2_10_10_10_REV */ 649, /* GL_FRAMEBUFFER_ATTACHMENT_LAYERED */ 690, /* GL_FRAMEBUFFER_INCOMPLETE_LAYER_TARGETS */ 689, /* GL_FRAMEBUFFER_INCOMPLETE_LAYER_COUNT_ARB */ - 1746, /* GL_SAMPLER_1D_ARRAY */ - 1752, /* GL_SAMPLER_2D_ARRAY */ - 1762, /* GL_SAMPLER_BUFFER */ - 1748, /* GL_SAMPLER_1D_ARRAY_SHADOW */ - 1754, /* GL_SAMPLER_2D_ARRAY_SHADOW */ - 1765, /* GL_SAMPLER_CUBE_SHADOW */ - 2253, /* GL_UNSIGNED_INT_VEC2 */ - 2255, /* GL_UNSIGNED_INT_VEC3 */ - 2257, /* GL_UNSIGNED_INT_VEC4 */ + 1749, /* GL_SAMPLER_1D_ARRAY */ + 1755, /* GL_SAMPLER_2D_ARRAY */ + 1765, /* GL_SAMPLER_BUFFER */ + 1751, /* GL_SAMPLER_1D_ARRAY_SHADOW */ + 1757, /* GL_SAMPLER_2D_ARRAY_SHADOW */ + 1768, /* GL_SAMPLER_CUBE_SHADOW */ + 2257, /* GL_UNSIGNED_INT_VEC2 */ + 2259, /* GL_UNSIGNED_INT_VEC3 */ + 2261, /* GL_UNSIGNED_INT_VEC4 */ 814, /* GL_INT_SAMPLER_1D */ 818, /* GL_INT_SAMPLER_2D */ 824, /* GL_INT_SAMPLER_3D */ @@ -6266,87 +6278,87 @@ static const unsigned reduced_enums[1594] = 815, /* GL_INT_SAMPLER_1D_ARRAY */ 819, /* GL_INT_SAMPLER_2D_ARRAY */ 826, /* GL_INT_SAMPLER_BUFFER */ - 2237, /* GL_UNSIGNED_INT_SAMPLER_1D */ - 2241, /* GL_UNSIGNED_INT_SAMPLER_2D */ - 2247, /* GL_UNSIGNED_INT_SAMPLER_3D */ - 2251, /* GL_UNSIGNED_INT_SAMPLER_CUBE */ - 2245, /* GL_UNSIGNED_INT_SAMPLER_2D_RECT */ - 2238, /* GL_UNSIGNED_INT_SAMPLER_1D_ARRAY */ - 2242, /* GL_UNSIGNED_INT_SAMPLER_2D_ARRAY */ - 2249, /* GL_UNSIGNED_INT_SAMPLER_BUFFER */ + 2241, /* GL_UNSIGNED_INT_SAMPLER_1D */ + 2245, /* GL_UNSIGNED_INT_SAMPLER_2D */ + 2251, /* GL_UNSIGNED_INT_SAMPLER_3D */ + 2255, /* GL_UNSIGNED_INT_SAMPLER_CUBE */ + 2249, /* GL_UNSIGNED_INT_SAMPLER_2D_RECT */ + 2242, /* GL_UNSIGNED_INT_SAMPLER_1D_ARRAY */ + 2246, /* GL_UNSIGNED_INT_SAMPLER_2D_ARRAY */ + 2253, /* GL_UNSIGNED_INT_SAMPLER_BUFFER */ 728, /* GL_GEOMETRY_SHADER */ 731, /* GL_GEOMETRY_VERTICES_OUT_ARB */ 725, /* GL_GEOMETRY_INPUT_TYPE_ARB */ 727, /* GL_GEOMETRY_OUTPUT_TYPE_ARB */ - 1104, /* GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB */ - 1186, /* GL_MAX_VERTEX_VARYING_COMPONENTS_ARB */ - 1102, /* GL_MAX_GEOMETRY_UNIFORM_COMPONENTS */ - 1096, /* GL_MAX_GEOMETRY_OUTPUT_VERTICES */ - 1100, /* GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS */ + 1105, /* GL_MAX_GEOMETRY_VARYING_COMPONENTS_ARB */ + 1187, /* GL_MAX_VERTEX_VARYING_COMPONENTS_ARB */ + 1103, /* GL_MAX_GEOMETRY_UNIFORM_COMPONENTS */ + 1097, /* GL_MAX_GEOMETRY_OUTPUT_VERTICES */ + 1101, /* GL_MAX_GEOMETRY_TOTAL_OUTPUT_COMPONENTS */ 901, /* GL_LOW_FLOAT */ - 1188, /* GL_MEDIUM_FLOAT */ + 1189, /* GL_MEDIUM_FLOAT */ 744, /* GL_HIGH_FLOAT */ 902, /* GL_LOW_INT */ - 1189, /* GL_MEDIUM_INT */ + 1190, /* GL_MEDIUM_INT */ 745, /* GL_HIGH_INT */ - 2227, /* GL_UNSIGNED_INT_10_10_10_2_OES */ + 2231, /* GL_UNSIGNED_INT_10_10_10_2_OES */ 812, /* GL_INT_10_10_10_2_OES */ - 1805, /* GL_SHADER_BINARY_FORMATS */ - 1290, /* GL_NUM_SHADER_BINARY_FORMATS */ - 1806, /* GL_SHADER_COMPILER */ - 1183, /* GL_MAX_VERTEX_UNIFORM_VECTORS */ - 1175, /* GL_MAX_VARYING_VECTORS */ - 1093, /* GL_MAX_FRAGMENT_UNIFORM_VECTORS */ - 1578, /* GL_QUERY_WAIT */ - 1572, /* GL_QUERY_NO_WAIT */ - 1568, /* GL_QUERY_BY_REGION_WAIT */ - 1566, /* GL_QUERY_BY_REGION_NO_WAIT */ - 2171, /* GL_TRANSFORM_FEEDBACK */ - 2180, /* GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED */ - 2174, /* GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE */ - 2172, /* GL_TRANSFORM_FEEDBACK_BINDING */ - 1562, /* GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION */ + 1808, /* GL_SHADER_BINARY_FORMATS */ + 1291, /* GL_NUM_SHADER_BINARY_FORMATS */ + 1809, /* GL_SHADER_COMPILER */ + 1184, /* GL_MAX_VERTEX_UNIFORM_VECTORS */ + 1176, /* GL_MAX_VARYING_VECTORS */ + 1094, /* GL_MAX_FRAGMENT_UNIFORM_VECTORS */ + 1581, /* GL_QUERY_WAIT */ + 1575, /* GL_QUERY_NO_WAIT */ + 1571, /* GL_QUERY_BY_REGION_WAIT */ + 1569, /* GL_QUERY_BY_REGION_NO_WAIT */ + 2175, /* GL_TRANSFORM_FEEDBACK */ + 2184, /* GL_TRANSFORM_FEEDBACK_BUFFER_PAUSED */ + 2178, /* GL_TRANSFORM_FEEDBACK_BUFFER_ACTIVE */ + 2176, /* GL_TRANSFORM_FEEDBACK_BINDING */ + 1565, /* GL_QUADS_FOLLOW_PROVOKING_VERTEX_CONVENTION */ 583, /* GL_FIRST_VERTEX_CONVENTION */ 846, /* GL_LAST_VERTEX_CONVENTION */ - 1536, /* GL_PROVOKING_VERTEX */ + 1539, /* GL_PROVOKING_VERTEX */ 354, /* GL_COPY_READ_BUFFER */ 355, /* GL_COPY_WRITE_BUFFER */ - 1605, /* GL_RED_SNORM */ - 1742, /* GL_RG_SNORM */ - 1741, /* GL_RGB_SNORM */ - 1734, /* GL_RGBA_SNORM */ - 1584, /* GL_R8_SNORM */ - 1654, /* GL_RG8_SNORM */ - 1694, /* GL_RGB8_SNORM */ - 1726, /* GL_RGBA8_SNORM */ - 1582, /* GL_R16_SNORM */ - 1653, /* GL_RG16_SNORM */ - 1670, /* GL_RGB16_SNORM */ - 1706, /* GL_RGBA16_SNORM */ - 1817, /* GL_SIGNED_NORMALIZED */ - 1490, /* GL_PRIMITIVE_RESTART */ - 1491, /* GL_PRIMITIVE_RESTART_INDEX */ - 1658, /* GL_RGB10_A2UI */ - 1148, /* GL_MAX_SERVER_WAIT_TIMEOUT */ - 1304, /* GL_OBJECT_TYPE */ - 1930, /* GL_SYNC_CONDITION */ - 1935, /* GL_SYNC_STATUS */ - 1932, /* GL_SYNC_FLAGS */ - 1931, /* GL_SYNC_FENCE */ - 1934, /* GL_SYNC_GPU_COMMANDS_COMPLETE */ - 2220, /* GL_UNSIGNALED */ - 1816, /* GL_SIGNALED */ + 1608, /* GL_RED_SNORM */ + 1745, /* GL_RG_SNORM */ + 1744, /* GL_RGB_SNORM */ + 1737, /* GL_RGBA_SNORM */ + 1587, /* GL_R8_SNORM */ + 1657, /* GL_RG8_SNORM */ + 1697, /* GL_RGB8_SNORM */ + 1729, /* GL_RGBA8_SNORM */ + 1585, /* GL_R16_SNORM */ + 1656, /* GL_RG16_SNORM */ + 1673, /* GL_RGB16_SNORM */ + 1709, /* GL_RGBA16_SNORM */ + 1820, /* GL_SIGNED_NORMALIZED */ + 1493, /* GL_PRIMITIVE_RESTART */ + 1494, /* GL_PRIMITIVE_RESTART_INDEX */ + 1661, /* GL_RGB10_A2UI */ + 1149, /* GL_MAX_SERVER_WAIT_TIMEOUT */ + 1305, /* GL_OBJECT_TYPE */ + 1934, /* GL_SYNC_CONDITION */ + 1939, /* GL_SYNC_STATUS */ + 1936, /* GL_SYNC_FLAGS */ + 1935, /* GL_SYNC_FENCE */ + 1938, /* GL_SYNC_GPU_COMMANDS_COMPLETE */ + 2224, /* GL_UNSIGNALED */ + 1819, /* GL_SIGNALED */ 54, /* GL_ALREADY_SIGNALED */ - 2166, /* GL_TIMEOUT_EXPIRED */ + 2170, /* GL_TIMEOUT_EXPIRED */ 315, /* GL_CONDITION_SATISFIED */ - 2337, /* GL_WAIT_FAILED */ + 2341, /* GL_WAIT_FAILED */ 126, /* GL_BUFFER_ACCESS_FLAGS */ 132, /* GL_BUFFER_MAP_LENGTH */ 133, /* GL_BUFFER_MAP_OFFSET */ - 1178, /* GL_MAX_VERTEX_OUTPUT_COMPONENTS */ - 1094, /* GL_MAX_GEOMETRY_INPUT_COMPONENTS */ - 1095, /* GL_MAX_GEOMETRY_OUTPUT_COMPONENTS */ - 1090, /* GL_MAX_FRAGMENT_INPUT_COMPONENTS */ + 1179, /* GL_MAX_VERTEX_OUTPUT_COMPONENTS */ + 1095, /* GL_MAX_GEOMETRY_INPUT_COMPONENTS */ + 1096, /* GL_MAX_GEOMETRY_OUTPUT_COMPONENTS */ + 1091, /* GL_MAX_FRAGMENT_INPUT_COMPONENTS */ 330, /* GL_CONTEXT_PROFILE_MASK */ 733, /* GL_GL_TEXTURE_IMMUTABLE_FORMAT */ 1081, /* GL_MAX_DEBUG_MESSAGE_LENGTH_ARB */ @@ -6356,12 +6368,12 @@ static const unsigned reduced_enums[1594] = 401, /* GL_DEBUG_SEVERITY_MEDIUM_ARB */ 400, /* GL_DEBUG_SEVERITY_LOW_ARB */ 568, /* GL_EVAL_BIT */ - 1587, /* GL_RASTER_POSITION_UNCLIPPED_IBM */ + 1590, /* GL_RASTER_POSITION_UNCLIPPED_IBM */ 893, /* GL_LIST_BIT */ - 2038, /* GL_TEXTURE_BIT */ - 1786, /* GL_SCISSOR_BIT */ + 2042, /* GL_TEXTURE_BIT */ + 1789, /* GL_SCISSOR_BIT */ 30, /* GL_ALL_ATTRIB_BITS */ - 1253, /* GL_MULTISAMPLE_BIT */ + 1254, /* GL_MULTISAMPLE_BIT */ 31, /* GL_ALL_CLIENT_ATTRIB_BITS */ }; diff --git a/src/mesa/main/remap_helper.h b/src/mesa/main/remap_helper.h index 78048615e67..aab53abd1b9 100644 --- a/src/mesa/main/remap_helper.h +++ b/src/mesa/main/remap_helper.h @@ -73,5052 +73,5060 @@ static const char _mesa_function_pool[] = "\0" "glLoadIdentity\0" "\0" - /* _mesa_function_pool[216]: GetCombinerOutputParameterfvNV (will be remapped) */ - "iiip\0" - "glGetCombinerOutputParameterfvNV\0" + /* _mesa_function_pool[216]: TexCoordP2uiv (will be remapped) */ + "ip\0" + "glTexCoordP2uiv\0" "\0" - /* _mesa_function_pool[255]: SampleCoverageARB (will be remapped) */ + /* _mesa_function_pool[236]: SampleCoverageARB (will be remapped) */ "fi\0" "glSampleCoverage\0" "glSampleCoverageARB\0" "\0" - /* _mesa_function_pool[296]: ConvolutionFilter1D (offset 348) */ + /* _mesa_function_pool[277]: ConvolutionFilter1D (offset 348) */ "iiiiip\0" "glConvolutionFilter1D\0" "glConvolutionFilter1DEXT\0" "\0" - /* _mesa_function_pool[351]: BeginQueryARB (will be remapped) */ + /* _mesa_function_pool[332]: BeginQueryARB (will be remapped) */ "ii\0" "glBeginQuery\0" "glBeginQueryARB\0" "\0" - /* _mesa_function_pool[384]: RasterPos3dv (offset 71) */ + /* _mesa_function_pool[365]: RasterPos3dv (offset 71) */ "p\0" "glRasterPos3dv\0" "\0" - /* _mesa_function_pool[402]: PointParameteriNV (will be remapped) */ + /* _mesa_function_pool[383]: PointParameteriNV (will be remapped) */ "ii\0" "glPointParameteri\0" "glPointParameteriNV\0" "\0" - /* _mesa_function_pool[444]: GetProgramiv (will be remapped) */ + /* _mesa_function_pool[425]: GetProgramiv (will be remapped) */ "iip\0" "glGetProgramiv\0" "\0" - /* _mesa_function_pool[464]: MultiTexCoord3sARB (offset 398) */ + /* _mesa_function_pool[445]: MultiTexCoord3sARB (offset 398) */ "iiii\0" "glMultiTexCoord3s\0" "glMultiTexCoord3sARB\0" "\0" - /* _mesa_function_pool[509]: SecondaryColor3iEXT (will be remapped) */ + /* _mesa_function_pool[490]: SecondaryColor3iEXT (will be remapped) */ "iii\0" "glSecondaryColor3i\0" "glSecondaryColor3iEXT\0" "\0" - /* _mesa_function_pool[555]: WindowPos3fMESA (will be remapped) */ + /* _mesa_function_pool[536]: WindowPos3fMESA (will be remapped) */ "fff\0" "glWindowPos3f\0" "glWindowPos3fARB\0" "glWindowPos3fMESA\0" "\0" - /* _mesa_function_pool[609]: TexCoord1iv (offset 99) */ + /* _mesa_function_pool[590]: TexCoord1iv (offset 99) */ "p\0" "glTexCoord1iv\0" "\0" - /* _mesa_function_pool[626]: TexCoord4sv (offset 125) */ + /* _mesa_function_pool[607]: TexCoord4sv (offset 125) */ "p\0" "glTexCoord4sv\0" "\0" - /* _mesa_function_pool[643]: RasterPos4s (offset 84) */ + /* _mesa_function_pool[624]: RasterPos4s (offset 84) */ "iiii\0" "glRasterPos4s\0" "\0" - /* _mesa_function_pool[663]: PixelTexGenParameterfvSGIS (will be remapped) */ + /* _mesa_function_pool[644]: PixelTexGenParameterfvSGIS (will be remapped) */ "ip\0" "glPixelTexGenParameterfvSGIS\0" "\0" - /* _mesa_function_pool[696]: ActiveTextureARB (offset 374) */ + /* _mesa_function_pool[677]: ActiveTextureARB (offset 374) */ "i\0" "glActiveTexture\0" "glActiveTextureARB\0" "\0" - /* _mesa_function_pool[734]: BlitFramebufferEXT (will be remapped) */ + /* _mesa_function_pool[715]: BlitFramebufferEXT (will be remapped) */ "iiiiiiiiii\0" "glBlitFramebuffer\0" "glBlitFramebufferEXT\0" "\0" - /* _mesa_function_pool[785]: TexCoord1f (offset 96) */ + /* _mesa_function_pool[766]: TexCoord1f (offset 96) */ "f\0" "glTexCoord1f\0" "\0" - /* _mesa_function_pool[801]: TexCoord1d (offset 94) */ + /* _mesa_function_pool[782]: TexCoord1d (offset 94) */ "d\0" "glTexCoord1d\0" "\0" - /* _mesa_function_pool[817]: VertexAttrib4ubvNV (will be remapped) */ + /* _mesa_function_pool[798]: VertexAttrib4ubvNV (will be remapped) */ "ip\0" "glVertexAttrib4ubvNV\0" "\0" - /* _mesa_function_pool[842]: TexCoord1i (offset 98) */ + /* _mesa_function_pool[823]: TexCoord1i (offset 98) */ "i\0" "glTexCoord1i\0" "\0" - /* _mesa_function_pool[858]: GetProgramNamedParameterdvNV (will be remapped) */ + /* _mesa_function_pool[839]: GetProgramNamedParameterdvNV (will be remapped) */ "iipp\0" "glGetProgramNamedParameterdvNV\0" "\0" - /* _mesa_function_pool[895]: Histogram (offset 367) */ + /* _mesa_function_pool[876]: Histogram (offset 367) */ "iiii\0" "glHistogram\0" "glHistogramEXT\0" "\0" - /* _mesa_function_pool[928]: TexCoord1s (offset 100) */ + /* _mesa_function_pool[909]: TexCoord1s (offset 100) */ "i\0" "glTexCoord1s\0" "\0" - /* _mesa_function_pool[944]: GetMapfv (offset 267) */ + /* _mesa_function_pool[925]: GetMapfv (offset 267) */ "iip\0" "glGetMapfv\0" "\0" - /* _mesa_function_pool[960]: EvalCoord1f (offset 230) */ + /* _mesa_function_pool[941]: EvalCoord1f (offset 230) */ "f\0" "glEvalCoord1f\0" "\0" - /* _mesa_function_pool[977]: FramebufferTexture (will be remapped) */ + /* _mesa_function_pool[958]: FramebufferTexture (will be remapped) */ "iiii\0" "glFramebufferTexture\0" "\0" - /* _mesa_function_pool[1004]: GetGraphicsResetStatusARB (will be remapped) */ + /* _mesa_function_pool[985]: GetGraphicsResetStatusARB (will be remapped) */ "\0" "glGetGraphicsResetStatusARB\0" "\0" - /* _mesa_function_pool[1034]: TexImage4DSGIS (dynamic) */ + /* _mesa_function_pool[1015]: TexImage4DSGIS (dynamic) */ "iiiiiiiiiip\0" "glTexImage4DSGIS\0" "\0" - /* _mesa_function_pool[1064]: PolygonStipple (offset 175) */ + /* _mesa_function_pool[1045]: PolygonStipple (offset 175) */ "p\0" "glPolygonStipple\0" "\0" - /* _mesa_function_pool[1084]: WindowPos2dvMESA (will be remapped) */ + /* _mesa_function_pool[1065]: WindowPos2dvMESA (will be remapped) */ "p\0" "glWindowPos2dv\0" "glWindowPos2dvARB\0" "glWindowPos2dvMESA\0" "\0" - /* _mesa_function_pool[1139]: ReplacementCodeuiColor3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[1120]: ReplacementCodeuiColor3fVertex3fvSUN (dynamic) */ "ppp\0" "glReplacementCodeuiColor3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[1183]: BlendEquationSeparateEXT (will be remapped) */ + /* _mesa_function_pool[1164]: BlendEquationSeparateEXT (will be remapped) */ "ii\0" "glBlendEquationSeparate\0" "glBlendEquationSeparateEXT\0" "glBlendEquationSeparateATI\0" "\0" - /* _mesa_function_pool[1265]: ListParameterfSGIX (dynamic) */ + /* _mesa_function_pool[1246]: ListParameterfSGIX (dynamic) */ "iif\0" "glListParameterfSGIX\0" "\0" - /* _mesa_function_pool[1291]: TexStorage1D (will be remapped) */ + /* _mesa_function_pool[1272]: TexStorage1D (will be remapped) */ "iiii\0" "glTexStorage1D\0" "\0" - /* _mesa_function_pool[1312]: SecondaryColor3bEXT (will be remapped) */ + /* _mesa_function_pool[1293]: SecondaryColor3bEXT (will be remapped) */ "iii\0" "glSecondaryColor3b\0" "glSecondaryColor3bEXT\0" "\0" - /* _mesa_function_pool[1358]: TexCoord4fColor4fNormal3fVertex4fvSUN (dynamic) */ + /* _mesa_function_pool[1339]: TexCoord4fColor4fNormal3fVertex4fvSUN (dynamic) */ "pppp\0" "glTexCoord4fColor4fNormal3fVertex4fvSUN\0" "\0" - /* _mesa_function_pool[1404]: GetnPolygonStippleARB (will be remapped) */ + /* _mesa_function_pool[1385]: GetnPolygonStippleARB (will be remapped) */ "ip\0" "glGetnPolygonStippleARB\0" "\0" - /* _mesa_function_pool[1432]: GetPixelMapfv (offset 271) */ + /* _mesa_function_pool[1413]: GetPixelMapfv (offset 271) */ "ip\0" "glGetPixelMapfv\0" "\0" - /* _mesa_function_pool[1452]: Color3uiv (offset 22) */ + /* _mesa_function_pool[1433]: Color3uiv (offset 22) */ "p\0" "glColor3uiv\0" "\0" - /* _mesa_function_pool[1467]: IsEnabled (offset 286) */ + /* _mesa_function_pool[1448]: IsEnabled (offset 286) */ "i\0" "glIsEnabled\0" "\0" - /* _mesa_function_pool[1482]: DebugMessageCallbackARB (will be remapped) */ + /* _mesa_function_pool[1463]: DebugMessageCallbackARB (will be remapped) */ "pp\0" "glDebugMessageCallbackARB\0" "\0" - /* _mesa_function_pool[1512]: VertexAttrib4svNV (will be remapped) */ + /* _mesa_function_pool[1493]: VertexAttrib4svNV (will be remapped) */ "ip\0" "glVertexAttrib4svNV\0" "\0" - /* _mesa_function_pool[1536]: EvalCoord2fv (offset 235) */ + /* _mesa_function_pool[1517]: EvalCoord2fv (offset 235) */ "p\0" "glEvalCoord2fv\0" "\0" - /* _mesa_function_pool[1554]: GetBufferSubDataARB (will be remapped) */ + /* _mesa_function_pool[1535]: GetBufferSubDataARB (will be remapped) */ "iiip\0" "glGetBufferSubData\0" "glGetBufferSubDataARB\0" "\0" - /* _mesa_function_pool[1601]: BufferSubDataARB (will be remapped) */ + /* _mesa_function_pool[1582]: BufferSubDataARB (will be remapped) */ "iiip\0" "glBufferSubData\0" "glBufferSubDataARB\0" "\0" - /* _mesa_function_pool[1642]: TexCoord2fColor4ubVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[1623]: TexCoord2fColor4ubVertex3fvSUN (dynamic) */ "ppp\0" "glTexCoord2fColor4ubVertex3fvSUN\0" "\0" - /* _mesa_function_pool[1680]: AttachShader (will be remapped) */ + /* _mesa_function_pool[1661]: AttachShader (will be remapped) */ "ii\0" "glAttachShader\0" "\0" - /* _mesa_function_pool[1699]: GetCombinerInputParameterfvNV (will be remapped) */ + /* _mesa_function_pool[1680]: GetCombinerInputParameterfvNV (will be remapped) */ "iiiip\0" "glGetCombinerInputParameterfvNV\0" "\0" - /* _mesa_function_pool[1738]: MultiTexCoordP2ui (will be remapped) */ + /* _mesa_function_pool[1719]: MultiTexCoordP2ui (will be remapped) */ "iii\0" "glMultiTexCoordP2ui\0" "\0" - /* _mesa_function_pool[1763]: VertexAttrib2fARB (will be remapped) */ + /* _mesa_function_pool[1744]: VertexAttrib2fARB (will be remapped) */ "iff\0" "glVertexAttrib2f\0" "glVertexAttrib2fARB\0" "\0" - /* _mesa_function_pool[1805]: GetDebugLogLengthMESA (dynamic) */ + /* _mesa_function_pool[1786]: GetDebugLogLengthMESA (dynamic) */ "iii\0" "glGetDebugLogLengthMESA\0" "\0" - /* _mesa_function_pool[1834]: GetMapiv (offset 268) */ + /* _mesa_function_pool[1815]: GetMapiv (offset 268) */ "iip\0" "glGetMapiv\0" "\0" - /* _mesa_function_pool[1850]: VertexAttrib3fARB (will be remapped) */ + /* _mesa_function_pool[1831]: VertexAttrib3fARB (will be remapped) */ "ifff\0" "glVertexAttrib3f\0" "glVertexAttrib3fARB\0" "\0" - /* _mesa_function_pool[1893]: Indexubv (offset 316) */ + /* _mesa_function_pool[1874]: Indexubv (offset 316) */ "p\0" "glIndexubv\0" "\0" - /* _mesa_function_pool[1907]: GetQueryivARB (will be remapped) */ + /* _mesa_function_pool[1888]: GetQueryivARB (will be remapped) */ "iip\0" "glGetQueryiv\0" "glGetQueryivARB\0" "\0" - /* _mesa_function_pool[1941]: TexImage3D (offset 371) */ + /* _mesa_function_pool[1922]: TexImage3D (offset 371) */ "iiiiiiiiip\0" "glTexImage3D\0" "glTexImage3DEXT\0" "\0" - /* _mesa_function_pool[1982]: BindFragDataLocationEXT (will be remapped) */ + /* _mesa_function_pool[1963]: BindFragDataLocationEXT (will be remapped) */ "iip\0" "glBindFragDataLocationEXT\0" "glBindFragDataLocation\0" "\0" - /* _mesa_function_pool[2036]: TexCoordP4ui (will be remapped) */ + /* _mesa_function_pool[2017]: TexCoordP4ui (will be remapped) */ "ii\0" "glTexCoordP4ui\0" "\0" - /* _mesa_function_pool[2055]: ReplacementCodeuiVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[2036]: ReplacementCodeuiVertex3fvSUN (dynamic) */ "pp\0" "glReplacementCodeuiVertex3fvSUN\0" "\0" - /* _mesa_function_pool[2091]: EdgeFlagPointer (offset 312) */ + /* _mesa_function_pool[2072]: EdgeFlagPointer (offset 312) */ "ip\0" "glEdgeFlagPointer\0" "\0" - /* _mesa_function_pool[2113]: Color3ubv (offset 20) */ + /* _mesa_function_pool[2094]: Color3ubv (offset 20) */ "p\0" "glColor3ubv\0" "\0" - /* _mesa_function_pool[2128]: GetQueryObjectivARB (will be remapped) */ + /* _mesa_function_pool[2109]: GetQueryObjectivARB (will be remapped) */ "iip\0" "glGetQueryObjectiv\0" "glGetQueryObjectivARB\0" "\0" - /* _mesa_function_pool[2174]: Vertex3dv (offset 135) */ + /* _mesa_function_pool[2155]: Vertex3dv (offset 135) */ "p\0" "glVertex3dv\0" "\0" - /* _mesa_function_pool[2189]: ReplacementCodeuiTexCoord2fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[2170]: ReplacementCodeuiTexCoord2fVertex3fvSUN (dynamic) */ "ppp\0" "glReplacementCodeuiTexCoord2fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[2236]: CompressedTexSubImage2DARB (will be remapped) */ + /* _mesa_function_pool[2217]: CompressedTexSubImage2DARB (will be remapped) */ "iiiiiiiip\0" "glCompressedTexSubImage2D\0" "glCompressedTexSubImage2DARB\0" "\0" - /* _mesa_function_pool[2302]: CombinerOutputNV (will be remapped) */ + /* _mesa_function_pool[2283]: CombinerOutputNV (will be remapped) */ "iiiiiiiiii\0" "glCombinerOutputNV\0" "\0" - /* _mesa_function_pool[2333]: VertexAttribs3fvNV (will be remapped) */ + /* _mesa_function_pool[2314]: VertexAttribs3fvNV (will be remapped) */ "iip\0" "glVertexAttribs3fvNV\0" "\0" - /* _mesa_function_pool[2359]: GetnMapivARB (will be remapped) */ + /* _mesa_function_pool[2340]: GetnMapivARB (will be remapped) */ "iiip\0" "glGetnMapivARB\0" "\0" - /* _mesa_function_pool[2380]: Uniform2fARB (will be remapped) */ + /* _mesa_function_pool[2361]: Uniform2fARB (will be remapped) */ "iff\0" "glUniform2f\0" "glUniform2fARB\0" "\0" - /* _mesa_function_pool[2412]: LightModeliv (offset 166) */ + /* _mesa_function_pool[2393]: LightModeliv (offset 166) */ "ip\0" "glLightModeliv\0" "\0" - /* _mesa_function_pool[2431]: VertexAttrib1svARB (will be remapped) */ + /* _mesa_function_pool[2412]: VertexAttrib1svARB (will be remapped) */ "ip\0" "glVertexAttrib1sv\0" "glVertexAttrib1svARB\0" "\0" - /* _mesa_function_pool[2474]: VertexAttribs1dvNV (will be remapped) */ + /* _mesa_function_pool[2455]: VertexAttribs1dvNV (will be remapped) */ "iip\0" "glVertexAttribs1dvNV\0" "\0" - /* _mesa_function_pool[2500]: VertexP3ui (will be remapped) */ + /* _mesa_function_pool[2481]: VertexP3ui (will be remapped) */ "ii\0" "glVertexP3ui\0" "\0" - /* _mesa_function_pool[2517]: Uniform2ivARB (will be remapped) */ + /* _mesa_function_pool[2498]: Uniform2ivARB (will be remapped) */ "iip\0" "glUniform2iv\0" "glUniform2ivARB\0" "\0" - /* _mesa_function_pool[2551]: GetImageTransformParameterfvHP (dynamic) */ + /* _mesa_function_pool[2532]: GetImageTransformParameterfvHP (dynamic) */ "iip\0" "glGetImageTransformParameterfvHP\0" "\0" - /* _mesa_function_pool[2589]: Normal3bv (offset 53) */ + /* _mesa_function_pool[2570]: Normal3bv (offset 53) */ "p\0" "glNormal3bv\0" "\0" - /* _mesa_function_pool[2604]: TexGeniv (offset 193) */ + /* _mesa_function_pool[2585]: TexGeniv (offset 193) */ "iip\0" "glTexGeniv\0" "\0" - /* _mesa_function_pool[2620]: TexCoordP1uiv (will be remapped) */ + /* _mesa_function_pool[2601]: TexCoordP1uiv (will be remapped) */ "ip\0" "glTexCoordP1uiv\0" "\0" - /* _mesa_function_pool[2640]: WeightubvARB (dynamic) */ + /* _mesa_function_pool[2621]: WeightubvARB (dynamic) */ "ip\0" "glWeightubvARB\0" "\0" - /* _mesa_function_pool[2659]: VertexAttrib1fvNV (will be remapped) */ + /* _mesa_function_pool[2640]: VertexAttrib1fvNV (will be remapped) */ "ip\0" "glVertexAttrib1fvNV\0" "\0" - /* _mesa_function_pool[2683]: Vertex3iv (offset 139) */ + /* _mesa_function_pool[2664]: Vertex3iv (offset 139) */ "p\0" "glVertex3iv\0" "\0" - /* _mesa_function_pool[2698]: CopyConvolutionFilter1D (offset 354) */ + /* _mesa_function_pool[2679]: CopyConvolutionFilter1D (offset 354) */ "iiiii\0" "glCopyConvolutionFilter1D\0" "glCopyConvolutionFilter1DEXT\0" "\0" - /* _mesa_function_pool[2760]: VertexAttribI1uiEXT (will be remapped) */ + /* _mesa_function_pool[2741]: VertexAttribI1uiEXT (will be remapped) */ "ii\0" "glVertexAttribI1uiEXT\0" "glVertexAttribI1ui\0" "\0" - /* _mesa_function_pool[2805]: ReplacementCodeuiNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[2786]: ReplacementCodeuiNormal3fVertex3fSUN (dynamic) */ "iffffff\0" "glReplacementCodeuiNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[2853]: TexCoordP1ui (will be remapped) */ + /* _mesa_function_pool[2834]: TexCoordP1ui (will be remapped) */ "ii\0" "glTexCoordP1ui\0" "\0" - /* _mesa_function_pool[2872]: DeleteSync (will be remapped) */ + /* _mesa_function_pool[2853]: DeleteSync (will be remapped) */ "i\0" "glDeleteSync\0" "\0" - /* _mesa_function_pool[2888]: FragmentMaterialfvSGIX (dynamic) */ + /* _mesa_function_pool[2869]: FragmentMaterialfvSGIX (dynamic) */ "iip\0" "glFragmentMaterialfvSGIX\0" "\0" - /* _mesa_function_pool[2918]: BlendColor (offset 336) */ + /* _mesa_function_pool[2899]: BlendColor (offset 336) */ "ffff\0" "glBlendColor\0" "glBlendColorEXT\0" "\0" - /* _mesa_function_pool[2953]: UniformMatrix4fvARB (will be remapped) */ + /* _mesa_function_pool[2934]: UniformMatrix4fvARB (will be remapped) */ "iiip\0" "glUniformMatrix4fv\0" "glUniformMatrix4fvARB\0" "\0" - /* _mesa_function_pool[3000]: DeleteVertexArraysAPPLE (will be remapped) */ + /* _mesa_function_pool[2981]: DeleteVertexArraysAPPLE (will be remapped) */ "ip\0" "glDeleteVertexArrays\0" "glDeleteVertexArraysAPPLE\0" "\0" - /* _mesa_function_pool[3051]: GetDebugMessageLogARB (will be remapped) */ + /* _mesa_function_pool[3032]: GetDebugMessageLogARB (will be remapped) */ "iipppppp\0" "glGetDebugMessageLogARB\0" "\0" - /* _mesa_function_pool[3085]: ReadInstrumentsSGIX (dynamic) */ + /* _mesa_function_pool[3066]: ReadInstrumentsSGIX (dynamic) */ "i\0" "glReadInstrumentsSGIX\0" "\0" - /* _mesa_function_pool[3110]: CallLists (offset 3) */ + /* _mesa_function_pool[3091]: CallLists (offset 3) */ "iip\0" "glCallLists\0" "\0" - /* _mesa_function_pool[3127]: DeformationMap3dSGIX (dynamic) */ - "iddiiddiiddiip\0" - "glDeformationMap3dSGIX\0" - "\0" - /* _mesa_function_pool[3166]: UniformMatrix2x4fv (will be remapped) */ + /* _mesa_function_pool[3108]: UniformMatrix2x4fv (will be remapped) */ "iiip\0" "glUniformMatrix2x4fv\0" "\0" - /* _mesa_function_pool[3193]: ReadnPixelsARB (will be remapped) */ + /* _mesa_function_pool[3135]: ReadnPixelsARB (will be remapped) */ "iiiiiiip\0" "glReadnPixelsARB\0" "\0" - /* _mesa_function_pool[3220]: Color4ubVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[3162]: Color4ubVertex3fvSUN (dynamic) */ "pp\0" "glColor4ubVertex3fvSUN\0" "\0" - /* _mesa_function_pool[3247]: Normal3iv (offset 59) */ + /* _mesa_function_pool[3189]: Normal3iv (offset 59) */ "p\0" "glNormal3iv\0" "\0" - /* _mesa_function_pool[3262]: PassThrough (offset 199) */ + /* _mesa_function_pool[3204]: PassThrough (offset 199) */ "f\0" "glPassThrough\0" "\0" - /* _mesa_function_pool[3279]: GetnPixelMapusvARB (will be remapped) */ + /* _mesa_function_pool[3221]: GetnPixelMapusvARB (will be remapped) */ "iip\0" "glGetnPixelMapusvARB\0" "\0" - /* _mesa_function_pool[3305]: TexParameterIivEXT (will be remapped) */ + /* _mesa_function_pool[3247]: TexParameterIivEXT (will be remapped) */ "iip\0" "glTexParameterIivEXT\0" "glTexParameterIiv\0" "\0" - /* _mesa_function_pool[3349]: FramebufferTextureLayerEXT (will be remapped) */ + /* _mesa_function_pool[3291]: FramebufferTextureLayerEXT (will be remapped) */ "iiiii\0" "glFramebufferTextureLayer\0" "glFramebufferTextureLayerARB\0" "glFramebufferTextureLayerEXT\0" "\0" - /* _mesa_function_pool[3440]: GetListParameterfvSGIX (dynamic) */ + /* _mesa_function_pool[3382]: GetListParameterfvSGIX (dynamic) */ "iip\0" "glGetListParameterfvSGIX\0" "\0" - /* _mesa_function_pool[3470]: Viewport (offset 305) */ + /* _mesa_function_pool[3412]: Viewport (offset 305) */ "iiii\0" "glViewport\0" "\0" - /* _mesa_function_pool[3487]: VertexAttrib4NusvARB (will be remapped) */ + /* _mesa_function_pool[3429]: VertexAttrib4NusvARB (will be remapped) */ "ip\0" "glVertexAttrib4Nusv\0" "glVertexAttrib4NusvARB\0" "\0" - /* _mesa_function_pool[3534]: VertexP4uiv (will be remapped) */ + /* _mesa_function_pool[3476]: VertexP4uiv (will be remapped) */ "ip\0" "glVertexP4uiv\0" "\0" - /* _mesa_function_pool[3552]: VertexAttribP3ui (will be remapped) */ + /* _mesa_function_pool[3494]: VertexAttribP3ui (will be remapped) */ "iiii\0" "glVertexAttribP3ui\0" "\0" - /* _mesa_function_pool[3577]: WindowPos4svMESA (will be remapped) */ + /* _mesa_function_pool[3519]: WindowPos4svMESA (will be remapped) */ "p\0" "glWindowPos4svMESA\0" "\0" - /* _mesa_function_pool[3599]: CreateProgramObjectARB (will be remapped) */ + /* _mesa_function_pool[3541]: CreateProgramObjectARB (will be remapped) */ "\0" "glCreateProgramObjectARB\0" "\0" - /* _mesa_function_pool[3626]: DeleteTransformFeedbacks (will be remapped) */ + /* _mesa_function_pool[3568]: DeleteTransformFeedbacks (will be remapped) */ "ip\0" "glDeleteTransformFeedbacks\0" "\0" - /* _mesa_function_pool[3657]: UniformMatrix4x3fv (will be remapped) */ + /* _mesa_function_pool[3599]: UniformMatrix4x3fv (will be remapped) */ "iiip\0" "glUniformMatrix4x3fv\0" "\0" - /* _mesa_function_pool[3684]: PrioritizeTextures (offset 331) */ + /* _mesa_function_pool[3626]: PrioritizeTextures (offset 331) */ "ipp\0" "glPrioritizeTextures\0" "glPrioritizeTexturesEXT\0" "\0" - /* _mesa_function_pool[3734]: VertexAttribI3uiEXT (will be remapped) */ + /* _mesa_function_pool[3676]: VertexAttribI3uiEXT (will be remapped) */ "iiii\0" "glVertexAttribI3uiEXT\0" "glVertexAttribI3ui\0" "\0" - /* _mesa_function_pool[3781]: AsyncMarkerSGIX (dynamic) */ + /* _mesa_function_pool[3723]: AsyncMarkerSGIX (dynamic) */ "i\0" "glAsyncMarkerSGIX\0" "\0" - /* _mesa_function_pool[3802]: GlobalAlphaFactorubSUN (dynamic) */ + /* _mesa_function_pool[3744]: GlobalAlphaFactorubSUN (dynamic) */ "i\0" "glGlobalAlphaFactorubSUN\0" "\0" - /* _mesa_function_pool[3830]: ClearColorIuiEXT (will be remapped) */ + /* _mesa_function_pool[3772]: ClearColorIuiEXT (will be remapped) */ "iiii\0" "glClearColorIuiEXT\0" "\0" - /* _mesa_function_pool[3855]: ClearDebugLogMESA (dynamic) */ + /* _mesa_function_pool[3797]: ClearDebugLogMESA (dynamic) */ "iii\0" "glClearDebugLogMESA\0" "\0" - /* _mesa_function_pool[3880]: Uniform4uiEXT (will be remapped) */ + /* _mesa_function_pool[3822]: Uniform4uiEXT (will be remapped) */ "iiiii\0" "glUniform4uiEXT\0" "glUniform4ui\0" "\0" - /* _mesa_function_pool[3916]: ResetHistogram (offset 369) */ + /* _mesa_function_pool[3858]: ResetHistogram (offset 369) */ "i\0" "glResetHistogram\0" "glResetHistogramEXT\0" "\0" - /* _mesa_function_pool[3956]: GetProgramNamedParameterfvNV (will be remapped) */ + /* _mesa_function_pool[3898]: GetProgramNamedParameterfvNV (will be remapped) */ "iipp\0" "glGetProgramNamedParameterfvNV\0" "\0" - /* _mesa_function_pool[3993]: PointParameterfEXT (will be remapped) */ + /* _mesa_function_pool[3935]: PointParameterfEXT (will be remapped) */ "if\0" "glPointParameterf\0" "glPointParameterfARB\0" "glPointParameterfEXT\0" "glPointParameterfSGIS\0" "\0" - /* _mesa_function_pool[4079]: MultiTexCoordP4uiv (will be remapped) */ + /* _mesa_function_pool[4021]: MultiTexCoordP4uiv (will be remapped) */ "iip\0" "glMultiTexCoordP4uiv\0" "\0" - /* _mesa_function_pool[4105]: LoadIdentityDeformationMapSGIX (dynamic) */ + /* _mesa_function_pool[4047]: LoadIdentityDeformationMapSGIX (dynamic) */ "i\0" "glLoadIdentityDeformationMapSGIX\0" "\0" - /* _mesa_function_pool[4141]: GenFencesNV (will be remapped) */ + /* _mesa_function_pool[4083]: GenFencesNV (will be remapped) */ "ip\0" "glGenFencesNV\0" "\0" - /* _mesa_function_pool[4159]: ImageTransformParameterfHP (dynamic) */ + /* _mesa_function_pool[4101]: ImageTransformParameterfHP (dynamic) */ "iif\0" "glImageTransformParameterfHP\0" "\0" - /* _mesa_function_pool[4193]: MatrixIndexusvARB (dynamic) */ + /* _mesa_function_pool[4135]: MatrixIndexusvARB (dynamic) */ "ip\0" "glMatrixIndexusvARB\0" "\0" - /* _mesa_function_pool[4217]: DrawElementsBaseVertex (will be remapped) */ + /* _mesa_function_pool[4159]: DrawElementsBaseVertex (will be remapped) */ "iiipi\0" "glDrawElementsBaseVertex\0" "\0" - /* _mesa_function_pool[4249]: DisableVertexAttribArrayARB (will be remapped) */ + /* _mesa_function_pool[4191]: DisableVertexAttribArrayARB (will be remapped) */ "i\0" "glDisableVertexAttribArray\0" "glDisableVertexAttribArrayARB\0" "\0" - /* _mesa_function_pool[4309]: VertexAttribI4ubvEXT (will be remapped) */ - "ip\0" - "glVertexAttribI4ubvEXT\0" - "glVertexAttribI4ubv\0" - "\0" - /* _mesa_function_pool[4356]: GetnConvolutionFilterARB (will be remapped) */ + /* _mesa_function_pool[4251]: GetnConvolutionFilterARB (will be remapped) */ "iiiip\0" "glGetnConvolutionFilterARB\0" "\0" - /* _mesa_function_pool[4390]: TexCoord2sv (offset 109) */ + /* _mesa_function_pool[4285]: TexCoord2sv (offset 109) */ "p\0" "glTexCoord2sv\0" "\0" - /* _mesa_function_pool[4407]: ColorP4uiv (will be remapped) */ + /* _mesa_function_pool[4302]: ColorP4uiv (will be remapped) */ "ip\0" "glColorP4uiv\0" "\0" - /* _mesa_function_pool[4424]: Vertex4dv (offset 143) */ + /* _mesa_function_pool[4319]: Vertex4dv (offset 143) */ "p\0" "glVertex4dv\0" "\0" - /* _mesa_function_pool[4439]: StencilMaskSeparate (will be remapped) */ + /* _mesa_function_pool[4334]: StencilMaskSeparate (will be remapped) */ "ii\0" "glStencilMaskSeparate\0" "\0" - /* _mesa_function_pool[4465]: ProgramLocalParameter4dARB (will be remapped) */ + /* _mesa_function_pool[4360]: ProgramLocalParameter4dARB (will be remapped) */ "iidddd\0" "glProgramLocalParameter4dARB\0" "\0" - /* _mesa_function_pool[4502]: CompressedTexImage3DARB (will be remapped) */ + /* _mesa_function_pool[4397]: CompressedTexImage3DARB (will be remapped) */ "iiiiiiiip\0" "glCompressedTexImage3D\0" "glCompressedTexImage3DARB\0" "\0" - /* _mesa_function_pool[4562]: Color3sv (offset 18) */ + /* _mesa_function_pool[4457]: Color3sv (offset 18) */ "p\0" "glColor3sv\0" "\0" - /* _mesa_function_pool[4576]: GetConvolutionParameteriv (offset 358) */ + /* _mesa_function_pool[4471]: GetConvolutionParameteriv (offset 358) */ "iip\0" "glGetConvolutionParameteriv\0" "glGetConvolutionParameterivEXT\0" "\0" - /* _mesa_function_pool[4640]: DeleteSamplers (will be remapped) */ + /* _mesa_function_pool[4535]: DeleteSamplers (will be remapped) */ "ip\0" "glDeleteSamplers\0" "\0" - /* _mesa_function_pool[4661]: VertexAttrib1fARB (will be remapped) */ + /* _mesa_function_pool[4556]: VertexAttrib1fARB (will be remapped) */ "if\0" "glVertexAttrib1f\0" "glVertexAttrib1fARB\0" "\0" - /* _mesa_function_pool[4702]: Vertex2dv (offset 127) */ + /* _mesa_function_pool[4597]: Vertex2dv (offset 127) */ "p\0" "glVertex2dv\0" "\0" - /* _mesa_function_pool[4717]: TestFenceNV (will be remapped) */ + /* _mesa_function_pool[4612]: TestFenceNV (will be remapped) */ "i\0" "glTestFenceNV\0" "\0" - /* _mesa_function_pool[4734]: MultiTexCoord1fvARB (offset 379) */ + /* _mesa_function_pool[4629]: GetVertexAttribIuivEXT (will be remapped) */ + "iip\0" + "glGetVertexAttribIuivEXT\0" + "glGetVertexAttribIuiv\0" + "\0" + /* _mesa_function_pool[4681]: MultiTexCoord1fvARB (offset 379) */ "ip\0" "glMultiTexCoord1fv\0" "glMultiTexCoord1fvARB\0" "\0" - /* _mesa_function_pool[4779]: TexCoord3iv (offset 115) */ + /* _mesa_function_pool[4726]: TexCoord3iv (offset 115) */ "p\0" "glTexCoord3iv\0" "\0" - /* _mesa_function_pool[4796]: Uniform2uivEXT (will be remapped) */ + /* _mesa_function_pool[4743]: Uniform2uivEXT (will be remapped) */ "iip\0" "glUniform2uivEXT\0" "glUniform2uiv\0" "\0" - /* _mesa_function_pool[4832]: ColorFragmentOp2ATI (will be remapped) */ + /* _mesa_function_pool[4779]: ColorFragmentOp2ATI (will be remapped) */ "iiiiiiiiii\0" "glColorFragmentOp2ATI\0" "\0" - /* _mesa_function_pool[4866]: TexStorage2D (will be remapped) */ + /* _mesa_function_pool[4813]: TexStorage2D (will be remapped) */ "iiiii\0" "glTexStorage2D\0" "\0" - /* _mesa_function_pool[4888]: SecondaryColorPointerListIBM (dynamic) */ + /* _mesa_function_pool[4835]: SecondaryColorPointerListIBM (dynamic) */ "iiipi\0" "glSecondaryColorPointerListIBM\0" "\0" - /* _mesa_function_pool[4926]: GetPixelTexGenParameterivSGIS (will be remapped) */ + /* _mesa_function_pool[4873]: GetPixelTexGenParameterivSGIS (will be remapped) */ "ip\0" "glGetPixelTexGenParameterivSGIS\0" "\0" - /* _mesa_function_pool[4962]: Color3fv (offset 14) */ + /* _mesa_function_pool[4909]: Color3fv (offset 14) */ "p\0" "glColor3fv\0" "\0" - /* _mesa_function_pool[4976]: GetnPixelMapfvARB (will be remapped) */ + /* _mesa_function_pool[4923]: GetnPixelMapfvARB (will be remapped) */ "iip\0" "glGetnPixelMapfvARB\0" "\0" - /* _mesa_function_pool[5001]: TextureStorage1DEXT (will be remapped) */ + /* _mesa_function_pool[4948]: TextureStorage1DEXT (will be remapped) */ "iiiii\0" "glTextureStorage1DEXT\0" "\0" - /* _mesa_function_pool[5030]: ReplacementCodeubSUN (dynamic) */ + /* _mesa_function_pool[4977]: ReplacementCodeubSUN (dynamic) */ "i\0" "glReplacementCodeubSUN\0" "\0" - /* _mesa_function_pool[5056]: FinishAsyncSGIX (dynamic) */ + /* _mesa_function_pool[5003]: FinishAsyncSGIX (dynamic) */ "p\0" "glFinishAsyncSGIX\0" "\0" - /* _mesa_function_pool[5077]: GetnUniformfvARB (will be remapped) */ + /* _mesa_function_pool[5024]: GetnUniformfvARB (will be remapped) */ "iiip\0" "glGetnUniformfvARB\0" "\0" - /* _mesa_function_pool[5102]: GetDebugLogMESA (dynamic) */ + /* _mesa_function_pool[5049]: GetDebugLogMESA (dynamic) */ "iiiipp\0" "glGetDebugLogMESA\0" "\0" - /* _mesa_function_pool[5128]: FogCoorddEXT (will be remapped) */ + /* _mesa_function_pool[5075]: FogCoorddEXT (will be remapped) */ "d\0" "glFogCoordd\0" "glFogCoorddEXT\0" "\0" - /* _mesa_function_pool[5158]: BeginConditionalRenderNV (will be remapped) */ + /* _mesa_function_pool[5105]: BeginConditionalRenderNV (will be remapped) */ "ii\0" "glBeginConditionalRenderNV\0" "glBeginConditionalRender\0" "\0" - /* _mesa_function_pool[5214]: Color4ubVertex3fSUN (dynamic) */ + /* _mesa_function_pool[5161]: Color4ubVertex3fSUN (dynamic) */ "iiiifff\0" "glColor4ubVertex3fSUN\0" "\0" - /* _mesa_function_pool[5245]: FogCoordfEXT (will be remapped) */ + /* _mesa_function_pool[5192]: FogCoordfEXT (will be remapped) */ "f\0" "glFogCoordf\0" "glFogCoordfEXT\0" "\0" - /* _mesa_function_pool[5275]: PointSize (offset 173) */ + /* _mesa_function_pool[5222]: PointSize (offset 173) */ "f\0" "glPointSize\0" "\0" - /* _mesa_function_pool[5290]: VertexAttribI2uivEXT (will be remapped) */ + /* _mesa_function_pool[5237]: VertexAttribI2uivEXT (will be remapped) */ "ip\0" "glVertexAttribI2uivEXT\0" "glVertexAttribI2uiv\0" "\0" - /* _mesa_function_pool[5337]: TexCoord2fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[5284]: TexCoord2fVertex3fSUN (dynamic) */ "fffff\0" "glTexCoord2fVertex3fSUN\0" "\0" - /* _mesa_function_pool[5368]: PopName (offset 200) */ + /* _mesa_function_pool[5315]: PopName (offset 200) */ "\0" "glPopName\0" "\0" - /* _mesa_function_pool[5380]: GetSamplerParameterfv (will be remapped) */ + /* _mesa_function_pool[5327]: GetSamplerParameterfv (will be remapped) */ "iip\0" "glGetSamplerParameterfv\0" "\0" - /* _mesa_function_pool[5409]: GlobalAlphaFactoriSUN (dynamic) */ + /* _mesa_function_pool[5356]: GlobalAlphaFactoriSUN (dynamic) */ "i\0" "glGlobalAlphaFactoriSUN\0" "\0" - /* _mesa_function_pool[5436]: VertexAttrib2dNV (will be remapped) */ + /* _mesa_function_pool[5383]: VertexAttrib2dNV (will be remapped) */ "idd\0" "glVertexAttrib2dNV\0" "\0" - /* _mesa_function_pool[5460]: GetProgramInfoLog (will be remapped) */ + /* _mesa_function_pool[5407]: GetProgramInfoLog (will be remapped) */ "iipp\0" "glGetProgramInfoLog\0" "\0" - /* _mesa_function_pool[5486]: VertexP2ui (will be remapped) */ + /* _mesa_function_pool[5433]: VertexP2ui (will be remapped) */ "ii\0" "glVertexP2ui\0" "\0" - /* _mesa_function_pool[5503]: VertexAttrib4NbvARB (will be remapped) */ + /* _mesa_function_pool[5450]: VertexAttrib4NbvARB (will be remapped) */ "ip\0" "glVertexAttrib4Nbv\0" "glVertexAttrib4NbvARB\0" "\0" - /* _mesa_function_pool[5548]: GetActiveAttribARB (will be remapped) */ + /* _mesa_function_pool[5495]: GetActiveAttribARB (will be remapped) */ "iiipppp\0" "glGetActiveAttrib\0" "glGetActiveAttribARB\0" "\0" - /* _mesa_function_pool[5596]: Vertex4sv (offset 149) */ + /* _mesa_function_pool[5543]: Vertex4sv (offset 149) */ "p\0" "glVertex4sv\0" "\0" - /* _mesa_function_pool[5611]: VertexAttrib4ubNV (will be remapped) */ + /* _mesa_function_pool[5558]: VertexAttrib4ubNV (will be remapped) */ "iiiii\0" "glVertexAttrib4ubNV\0" "\0" - /* _mesa_function_pool[5638]: VertexAttribI1ivEXT (will be remapped) */ + /* _mesa_function_pool[5585]: VertexAttribI1ivEXT (will be remapped) */ "ip\0" "glVertexAttribI1ivEXT\0" "glVertexAttribI1iv\0" "\0" - /* _mesa_function_pool[5683]: ClampColor (will be remapped) */ + /* _mesa_function_pool[5630]: ClampColor (will be remapped) */ "ii\0" "glClampColor\0" "\0" - /* _mesa_function_pool[5700]: TextureRangeAPPLE (will be remapped) */ + /* _mesa_function_pool[5647]: TextureRangeAPPLE (will be remapped) */ "iip\0" "glTextureRangeAPPLE\0" "\0" - /* _mesa_function_pool[5725]: GetTexEnvfv (offset 276) */ + /* _mesa_function_pool[5672]: GetTexEnvfv (offset 276) */ "iip\0" "glGetTexEnvfv\0" "\0" - /* _mesa_function_pool[5744]: VertexAttribP2uiv (will be remapped) */ + /* _mesa_function_pool[5691]: VertexAttribP2uiv (will be remapped) */ "iiip\0" "glVertexAttribP2uiv\0" "\0" - /* _mesa_function_pool[5770]: BindTransformFeedback (will be remapped) */ + /* _mesa_function_pool[5717]: BindTransformFeedback (will be remapped) */ "ii\0" "glBindTransformFeedback\0" "\0" - /* _mesa_function_pool[5798]: TexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[5745]: TexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */ "ffffffffffff\0" "glTexCoord2fColor4fNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[5851]: Indexub (offset 315) */ + /* _mesa_function_pool[5798]: Indexub (offset 315) */ "i\0" "glIndexub\0" "\0" - /* _mesa_function_pool[5864]: VertexAttrib4fNV (will be remapped) */ + /* _mesa_function_pool[5811]: VertexAttrib4fNV (will be remapped) */ "iffff\0" "glVertexAttrib4fNV\0" "\0" - /* _mesa_function_pool[5890]: TexEnvi (offset 186) */ + /* _mesa_function_pool[5837]: TexEnvi (offset 186) */ "iii\0" "glTexEnvi\0" "\0" - /* _mesa_function_pool[5905]: GetClipPlane (offset 259) */ + /* _mesa_function_pool[5852]: GetClipPlane (offset 259) */ "ip\0" "glGetClipPlane\0" "\0" - /* _mesa_function_pool[5924]: CombinerParameterfvNV (will be remapped) */ + /* _mesa_function_pool[5871]: CombinerParameterfvNV (will be remapped) */ "ip\0" "glCombinerParameterfvNV\0" "\0" - /* _mesa_function_pool[5952]: TexCoordP4uiv (will be remapped) */ + /* _mesa_function_pool[5899]: TexCoordP4uiv (will be remapped) */ "ip\0" "glTexCoordP4uiv\0" "\0" - /* _mesa_function_pool[5972]: VertexAttribs3dvNV (will be remapped) */ + /* _mesa_function_pool[5919]: VertexAttribs3dvNV (will be remapped) */ "iip\0" "glVertexAttribs3dvNV\0" "\0" - /* _mesa_function_pool[5998]: VertexAttribI2uiEXT (will be remapped) */ + /* _mesa_function_pool[5945]: VertexAttribI2uiEXT (will be remapped) */ "iii\0" "glVertexAttribI2uiEXT\0" "glVertexAttribI2ui\0" "\0" - /* _mesa_function_pool[6044]: VertexAttribs4fvNV (will be remapped) */ + /* _mesa_function_pool[5991]: VertexAttribs4fvNV (will be remapped) */ "iip\0" "glVertexAttribs4fvNV\0" "\0" - /* _mesa_function_pool[6070]: VertexArrayRangeNV (will be remapped) */ + /* _mesa_function_pool[6017]: VertexArrayRangeNV (will be remapped) */ "ip\0" "glVertexArrayRangeNV\0" "\0" - /* _mesa_function_pool[6095]: FragmentLightiSGIX (dynamic) */ + /* _mesa_function_pool[6042]: FragmentLightiSGIX (dynamic) */ "iii\0" "glFragmentLightiSGIX\0" "\0" - /* _mesa_function_pool[6121]: PolygonOffsetEXT (will be remapped) */ + /* _mesa_function_pool[6068]: PolygonOffsetEXT (will be remapped) */ "ff\0" "glPolygonOffsetEXT\0" "\0" - /* _mesa_function_pool[6144]: VertexAttribI4uivEXT (will be remapped) */ + /* _mesa_function_pool[6091]: VertexAttribI4uivEXT (will be remapped) */ "ip\0" "glVertexAttribI4uivEXT\0" "glVertexAttribI4uiv\0" "\0" - /* _mesa_function_pool[6191]: PollAsyncSGIX (dynamic) */ + /* _mesa_function_pool[6138]: PollAsyncSGIX (dynamic) */ "p\0" "glPollAsyncSGIX\0" "\0" - /* _mesa_function_pool[6210]: DeleteFragmentShaderATI (will be remapped) */ + /* _mesa_function_pool[6157]: DeleteFragmentShaderATI (will be remapped) */ "i\0" "glDeleteFragmentShaderATI\0" "\0" - /* _mesa_function_pool[6239]: Scaled (offset 301) */ + /* _mesa_function_pool[6186]: Scaled (offset 301) */ "ddd\0" "glScaled\0" "\0" - /* _mesa_function_pool[6253]: ResumeTransformFeedback (will be remapped) */ + /* _mesa_function_pool[6200]: ResumeTransformFeedback (will be remapped) */ "\0" "glResumeTransformFeedback\0" "\0" - /* _mesa_function_pool[6281]: Scalef (offset 302) */ + /* _mesa_function_pool[6228]: Scalef (offset 302) */ "fff\0" "glScalef\0" "\0" - /* _mesa_function_pool[6295]: TexCoord2fNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[6242]: TexCoord2fNormal3fVertex3fvSUN (dynamic) */ "ppp\0" "glTexCoord2fNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[6333]: ProgramEnvParameters4fvEXT (will be remapped) */ + /* _mesa_function_pool[6280]: ProgramEnvParameters4fvEXT (will be remapped) */ "iiip\0" "glProgramEnvParameters4fvEXT\0" "\0" - /* _mesa_function_pool[6368]: MultTransposeMatrixdARB (will be remapped) */ + /* _mesa_function_pool[6315]: MultTransposeMatrixdARB (will be remapped) */ "p\0" "glMultTransposeMatrixd\0" "glMultTransposeMatrixdARB\0" "\0" - /* _mesa_function_pool[6420]: ObjectUnpurgeableAPPLE (will be remapped) */ + /* _mesa_function_pool[6367]: ColorMaskIndexedEXT (will be remapped) */ + "iiiii\0" + "glColorMaskIndexedEXT\0" + "glColorMaski\0" + "\0" + /* _mesa_function_pool[6409]: ObjectUnpurgeableAPPLE (will be remapped) */ "iii\0" "glObjectUnpurgeableAPPLE\0" "\0" - /* _mesa_function_pool[6450]: TexCoordP3ui (will be remapped) */ + /* _mesa_function_pool[6439]: TexCoordP3ui (will be remapped) */ "ii\0" "glTexCoordP3ui\0" "\0" - /* _mesa_function_pool[6469]: AlphaFunc (offset 240) */ + /* _mesa_function_pool[6458]: AlphaFunc (offset 240) */ "if\0" "glAlphaFunc\0" "\0" - /* _mesa_function_pool[6485]: WindowPos2svMESA (will be remapped) */ + /* _mesa_function_pool[6474]: WindowPos2svMESA (will be remapped) */ "p\0" "glWindowPos2sv\0" "glWindowPos2svARB\0" "glWindowPos2svMESA\0" "\0" - /* _mesa_function_pool[6540]: EdgeFlag (offset 41) */ + /* _mesa_function_pool[6529]: EdgeFlag (offset 41) */ "i\0" "glEdgeFlag\0" "\0" - /* _mesa_function_pool[6554]: TexCoord2iv (offset 107) */ + /* _mesa_function_pool[6543]: TexCoord2iv (offset 107) */ "p\0" "glTexCoord2iv\0" "\0" - /* _mesa_function_pool[6571]: CompressedTexImage1DARB (will be remapped) */ + /* _mesa_function_pool[6560]: CompressedTexImage1DARB (will be remapped) */ "iiiiiip\0" "glCompressedTexImage1D\0" "glCompressedTexImage1DARB\0" "\0" - /* _mesa_function_pool[6629]: Rotated (offset 299) */ + /* _mesa_function_pool[6618]: Rotated (offset 299) */ "dddd\0" "glRotated\0" "\0" - /* _mesa_function_pool[6645]: GetTexParameterIuivEXT (will be remapped) */ + /* _mesa_function_pool[6634]: GetTexParameterIuivEXT (will be remapped) */ "iip\0" "glGetTexParameterIuivEXT\0" "glGetTexParameterIuiv\0" "\0" - /* _mesa_function_pool[6697]: VertexAttrib2sNV (will be remapped) */ + /* _mesa_function_pool[6686]: VertexAttrib2sNV (will be remapped) */ "iii\0" "glVertexAttrib2sNV\0" "\0" - /* _mesa_function_pool[6721]: ReadPixels (offset 256) */ + /* _mesa_function_pool[6710]: ReadPixels (offset 256) */ "iiiiiip\0" "glReadPixels\0" "\0" - /* _mesa_function_pool[6743]: VertexAttribDivisorARB (will be remapped) */ + /* _mesa_function_pool[6732]: VertexAttribDivisorARB (will be remapped) */ "ii\0" "glVertexAttribDivisorARB\0" "\0" - /* _mesa_function_pool[6772]: EdgeFlagv (offset 42) */ + /* _mesa_function_pool[6761]: EdgeFlagv (offset 42) */ "p\0" "glEdgeFlagv\0" "\0" - /* _mesa_function_pool[6787]: NormalPointerListIBM (dynamic) */ + /* _mesa_function_pool[6776]: NormalPointerListIBM (dynamic) */ "iipi\0" "glNormalPointerListIBM\0" "\0" - /* _mesa_function_pool[6816]: IndexPointerEXT (will be remapped) */ + /* _mesa_function_pool[6805]: IndexPointerEXT (will be remapped) */ "iiip\0" "glIndexPointerEXT\0" "\0" - /* _mesa_function_pool[6840]: Color4iv (offset 32) */ + /* _mesa_function_pool[6829]: Color4iv (offset 32) */ "p\0" "glColor4iv\0" "\0" - /* _mesa_function_pool[6854]: TexParameterf (offset 178) */ + /* _mesa_function_pool[6843]: TexParameterf (offset 178) */ "iif\0" "glTexParameterf\0" "\0" - /* _mesa_function_pool[6875]: TexParameteri (offset 180) */ + /* _mesa_function_pool[6864]: TexParameteri (offset 180) */ "iii\0" "glTexParameteri\0" "\0" - /* _mesa_function_pool[6896]: NormalPointerEXT (will be remapped) */ + /* _mesa_function_pool[6885]: NormalPointerEXT (will be remapped) */ "iiip\0" "glNormalPointerEXT\0" "\0" - /* _mesa_function_pool[6921]: MultiTexCoord3dARB (offset 392) */ + /* _mesa_function_pool[6910]: MultiTexCoord3dARB (offset 392) */ "iddd\0" "glMultiTexCoord3d\0" "glMultiTexCoord3dARB\0" "\0" - /* _mesa_function_pool[6966]: MultiTexCoord2iARB (offset 388) */ + /* _mesa_function_pool[6955]: MultiTexCoord2iARB (offset 388) */ "iii\0" "glMultiTexCoord2i\0" "glMultiTexCoord2iARB\0" "\0" - /* _mesa_function_pool[7010]: DrawPixels (offset 257) */ + /* _mesa_function_pool[6999]: DrawPixels (offset 257) */ "iiiip\0" "glDrawPixels\0" "\0" - /* _mesa_function_pool[7030]: ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[7019]: ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN (dynamic) */ "iffffffff\0" "glReplacementCodeuiTexCoord2fNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[7090]: MultiTexCoord2svARB (offset 391) */ + /* _mesa_function_pool[7079]: MultiTexCoord2svARB (offset 391) */ "ip\0" "glMultiTexCoord2sv\0" "glMultiTexCoord2svARB\0" "\0" - /* _mesa_function_pool[7135]: ReplacementCodeubvSUN (dynamic) */ + /* _mesa_function_pool[7124]: ReplacementCodeubvSUN (dynamic) */ "p\0" "glReplacementCodeubvSUN\0" "\0" - /* _mesa_function_pool[7162]: Uniform3iARB (will be remapped) */ + /* _mesa_function_pool[7151]: Uniform3iARB (will be remapped) */ "iiii\0" "glUniform3i\0" "glUniform3iARB\0" "\0" - /* _mesa_function_pool[7195]: DrawTransformFeedback (will be remapped) */ + /* _mesa_function_pool[7184]: DrawTransformFeedback (will be remapped) */ "ii\0" "glDrawTransformFeedback\0" "\0" - /* _mesa_function_pool[7223]: DrawElementsInstancedARB (will be remapped) */ + /* _mesa_function_pool[7212]: DrawElementsInstancedARB (will be remapped) */ "iiipi\0" "glDrawElementsInstancedARB\0" "glDrawElementsInstancedEXT\0" "glDrawElementsInstanced\0" "\0" - /* _mesa_function_pool[7308]: GetShaderInfoLog (will be remapped) */ + /* _mesa_function_pool[7297]: GetShaderInfoLog (will be remapped) */ "iipp\0" "glGetShaderInfoLog\0" "\0" - /* _mesa_function_pool[7333]: WeightivARB (dynamic) */ + /* _mesa_function_pool[7322]: WeightivARB (dynamic) */ "ip\0" "glWeightivARB\0" "\0" - /* _mesa_function_pool[7351]: PollInstrumentsSGIX (dynamic) */ + /* _mesa_function_pool[7340]: PollInstrumentsSGIX (dynamic) */ "p\0" "glPollInstrumentsSGIX\0" "\0" - /* _mesa_function_pool[7376]: GlobalAlphaFactordSUN (dynamic) */ + /* _mesa_function_pool[7365]: GlobalAlphaFactordSUN (dynamic) */ "d\0" "glGlobalAlphaFactordSUN\0" "\0" - /* _mesa_function_pool[7403]: GetFinalCombinerInputParameterfvNV (will be remapped) */ + /* _mesa_function_pool[7392]: GetFinalCombinerInputParameterfvNV (will be remapped) */ "iip\0" "glGetFinalCombinerInputParameterfvNV\0" "\0" - /* _mesa_function_pool[7445]: GenerateMipmapEXT (will be remapped) */ + /* _mesa_function_pool[7434]: GenerateMipmapEXT (will be remapped) */ "i\0" "glGenerateMipmap\0" "glGenerateMipmapEXT\0" "\0" - /* _mesa_function_pool[7485]: GenLists (offset 5) */ + /* _mesa_function_pool[7474]: GenLists (offset 5) */ "i\0" "glGenLists\0" "\0" - /* _mesa_function_pool[7499]: DepthRangef (will be remapped) */ + /* _mesa_function_pool[7488]: DepthRangef (will be remapped) */ "ff\0" "glDepthRangef\0" "\0" - /* _mesa_function_pool[7517]: GetMapAttribParameterivNV (dynamic) */ + /* _mesa_function_pool[7506]: GetMapAttribParameterivNV (dynamic) */ "iiip\0" "glGetMapAttribParameterivNV\0" "\0" - /* _mesa_function_pool[7551]: CreateShaderObjectARB (will be remapped) */ + /* _mesa_function_pool[7540]: CreateShaderObjectARB (will be remapped) */ "i\0" "glCreateShaderObjectARB\0" "\0" - /* _mesa_function_pool[7578]: GetSharpenTexFuncSGIS (dynamic) */ + /* _mesa_function_pool[7567]: GetSharpenTexFuncSGIS (dynamic) */ "ip\0" "glGetSharpenTexFuncSGIS\0" "\0" - /* _mesa_function_pool[7606]: BufferDataARB (will be remapped) */ + /* _mesa_function_pool[7595]: BufferDataARB (will be remapped) */ "iipi\0" "glBufferData\0" "glBufferDataARB\0" "\0" - /* _mesa_function_pool[7641]: FlushVertexArrayRangeNV (will be remapped) */ + /* _mesa_function_pool[7630]: FlushVertexArrayRangeNV (will be remapped) */ "\0" "glFlushVertexArrayRangeNV\0" "\0" - /* _mesa_function_pool[7669]: MapGrid2d (offset 226) */ + /* _mesa_function_pool[7658]: MapGrid2d (offset 226) */ "iddidd\0" "glMapGrid2d\0" "\0" - /* _mesa_function_pool[7689]: MapGrid2f (offset 227) */ + /* _mesa_function_pool[7678]: MapGrid2f (offset 227) */ "iffiff\0" "glMapGrid2f\0" "\0" - /* _mesa_function_pool[7709]: SampleMapATI (will be remapped) */ + /* _mesa_function_pool[7698]: SampleMapATI (will be remapped) */ "iii\0" "glSampleMapATI\0" "\0" - /* _mesa_function_pool[7729]: VertexPointerEXT (will be remapped) */ + /* _mesa_function_pool[7718]: VertexPointerEXT (will be remapped) */ "iiiip\0" "glVertexPointerEXT\0" "\0" - /* _mesa_function_pool[7755]: GetTexFilterFuncSGIS (dynamic) */ + /* _mesa_function_pool[7744]: GetTexFilterFuncSGIS (dynamic) */ "iip\0" "glGetTexFilterFuncSGIS\0" "\0" - /* _mesa_function_pool[7783]: Scissor (offset 176) */ + /* _mesa_function_pool[7772]: Scissor (offset 176) */ "iiii\0" "glScissor\0" "\0" - /* _mesa_function_pool[7799]: Fogf (offset 153) */ + /* _mesa_function_pool[7788]: Fogf (offset 153) */ "if\0" "glFogf\0" "\0" - /* _mesa_function_pool[7810]: ReplacementCodeuiColor4ubVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[7799]: ReplacementCodeuiColor4ubVertex3fvSUN (dynamic) */ "ppp\0" "glReplacementCodeuiColor4ubVertex3fvSUN\0" "\0" - /* _mesa_function_pool[7855]: TexSubImage1D (offset 332) */ + /* _mesa_function_pool[7844]: TexSubImage1D (offset 332) */ "iiiiiip\0" "glTexSubImage1D\0" "glTexSubImage1DEXT\0" "\0" - /* _mesa_function_pool[7899]: VertexAttrib1sARB (will be remapped) */ + /* _mesa_function_pool[7888]: VertexAttrib1sARB (will be remapped) */ "ii\0" "glVertexAttrib1s\0" "glVertexAttrib1sARB\0" "\0" - /* _mesa_function_pool[7940]: FenceSync (will be remapped) */ + /* _mesa_function_pool[7929]: FenceSync (will be remapped) */ "ii\0" "glFenceSync\0" "\0" - /* _mesa_function_pool[7956]: Color4usv (offset 40) */ + /* _mesa_function_pool[7945]: Color4usv (offset 40) */ "p\0" "glColor4usv\0" "\0" - /* _mesa_function_pool[7971]: Fogi (offset 155) */ + /* _mesa_function_pool[7960]: Fogi (offset 155) */ "ii\0" "glFogi\0" "\0" - /* _mesa_function_pool[7982]: DepthRange (offset 288) */ + /* _mesa_function_pool[7971]: DepthRange (offset 288) */ "dd\0" "glDepthRange\0" "\0" - /* _mesa_function_pool[7999]: RasterPos3iv (offset 75) */ + /* _mesa_function_pool[7988]: RasterPos3iv (offset 75) */ "p\0" "glRasterPos3iv\0" "\0" - /* _mesa_function_pool[8017]: FinalCombinerInputNV (will be remapped) */ + /* _mesa_function_pool[8006]: FinalCombinerInputNV (will be remapped) */ "iiii\0" "glFinalCombinerInputNV\0" "\0" - /* _mesa_function_pool[8046]: TexCoord2i (offset 106) */ + /* _mesa_function_pool[8035]: TexCoord2i (offset 106) */ "ii\0" "glTexCoord2i\0" "\0" - /* _mesa_function_pool[8063]: PixelMapfv (offset 251) */ + /* _mesa_function_pool[8052]: PixelMapfv (offset 251) */ "iip\0" "glPixelMapfv\0" "\0" - /* _mesa_function_pool[8081]: Color4ui (offset 37) */ + /* _mesa_function_pool[8070]: Color4ui (offset 37) */ "iiii\0" "glColor4ui\0" "\0" - /* _mesa_function_pool[8098]: RasterPos3s (offset 76) */ + /* _mesa_function_pool[8087]: RasterPos3s (offset 76) */ "iii\0" "glRasterPos3s\0" "\0" - /* _mesa_function_pool[8117]: Color3usv (offset 24) */ + /* _mesa_function_pool[8106]: Color3usv (offset 24) */ "p\0" "glColor3usv\0" "\0" - /* _mesa_function_pool[8132]: FlushRasterSGIX (dynamic) */ + /* _mesa_function_pool[8121]: FlushRasterSGIX (dynamic) */ "\0" "glFlushRasterSGIX\0" "\0" - /* _mesa_function_pool[8152]: TexCoord2f (offset 104) */ + /* _mesa_function_pool[8141]: TexCoord2f (offset 104) */ "ff\0" "glTexCoord2f\0" "\0" - /* _mesa_function_pool[8169]: ReplacementCodeuiTexCoord2fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[8158]: ReplacementCodeuiTexCoord2fVertex3fSUN (dynamic) */ "ifffff\0" "glReplacementCodeuiTexCoord2fVertex3fSUN\0" "\0" - /* _mesa_function_pool[8218]: TexCoord2d (offset 102) */ + /* _mesa_function_pool[8207]: TexCoord2d (offset 102) */ "dd\0" "glTexCoord2d\0" "\0" - /* _mesa_function_pool[8235]: RasterPos3d (offset 70) */ + /* _mesa_function_pool[8224]: RasterPos3d (offset 70) */ "ddd\0" "glRasterPos3d\0" "\0" - /* _mesa_function_pool[8254]: RasterPos3f (offset 72) */ + /* _mesa_function_pool[8243]: RasterPos3f (offset 72) */ "fff\0" "glRasterPos3f\0" "\0" - /* _mesa_function_pool[8273]: Uniform1fARB (will be remapped) */ + /* _mesa_function_pool[8262]: Uniform1fARB (will be remapped) */ "if\0" "glUniform1f\0" "glUniform1fARB\0" "\0" - /* _mesa_function_pool[8304]: AreTexturesResident (offset 322) */ + /* _mesa_function_pool[8293]: AreTexturesResident (offset 322) */ "ipp\0" "glAreTexturesResident\0" "glAreTexturesResidentEXT\0" "\0" - /* _mesa_function_pool[8356]: TexCoord2s (offset 108) */ + /* _mesa_function_pool[8345]: TexCoord2s (offset 108) */ "ii\0" "glTexCoord2s\0" "\0" - /* _mesa_function_pool[8373]: StencilOpSeparate (will be remapped) */ + /* _mesa_function_pool[8362]: StencilOpSeparate (will be remapped) */ "iiii\0" "glStencilOpSeparate\0" "glStencilOpSeparateATI\0" "\0" - /* _mesa_function_pool[8422]: ColorTableParameteriv (offset 341) */ + /* _mesa_function_pool[8411]: ColorTableParameteriv (offset 341) */ "iip\0" "glColorTableParameteriv\0" "glColorTableParameterivSGI\0" "\0" - /* _mesa_function_pool[8478]: FogCoordPointerListIBM (dynamic) */ + /* _mesa_function_pool[8467]: FogCoordPointerListIBM (dynamic) */ "iipi\0" "glFogCoordPointerListIBM\0" "\0" - /* _mesa_function_pool[8509]: WindowPos3dMESA (will be remapped) */ + /* _mesa_function_pool[8498]: WindowPos3dMESA (will be remapped) */ "ddd\0" "glWindowPos3d\0" "glWindowPos3dARB\0" "glWindowPos3dMESA\0" "\0" - /* _mesa_function_pool[8563]: Color4us (offset 39) */ + /* _mesa_function_pool[8552]: Color4us (offset 39) */ "iiii\0" "glColor4us\0" "\0" - /* _mesa_function_pool[8580]: PointParameterfvEXT (will be remapped) */ + /* _mesa_function_pool[8569]: PointParameterfvEXT (will be remapped) */ "ip\0" "glPointParameterfv\0" "glPointParameterfvARB\0" "glPointParameterfvEXT\0" "glPointParameterfvSGIS\0" "\0" - /* _mesa_function_pool[8670]: Color3bv (offset 10) */ + /* _mesa_function_pool[8659]: Color3bv (offset 10) */ "p\0" "glColor3bv\0" "\0" - /* _mesa_function_pool[8684]: GetnCompressedTexImageARB (will be remapped) */ + /* _mesa_function_pool[8673]: GetnCompressedTexImageARB (will be remapped) */ "iiip\0" "glGetnCompressedTexImageARB\0" "\0" - /* _mesa_function_pool[8718]: WindowPos2fvMESA (will be remapped) */ + /* _mesa_function_pool[8707]: WindowPos2fvMESA (will be remapped) */ "p\0" "glWindowPos2fv\0" "glWindowPos2fvARB\0" "glWindowPos2fvMESA\0" "\0" - /* _mesa_function_pool[8773]: SecondaryColor3bvEXT (will be remapped) */ + /* _mesa_function_pool[8762]: SecondaryColor3bvEXT (will be remapped) */ "p\0" "glSecondaryColor3bv\0" "glSecondaryColor3bvEXT\0" "\0" - /* _mesa_function_pool[8819]: VertexPointerListIBM (dynamic) */ + /* _mesa_function_pool[8808]: VertexPointerListIBM (dynamic) */ "iiipi\0" "glVertexPointerListIBM\0" "\0" - /* _mesa_function_pool[8849]: GetProgramLocalParameterfvARB (will be remapped) */ + /* _mesa_function_pool[8838]: GetProgramLocalParameterfvARB (will be remapped) */ "iip\0" "glGetProgramLocalParameterfvARB\0" "\0" - /* _mesa_function_pool[8886]: FragmentMaterialfSGIX (dynamic) */ + /* _mesa_function_pool[8875]: FragmentMaterialfSGIX (dynamic) */ "iif\0" "glFragmentMaterialfSGIX\0" "\0" - /* _mesa_function_pool[8915]: BindSampler (will be remapped) */ + /* _mesa_function_pool[8904]: BindSampler (will be remapped) */ "ii\0" "glBindSampler\0" "\0" - /* _mesa_function_pool[8933]: RenderbufferStorageEXT (will be remapped) */ + /* _mesa_function_pool[8922]: RenderbufferStorageEXT (will be remapped) */ "iiii\0" "glRenderbufferStorage\0" "glRenderbufferStorageEXT\0" "\0" - /* _mesa_function_pool[8986]: IsFenceNV (will be remapped) */ + /* _mesa_function_pool[8975]: IsFenceNV (will be remapped) */ "i\0" "glIsFenceNV\0" "\0" - /* _mesa_function_pool[9001]: AttachObjectARB (will be remapped) */ + /* _mesa_function_pool[8990]: AttachObjectARB (will be remapped) */ "ii\0" "glAttachObjectARB\0" "\0" - /* _mesa_function_pool[9023]: GetFragmentLightivSGIX (dynamic) */ + /* _mesa_function_pool[9012]: GetFragmentLightivSGIX (dynamic) */ "iip\0" "glGetFragmentLightivSGIX\0" "\0" - /* _mesa_function_pool[9053]: UniformMatrix2fvARB (will be remapped) */ + /* _mesa_function_pool[9042]: UniformMatrix2fvARB (will be remapped) */ "iiip\0" "glUniformMatrix2fv\0" "glUniformMatrix2fvARB\0" "\0" - /* _mesa_function_pool[9100]: MultiTexCoord2fARB (offset 386) */ + /* _mesa_function_pool[9089]: MultiTexCoord2fARB (offset 386) */ "iff\0" "glMultiTexCoord2f\0" "glMultiTexCoord2fARB\0" "\0" - /* _mesa_function_pool[9144]: ColorTable (offset 339) */ + /* _mesa_function_pool[9133]: ColorTable (offset 339) */ "iiiiip\0" "glColorTable\0" "glColorTableSGI\0" "glColorTableEXT\0" "\0" - /* _mesa_function_pool[9197]: IndexPointer (offset 314) */ + /* _mesa_function_pool[9186]: IndexPointer (offset 314) */ "iip\0" "glIndexPointer\0" "\0" - /* _mesa_function_pool[9217]: Accum (offset 213) */ + /* _mesa_function_pool[9206]: Accum (offset 213) */ "if\0" "glAccum\0" "\0" - /* _mesa_function_pool[9229]: GetTexImage (offset 281) */ + /* _mesa_function_pool[9218]: GetTexImage (offset 281) */ "iiiip\0" "glGetTexImage\0" "\0" - /* _mesa_function_pool[9250]: MapControlPointsNV (dynamic) */ + /* _mesa_function_pool[9239]: MapControlPointsNV (dynamic) */ "iiiiiiiip\0" "glMapControlPointsNV\0" "\0" - /* _mesa_function_pool[9282]: ConvolutionFilter2D (offset 349) */ + /* _mesa_function_pool[9271]: ConvolutionFilter2D (offset 349) */ "iiiiiip\0" "glConvolutionFilter2D\0" "glConvolutionFilter2DEXT\0" "\0" - /* _mesa_function_pool[9338]: Finish (offset 216) */ + /* _mesa_function_pool[9327]: Finish (offset 216) */ "\0" "glFinish\0" "\0" - /* _mesa_function_pool[9349]: MapParameterfvNV (dynamic) */ + /* _mesa_function_pool[9338]: MapParameterfvNV (dynamic) */ "iip\0" "glMapParameterfvNV\0" "\0" - /* _mesa_function_pool[9373]: ClearStencil (offset 207) */ + /* _mesa_function_pool[9362]: ClearStencil (offset 207) */ "i\0" "glClearStencil\0" "\0" - /* _mesa_function_pool[9391]: VertexAttrib3dvARB (will be remapped) */ + /* _mesa_function_pool[9380]: VertexAttrib3dvARB (will be remapped) */ "ip\0" "glVertexAttrib3dv\0" "glVertexAttrib3dvARB\0" "\0" - /* _mesa_function_pool[9434]: Uniform4uivEXT (will be remapped) */ + /* _mesa_function_pool[9423]: Uniform4uivEXT (will be remapped) */ "iip\0" "glUniform4uivEXT\0" "glUniform4uiv\0" "\0" - /* _mesa_function_pool[9470]: HintPGI (dynamic) */ + /* _mesa_function_pool[9459]: HintPGI (dynamic) */ "ii\0" "glHintPGI\0" "\0" - /* _mesa_function_pool[9484]: ConvolutionParameteriv (offset 353) */ + /* _mesa_function_pool[9473]: ConvolutionParameteriv (offset 353) */ "iip\0" "glConvolutionParameteriv\0" "glConvolutionParameterivEXT\0" "\0" - /* _mesa_function_pool[9542]: Color4s (offset 33) */ + /* _mesa_function_pool[9531]: Color4s (offset 33) */ "iiii\0" "glColor4s\0" "\0" - /* _mesa_function_pool[9558]: InterleavedArrays (offset 317) */ + /* _mesa_function_pool[9547]: InterleavedArrays (offset 317) */ "iip\0" "glInterleavedArrays\0" "\0" - /* _mesa_function_pool[9583]: RasterPos2fv (offset 65) */ + /* _mesa_function_pool[9572]: RasterPos2fv (offset 65) */ "p\0" "glRasterPos2fv\0" "\0" - /* _mesa_function_pool[9601]: TexCoord1fv (offset 97) */ + /* _mesa_function_pool[9590]: TexCoord1fv (offset 97) */ "p\0" "glTexCoord1fv\0" "\0" - /* _mesa_function_pool[9618]: Vertex2d (offset 126) */ + /* _mesa_function_pool[9607]: Vertex2d (offset 126) */ "dd\0" "glVertex2d\0" "\0" - /* _mesa_function_pool[9633]: CullParameterdvEXT (dynamic) */ + /* _mesa_function_pool[9622]: CullParameterdvEXT (dynamic) */ "ip\0" "glCullParameterdvEXT\0" "\0" - /* _mesa_function_pool[9658]: ProgramNamedParameter4fNV (will be remapped) */ + /* _mesa_function_pool[9647]: ProgramNamedParameter4fNV (will be remapped) */ "iipffff\0" "glProgramNamedParameter4fNV\0" "\0" - /* _mesa_function_pool[9695]: Color3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[9684]: Color3fVertex3fSUN (dynamic) */ "ffffff\0" "glColor3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[9724]: ProgramEnvParameter4fvARB (will be remapped) */ + /* _mesa_function_pool[9713]: ProgramEnvParameter4fvARB (will be remapped) */ "iip\0" "glProgramEnvParameter4fvARB\0" "glProgramParameter4fvNV\0" "\0" - /* _mesa_function_pool[9781]: Color4i (offset 31) */ + /* _mesa_function_pool[9770]: Color4i (offset 31) */ "iiii\0" "glColor4i\0" "\0" - /* _mesa_function_pool[9797]: Color4f (offset 29) */ + /* _mesa_function_pool[9786]: Color4f (offset 29) */ "ffff\0" "glColor4f\0" "\0" - /* _mesa_function_pool[9813]: RasterPos4fv (offset 81) */ + /* _mesa_function_pool[9802]: RasterPos4fv (offset 81) */ "p\0" "glRasterPos4fv\0" "\0" - /* _mesa_function_pool[9831]: Color4d (offset 27) */ + /* _mesa_function_pool[9820]: Color4d (offset 27) */ "dddd\0" "glColor4d\0" "\0" - /* _mesa_function_pool[9847]: ClearIndex (offset 205) */ + /* _mesa_function_pool[9836]: ClearIndex (offset 205) */ "f\0" "glClearIndex\0" "\0" - /* _mesa_function_pool[9863]: Color4b (offset 25) */ + /* _mesa_function_pool[9852]: Color4b (offset 25) */ "iiii\0" "glColor4b\0" "\0" - /* _mesa_function_pool[9879]: LoadMatrixd (offset 292) */ + /* _mesa_function_pool[9868]: LoadMatrixd (offset 292) */ "p\0" "glLoadMatrixd\0" "\0" - /* _mesa_function_pool[9896]: FragmentLightModeliSGIX (dynamic) */ + /* _mesa_function_pool[9885]: FragmentLightModeliSGIX (dynamic) */ "ii\0" "glFragmentLightModeliSGIX\0" "\0" - /* _mesa_function_pool[9926]: RasterPos2dv (offset 63) */ + /* _mesa_function_pool[9915]: RasterPos2dv (offset 63) */ "p\0" "glRasterPos2dv\0" "\0" - /* _mesa_function_pool[9944]: ConvolutionParameterfv (offset 351) */ + /* _mesa_function_pool[9933]: ConvolutionParameterfv (offset 351) */ "iip\0" "glConvolutionParameterfv\0" "glConvolutionParameterfvEXT\0" "\0" - /* _mesa_function_pool[10002]: TbufferMask3DFX (dynamic) */ + /* _mesa_function_pool[9991]: TbufferMask3DFX (dynamic) */ "i\0" "glTbufferMask3DFX\0" "\0" - /* _mesa_function_pool[10023]: GetTexGendv (offset 278) */ + /* _mesa_function_pool[10012]: GetTexGendv (offset 278) */ "iip\0" "glGetTexGendv\0" "\0" - /* _mesa_function_pool[10042]: GetVertexAttribfvNV (will be remapped) */ + /* _mesa_function_pool[10031]: GetVertexAttribfvNV (will be remapped) */ "iip\0" "glGetVertexAttribfvNV\0" "\0" - /* _mesa_function_pool[10069]: BeginTransformFeedbackEXT (will be remapped) */ + /* _mesa_function_pool[10058]: BeginTransformFeedbackEXT (will be remapped) */ "i\0" "glBeginTransformFeedbackEXT\0" "glBeginTransformFeedback\0" "\0" - /* _mesa_function_pool[10125]: LoadProgramNV (will be remapped) */ + /* _mesa_function_pool[10114]: LoadProgramNV (will be remapped) */ "iiip\0" "glLoadProgramNV\0" "\0" - /* _mesa_function_pool[10147]: WaitSync (will be remapped) */ + /* _mesa_function_pool[10136]: WaitSync (will be remapped) */ "iii\0" "glWaitSync\0" "\0" - /* _mesa_function_pool[10163]: EndList (offset 1) */ + /* _mesa_function_pool[10152]: EndList (offset 1) */ "\0" "glEndList\0" "\0" - /* _mesa_function_pool[10175]: VertexP4ui (will be remapped) */ + /* _mesa_function_pool[10164]: VertexP4ui (will be remapped) */ "ii\0" "glVertexP4ui\0" "\0" - /* _mesa_function_pool[10192]: VertexAttrib4fvNV (will be remapped) */ + /* _mesa_function_pool[10181]: VertexAttrib4fvNV (will be remapped) */ "ip\0" "glVertexAttrib4fvNV\0" "\0" - /* _mesa_function_pool[10216]: GetAttachedObjectsARB (will be remapped) */ + /* _mesa_function_pool[10205]: GetAttachedObjectsARB (will be remapped) */ "iipp\0" "glGetAttachedObjectsARB\0" "\0" - /* _mesa_function_pool[10246]: Uniform3fvARB (will be remapped) */ + /* _mesa_function_pool[10235]: Uniform3fvARB (will be remapped) */ "iip\0" "glUniform3fv\0" "glUniform3fvARB\0" "\0" - /* _mesa_function_pool[10280]: EvalCoord1fv (offset 231) */ + /* _mesa_function_pool[10269]: EvalCoord1fv (offset 231) */ "p\0" "glEvalCoord1fv\0" "\0" - /* _mesa_function_pool[10298]: DrawRangeElements (offset 338) */ + /* _mesa_function_pool[10287]: DrawRangeElements (offset 338) */ "iiiiip\0" "glDrawRangeElements\0" "glDrawRangeElementsEXT\0" "\0" - /* _mesa_function_pool[10349]: EvalMesh2 (offset 238) */ + /* _mesa_function_pool[10338]: EvalMesh2 (offset 238) */ "iiiii\0" "glEvalMesh2\0" "\0" - /* _mesa_function_pool[10368]: Vertex4fv (offset 145) */ + /* _mesa_function_pool[10357]: Vertex4fv (offset 145) */ "p\0" "glVertex4fv\0" "\0" - /* _mesa_function_pool[10383]: GenTransformFeedbacks (will be remapped) */ + /* _mesa_function_pool[10372]: GenTransformFeedbacks (will be remapped) */ "ip\0" "glGenTransformFeedbacks\0" "\0" - /* _mesa_function_pool[10411]: SpriteParameterfvSGIX (dynamic) */ + /* _mesa_function_pool[10400]: SpriteParameterfvSGIX (dynamic) */ "ip\0" "glSpriteParameterfvSGIX\0" "\0" - /* _mesa_function_pool[10439]: CheckFramebufferStatusEXT (will be remapped) */ + /* _mesa_function_pool[10428]: CheckFramebufferStatusEXT (will be remapped) */ "i\0" "glCheckFramebufferStatus\0" "glCheckFramebufferStatusEXT\0" "\0" - /* _mesa_function_pool[10495]: GlobalAlphaFactoruiSUN (dynamic) */ + /* _mesa_function_pool[10484]: GlobalAlphaFactoruiSUN (dynamic) */ "i\0" "glGlobalAlphaFactoruiSUN\0" "\0" - /* _mesa_function_pool[10523]: GetHandleARB (will be remapped) */ + /* _mesa_function_pool[10512]: GetHandleARB (will be remapped) */ "i\0" "glGetHandleARB\0" "\0" - /* _mesa_function_pool[10541]: DebugMessageControlARB (will be remapped) */ + /* _mesa_function_pool[10530]: DebugMessageControlARB (will be remapped) */ "iiiipi\0" "glDebugMessageControlARB\0" "\0" - /* _mesa_function_pool[10574]: GetVertexAttribivARB (will be remapped) */ + /* _mesa_function_pool[10563]: GetVertexAttribivARB (will be remapped) */ "iip\0" "glGetVertexAttribiv\0" "glGetVertexAttribivARB\0" "\0" - /* _mesa_function_pool[10622]: BlendFunciARB (will be remapped) */ + /* _mesa_function_pool[10611]: BlendFunciARB (will be remapped) */ "iii\0" "glBlendFunciARB\0" "glBlendFuncIndexedAMD\0" "\0" - /* _mesa_function_pool[10665]: VertexAttribP1ui (will be remapped) */ + /* _mesa_function_pool[10654]: VertexAttribP1ui (will be remapped) */ "iiii\0" "glVertexAttribP1ui\0" "\0" - /* _mesa_function_pool[10690]: GetnUniformivARB (will be remapped) */ + /* _mesa_function_pool[10679]: GetnUniformivARB (will be remapped) */ "iiip\0" "glGetnUniformivARB\0" "\0" - /* _mesa_function_pool[10715]: GetTexParameterIivEXT (will be remapped) */ + /* _mesa_function_pool[10704]: GetTexParameterIivEXT (will be remapped) */ "iip\0" "glGetTexParameterIivEXT\0" "glGetTexParameterIiv\0" "\0" - /* _mesa_function_pool[10765]: CreateProgram (will be remapped) */ + /* _mesa_function_pool[10754]: CreateProgram (will be remapped) */ "\0" "glCreateProgram\0" "\0" - /* _mesa_function_pool[10783]: LoadTransposeMatrixdARB (will be remapped) */ + /* _mesa_function_pool[10772]: LoadTransposeMatrixdARB (will be remapped) */ "p\0" "glLoadTransposeMatrixd\0" "glLoadTransposeMatrixdARB\0" "\0" - /* _mesa_function_pool[10835]: ReleaseShaderCompiler (will be remapped) */ + /* _mesa_function_pool[10824]: ReleaseShaderCompiler (will be remapped) */ "\0" "glReleaseShaderCompiler\0" "\0" - /* _mesa_function_pool[10861]: GetMinmax (offset 364) */ + /* _mesa_function_pool[10850]: GetMinmax (offset 364) */ "iiiip\0" "glGetMinmax\0" "glGetMinmaxEXT\0" "\0" - /* _mesa_function_pool[10895]: StencilFuncSeparate (will be remapped) */ + /* _mesa_function_pool[10884]: StencilFuncSeparate (will be remapped) */ "iiii\0" "glStencilFuncSeparate\0" "\0" - /* _mesa_function_pool[10923]: SecondaryColor3sEXT (will be remapped) */ + /* _mesa_function_pool[10912]: SecondaryColor3sEXT (will be remapped) */ "iii\0" "glSecondaryColor3s\0" "glSecondaryColor3sEXT\0" "\0" - /* _mesa_function_pool[10969]: Color3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[10958]: Color3fVertex3fvSUN (dynamic) */ "pp\0" "glColor3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[10995]: GetInteger64i_v (will be remapped) */ + /* _mesa_function_pool[10984]: GetInteger64i_v (will be remapped) */ "iip\0" "glGetInteger64i_v\0" "\0" - /* _mesa_function_pool[11018]: GetVertexAttribdvNV (will be remapped) */ + /* _mesa_function_pool[11007]: GetVertexAttribdvNV (will be remapped) */ "iip\0" "glGetVertexAttribdvNV\0" "\0" - /* _mesa_function_pool[11045]: Normal3fv (offset 57) */ + /* _mesa_function_pool[11034]: Normal3fv (offset 57) */ "p\0" "glNormal3fv\0" "\0" - /* _mesa_function_pool[11060]: GlobalAlphaFactorbSUN (dynamic) */ + /* _mesa_function_pool[11049]: GlobalAlphaFactorbSUN (dynamic) */ "i\0" "glGlobalAlphaFactorbSUN\0" "\0" - /* _mesa_function_pool[11087]: Color3us (offset 23) */ + /* _mesa_function_pool[11076]: Color3us (offset 23) */ "iii\0" "glColor3us\0" "\0" - /* _mesa_function_pool[11103]: ImageTransformParameterfvHP (dynamic) */ + /* _mesa_function_pool[11092]: ImageTransformParameterfvHP (dynamic) */ "iip\0" "glImageTransformParameterfvHP\0" "\0" - /* _mesa_function_pool[11138]: VertexAttrib4ivARB (will be remapped) */ + /* _mesa_function_pool[11127]: VertexAttrib4ivARB (will be remapped) */ "ip\0" "glVertexAttrib4iv\0" "glVertexAttrib4ivARB\0" "\0" - /* _mesa_function_pool[11181]: End (offset 43) */ + /* _mesa_function_pool[11170]: End (offset 43) */ "\0" "glEnd\0" "\0" - /* _mesa_function_pool[11189]: VertexAttrib3fNV (will be remapped) */ + /* _mesa_function_pool[11178]: VertexAttrib3fNV (will be remapped) */ "ifff\0" "glVertexAttrib3fNV\0" "\0" - /* _mesa_function_pool[11214]: MultiTexCoordP3uiv (will be remapped) */ + /* _mesa_function_pool[11203]: MultiTexCoordP3uiv (will be remapped) */ "iip\0" "glMultiTexCoordP3uiv\0" "\0" - /* _mesa_function_pool[11240]: VertexAttribs2dvNV (will be remapped) */ + /* _mesa_function_pool[11229]: VertexAttribs2dvNV (will be remapped) */ "iip\0" "glVertexAttribs2dvNV\0" "\0" - /* _mesa_function_pool[11266]: GetQueryObjectui64vEXT (will be remapped) */ + /* _mesa_function_pool[11255]: GetQueryObjectui64vEXT (will be remapped) */ "iip\0" "glGetQueryObjectui64vEXT\0" "\0" - /* _mesa_function_pool[11296]: MultiTexCoord3fvARB (offset 395) */ + /* _mesa_function_pool[11285]: MultiTexCoord3fvARB (offset 395) */ "ip\0" "glMultiTexCoord3fv\0" "glMultiTexCoord3fvARB\0" "\0" - /* _mesa_function_pool[11341]: SecondaryColor3dEXT (will be remapped) */ + /* _mesa_function_pool[11330]: SecondaryColor3dEXT (will be remapped) */ "ddd\0" "glSecondaryColor3d\0" "glSecondaryColor3dEXT\0" "\0" - /* _mesa_function_pool[11387]: Color3ub (offset 19) */ + /* _mesa_function_pool[11376]: Color3ub (offset 19) */ "iii\0" "glColor3ub\0" "\0" - /* _mesa_function_pool[11403]: GetProgramParameterfvNV (will be remapped) */ + /* _mesa_function_pool[11392]: GetProgramParameterfvNV (will be remapped) */ "iiip\0" "glGetProgramParameterfvNV\0" "\0" - /* _mesa_function_pool[11435]: TangentPointerEXT (dynamic) */ + /* _mesa_function_pool[11424]: TangentPointerEXT (dynamic) */ "iip\0" "glTangentPointerEXT\0" "\0" - /* _mesa_function_pool[11460]: Color4fNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[11449]: Color4fNormal3fVertex3fvSUN (dynamic) */ "ppp\0" "glColor4fNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[11495]: GetInstrumentsSGIX (dynamic) */ + /* _mesa_function_pool[11484]: GetInstrumentsSGIX (dynamic) */ "\0" "glGetInstrumentsSGIX\0" "\0" - /* _mesa_function_pool[11518]: GetUniformuivEXT (will be remapped) */ + /* _mesa_function_pool[11507]: GetUniformuivEXT (will be remapped) */ "iip\0" "glGetUniformuivEXT\0" "glGetUniformuiv\0" "\0" - /* _mesa_function_pool[11558]: Color3ui (offset 21) */ + /* _mesa_function_pool[11547]: Color3ui (offset 21) */ "iii\0" "glColor3ui\0" "\0" - /* _mesa_function_pool[11574]: EvalMapsNV (dynamic) */ + /* _mesa_function_pool[11563]: EvalMapsNV (dynamic) */ "ii\0" "glEvalMapsNV\0" "\0" - /* _mesa_function_pool[11591]: TexSubImage2D (offset 333) */ + /* _mesa_function_pool[11580]: TexSubImage2D (offset 333) */ "iiiiiiiip\0" "glTexSubImage2D\0" "glTexSubImage2DEXT\0" "\0" - /* _mesa_function_pool[11637]: FragmentLightivSGIX (dynamic) */ + /* _mesa_function_pool[11626]: FragmentLightivSGIX (dynamic) */ "iip\0" "glFragmentLightivSGIX\0" "\0" - /* _mesa_function_pool[11664]: GetTexParameterPointervAPPLE (will be remapped) */ + /* _mesa_function_pool[11653]: GetTexParameterPointervAPPLE (will be remapped) */ "iip\0" "glGetTexParameterPointervAPPLE\0" "\0" - /* _mesa_function_pool[11700]: TexGenfv (offset 191) */ + /* _mesa_function_pool[11689]: TexGenfv (offset 191) */ "iip\0" "glTexGenfv\0" "\0" - /* _mesa_function_pool[11716]: GetTransformFeedbackVaryingEXT (will be remapped) */ + /* _mesa_function_pool[11705]: GetTransformFeedbackVaryingEXT (will be remapped) */ "iiipppp\0" "glGetTransformFeedbackVaryingEXT\0" "glGetTransformFeedbackVarying\0" "\0" - /* _mesa_function_pool[11788]: VertexAttrib4bvARB (will be remapped) */ + /* _mesa_function_pool[11777]: VertexAttrib4bvARB (will be remapped) */ "ip\0" "glVertexAttrib4bv\0" "glVertexAttrib4bvARB\0" "\0" - /* _mesa_function_pool[11831]: ShaderBinary (will be remapped) */ + /* _mesa_function_pool[11820]: ShaderBinary (will be remapped) */ "ipipi\0" "glShaderBinary\0" "\0" - /* _mesa_function_pool[11853]: GetIntegerIndexedvEXT (will be remapped) */ + /* _mesa_function_pool[11842]: GetIntegerIndexedvEXT (will be remapped) */ "iip\0" "glGetIntegerIndexedvEXT\0" "glGetIntegeri_v\0" "\0" - /* _mesa_function_pool[11898]: MultiTexCoord4sARB (offset 406) */ + /* _mesa_function_pool[11887]: MultiTexCoord4sARB (offset 406) */ "iiiii\0" "glMultiTexCoord4s\0" "glMultiTexCoord4sARB\0" "\0" - /* _mesa_function_pool[11944]: GetFragmentMaterialivSGIX (dynamic) */ + /* _mesa_function_pool[11933]: GetFragmentMaterialivSGIX (dynamic) */ "iip\0" "glGetFragmentMaterialivSGIX\0" "\0" - /* _mesa_function_pool[11977]: WindowPos4dMESA (will be remapped) */ + /* _mesa_function_pool[11966]: WindowPos4dMESA (will be remapped) */ "dddd\0" "glWindowPos4dMESA\0" "\0" - /* _mesa_function_pool[12001]: WeightPointerARB (dynamic) */ + /* _mesa_function_pool[11990]: WeightPointerARB (dynamic) */ "iiip\0" "glWeightPointerARB\0" "\0" - /* _mesa_function_pool[12026]: WindowPos2dMESA (will be remapped) */ + /* _mesa_function_pool[12015]: WindowPos2dMESA (will be remapped) */ "dd\0" "glWindowPos2d\0" "glWindowPos2dARB\0" "glWindowPos2dMESA\0" "\0" - /* _mesa_function_pool[12079]: FramebufferTexture3DEXT (will be remapped) */ + /* _mesa_function_pool[12068]: FramebufferTexture3DEXT (will be remapped) */ "iiiiii\0" "glFramebufferTexture3D\0" "glFramebufferTexture3DEXT\0" "\0" - /* _mesa_function_pool[12136]: BlendEquation (offset 337) */ + /* _mesa_function_pool[12125]: BlendEquation (offset 337) */ "i\0" "glBlendEquation\0" "glBlendEquationEXT\0" "\0" - /* _mesa_function_pool[12174]: VertexAttrib3dNV (will be remapped) */ + /* _mesa_function_pool[12163]: VertexAttrib3dNV (will be remapped) */ "iddd\0" "glVertexAttrib3dNV\0" "\0" - /* _mesa_function_pool[12199]: VertexAttrib3dARB (will be remapped) */ + /* _mesa_function_pool[12188]: VertexAttrib3dARB (will be remapped) */ "iddd\0" "glVertexAttrib3d\0" "glVertexAttrib3dARB\0" "\0" - /* _mesa_function_pool[12242]: VertexAttribI4usvEXT (will be remapped) */ + /* _mesa_function_pool[12231]: VertexAttribI4usvEXT (will be remapped) */ "ip\0" "glVertexAttribI4usvEXT\0" "glVertexAttribI4usv\0" "\0" - /* _mesa_function_pool[12289]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[12278]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */ "ppppp\0" "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[12353]: VertexAttrib4fARB (will be remapped) */ + /* _mesa_function_pool[12342]: VertexAttrib4fARB (will be remapped) */ "iffff\0" "glVertexAttrib4f\0" "glVertexAttrib4fARB\0" "\0" - /* _mesa_function_pool[12397]: GetError (offset 261) */ + /* _mesa_function_pool[12386]: GetError (offset 261) */ "\0" "glGetError\0" "\0" - /* _mesa_function_pool[12410]: IndexFuncEXT (dynamic) */ + /* _mesa_function_pool[12399]: IndexFuncEXT (dynamic) */ "if\0" "glIndexFuncEXT\0" "\0" - /* _mesa_function_pool[12429]: TexCoord3dv (offset 111) */ + /* _mesa_function_pool[12418]: TexCoord3dv (offset 111) */ "p\0" "glTexCoord3dv\0" "\0" - /* _mesa_function_pool[12446]: Indexdv (offset 45) */ + /* _mesa_function_pool[12435]: Indexdv (offset 45) */ "p\0" "glIndexdv\0" "\0" - /* _mesa_function_pool[12459]: FramebufferTexture2DEXT (will be remapped) */ + /* _mesa_function_pool[12448]: FramebufferTexture2DEXT (will be remapped) */ "iiiii\0" "glFramebufferTexture2D\0" "glFramebufferTexture2DEXT\0" "\0" - /* _mesa_function_pool[12515]: Normal3s (offset 60) */ + /* _mesa_function_pool[12504]: Normal3s (offset 60) */ "iii\0" "glNormal3s\0" "\0" - /* _mesa_function_pool[12531]: GetObjectParameterivAPPLE (will be remapped) */ + /* _mesa_function_pool[12520]: GetObjectParameterivAPPLE (will be remapped) */ "iiip\0" "glGetObjectParameterivAPPLE\0" "\0" - /* _mesa_function_pool[12565]: PushName (offset 201) */ + /* _mesa_function_pool[12554]: PushName (offset 201) */ "i\0" "glPushName\0" "\0" - /* _mesa_function_pool[12579]: MultiTexCoord2dvARB (offset 385) */ + /* _mesa_function_pool[12568]: MultiTexCoord2dvARB (offset 385) */ "ip\0" "glMultiTexCoord2dv\0" "glMultiTexCoord2dvARB\0" "\0" - /* _mesa_function_pool[12624]: CullParameterfvEXT (dynamic) */ + /* _mesa_function_pool[12613]: CullParameterfvEXT (dynamic) */ "ip\0" "glCullParameterfvEXT\0" "\0" - /* _mesa_function_pool[12649]: Normal3i (offset 58) */ + /* _mesa_function_pool[12638]: Normal3i (offset 58) */ "iii\0" "glNormal3i\0" "\0" - /* _mesa_function_pool[12665]: ProgramNamedParameter4fvNV (will be remapped) */ + /* _mesa_function_pool[12654]: ProgramNamedParameter4fvNV (will be remapped) */ "iipp\0" "glProgramNamedParameter4fvNV\0" "\0" - /* _mesa_function_pool[12700]: SecondaryColorPointerEXT (will be remapped) */ + /* _mesa_function_pool[12689]: SecondaryColorPointerEXT (will be remapped) */ "iiip\0" "glSecondaryColorPointer\0" "glSecondaryColorPointerEXT\0" "\0" - /* _mesa_function_pool[12757]: VertexAttrib4fvARB (will be remapped) */ + /* _mesa_function_pool[12746]: VertexAttrib4fvARB (will be remapped) */ "ip\0" "glVertexAttrib4fv\0" "glVertexAttrib4fvARB\0" "\0" - /* _mesa_function_pool[12800]: PixelTexGenSGIX (will be remapped) */ + /* _mesa_function_pool[12789]: PixelTexGenSGIX (will be remapped) */ "i\0" "glPixelTexGenSGIX\0" "\0" - /* _mesa_function_pool[12821]: GetActiveUniformARB (will be remapped) */ + /* _mesa_function_pool[12810]: GetActiveUniformARB (will be remapped) */ "iiipppp\0" "glGetActiveUniform\0" "glGetActiveUniformARB\0" "\0" - /* _mesa_function_pool[12871]: ImageTransformParameteriHP (dynamic) */ + /* _mesa_function_pool[12860]: ImageTransformParameteriHP (dynamic) */ "iii\0" "glImageTransformParameteriHP\0" "\0" - /* _mesa_function_pool[12905]: Normal3b (offset 52) */ + /* _mesa_function_pool[12894]: Normal3b (offset 52) */ "iii\0" "glNormal3b\0" "\0" - /* _mesa_function_pool[12921]: Normal3d (offset 54) */ + /* _mesa_function_pool[12910]: Normal3d (offset 54) */ "ddd\0" "glNormal3d\0" "\0" - /* _mesa_function_pool[12937]: Uniform1uiEXT (will be remapped) */ + /* _mesa_function_pool[12926]: Uniform1uiEXT (will be remapped) */ "ii\0" "glUniform1uiEXT\0" "glUniform1ui\0" "\0" - /* _mesa_function_pool[12970]: Normal3f (offset 56) */ + /* _mesa_function_pool[12959]: Normal3f (offset 56) */ "fff\0" "glNormal3f\0" "\0" - /* _mesa_function_pool[12986]: MultiTexCoord1svARB (offset 383) */ + /* _mesa_function_pool[12975]: MultiTexCoord1svARB (offset 383) */ "ip\0" "glMultiTexCoord1sv\0" "glMultiTexCoord1svARB\0" "\0" - /* _mesa_function_pool[13031]: Indexi (offset 48) */ + /* _mesa_function_pool[13020]: Indexi (offset 48) */ "i\0" "glIndexi\0" "\0" - /* _mesa_function_pool[13043]: EGLImageTargetTexture2DOES (will be remapped) */ + /* _mesa_function_pool[13032]: EGLImageTargetTexture2DOES (will be remapped) */ "ip\0" "glEGLImageTargetTexture2DOES\0" "\0" - /* _mesa_function_pool[13076]: EndQueryARB (will be remapped) */ + /* _mesa_function_pool[13065]: EndQueryARB (will be remapped) */ "i\0" "glEndQuery\0" "glEndQueryARB\0" "\0" - /* _mesa_function_pool[13104]: DeleteFencesNV (will be remapped) */ + /* _mesa_function_pool[13093]: DeleteFencesNV (will be remapped) */ "ip\0" "glDeleteFencesNV\0" "\0" - /* _mesa_function_pool[13125]: ColorPointerListIBM (dynamic) */ + /* _mesa_function_pool[13114]: ColorPointerListIBM (dynamic) */ "iiipi\0" "glColorPointerListIBM\0" "\0" - /* _mesa_function_pool[13154]: BindBufferRangeEXT (will be remapped) */ + /* _mesa_function_pool[13143]: BindBufferRangeEXT (will be remapped) */ "iiiii\0" "glBindBufferRangeEXT\0" "glBindBufferRange\0" "\0" - /* _mesa_function_pool[13200]: DepthMask (offset 211) */ + /* _mesa_function_pool[13189]: DepthMask (offset 211) */ "i\0" "glDepthMask\0" "\0" - /* _mesa_function_pool[13215]: IsShader (will be remapped) */ + /* _mesa_function_pool[13204]: IsShader (will be remapped) */ "i\0" "glIsShader\0" "\0" - /* _mesa_function_pool[13229]: Indexf (offset 46) */ + /* _mesa_function_pool[13218]: Indexf (offset 46) */ "f\0" "glIndexf\0" "\0" - /* _mesa_function_pool[13241]: GetImageTransformParameterivHP (dynamic) */ + /* _mesa_function_pool[13230]: GetImageTransformParameterivHP (dynamic) */ "iip\0" "glGetImageTransformParameterivHP\0" "\0" - /* _mesa_function_pool[13279]: Indexd (offset 44) */ + /* _mesa_function_pool[13268]: Indexd (offset 44) */ "d\0" "glIndexd\0" "\0" - /* _mesa_function_pool[13291]: GetMaterialiv (offset 270) */ + /* _mesa_function_pool[13280]: GetMaterialiv (offset 270) */ "iip\0" "glGetMaterialiv\0" "\0" - /* _mesa_function_pool[13312]: StencilOp (offset 244) */ + /* _mesa_function_pool[13301]: StencilOp (offset 244) */ "iii\0" "glStencilOp\0" "\0" - /* _mesa_function_pool[13329]: WindowPos4ivMESA (will be remapped) */ + /* _mesa_function_pool[13318]: WindowPos4ivMESA (will be remapped) */ "p\0" "glWindowPos4ivMESA\0" "\0" - /* _mesa_function_pool[13351]: MultiTexCoord3svARB (offset 399) */ + /* _mesa_function_pool[13340]: MultiTexCoord3svARB (offset 399) */ "ip\0" "glMultiTexCoord3sv\0" "glMultiTexCoord3svARB\0" "\0" - /* _mesa_function_pool[13396]: TexEnvfv (offset 185) */ + /* _mesa_function_pool[13385]: TexEnvfv (offset 185) */ "iip\0" "glTexEnvfv\0" "\0" - /* _mesa_function_pool[13412]: MultiTexCoord4iARB (offset 404) */ + /* _mesa_function_pool[13401]: MultiTexCoord4iARB (offset 404) */ "iiiii\0" "glMultiTexCoord4i\0" "glMultiTexCoord4iARB\0" "\0" - /* _mesa_function_pool[13458]: Indexs (offset 50) */ + /* _mesa_function_pool[13447]: Indexs (offset 50) */ "i\0" "glIndexs\0" "\0" - /* _mesa_function_pool[13470]: Binormal3ivEXT (dynamic) */ + /* _mesa_function_pool[13459]: Binormal3ivEXT (dynamic) */ "p\0" "glBinormal3ivEXT\0" "\0" - /* _mesa_function_pool[13490]: ResizeBuffersMESA (will be remapped) */ + /* _mesa_function_pool[13479]: ResizeBuffersMESA (will be remapped) */ "\0" "glResizeBuffersMESA\0" "\0" - /* _mesa_function_pool[13512]: MultiTexCoordP1uiv (will be remapped) */ + /* _mesa_function_pool[13501]: MultiTexCoordP1uiv (will be remapped) */ "iip\0" "glMultiTexCoordP1uiv\0" "\0" - /* _mesa_function_pool[13538]: BlendFuncSeparateiARB (will be remapped) */ + /* _mesa_function_pool[13527]: BlendFuncSeparateiARB (will be remapped) */ "iiiii\0" "glBlendFuncSeparateiARB\0" "glBlendFuncSeparateIndexedAMD\0" "\0" - /* _mesa_function_pool[13599]: GetUniformivARB (will be remapped) */ + /* _mesa_function_pool[13588]: GetUniformivARB (will be remapped) */ "iip\0" "glGetUniformiv\0" "glGetUniformivARB\0" "\0" - /* _mesa_function_pool[13637]: PixelTexGenParameteriSGIS (will be remapped) */ + /* _mesa_function_pool[13626]: PixelTexGenParameteriSGIS (will be remapped) */ "ii\0" "glPixelTexGenParameteriSGIS\0" "\0" - /* _mesa_function_pool[13669]: VertexPointervINTEL (dynamic) */ + /* _mesa_function_pool[13658]: VertexPointervINTEL (dynamic) */ "iip\0" "glVertexPointervINTEL\0" "\0" - /* _mesa_function_pool[13696]: Vertex2i (offset 130) */ + /* _mesa_function_pool[13685]: Vertex2i (offset 130) */ "ii\0" "glVertex2i\0" "\0" - /* _mesa_function_pool[13711]: LoadMatrixf (offset 291) */ + /* _mesa_function_pool[13700]: LoadMatrixf (offset 291) */ "p\0" "glLoadMatrixf\0" "\0" - /* _mesa_function_pool[13728]: VertexAttribI1uivEXT (will be remapped) */ + /* _mesa_function_pool[13717]: VertexAttribI1uivEXT (will be remapped) */ "ip\0" "glVertexAttribI1uivEXT\0" "glVertexAttribI1uiv\0" "\0" - /* _mesa_function_pool[13775]: Vertex2f (offset 128) */ + /* _mesa_function_pool[13764]: Vertex2f (offset 128) */ "ff\0" "glVertex2f\0" "\0" - /* _mesa_function_pool[13790]: ReplacementCodeuiColor4fNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[13779]: ReplacementCodeuiColor4fNormal3fVertex3fvSUN (dynamic) */ "pppp\0" "glReplacementCodeuiColor4fNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[13843]: Color4bv (offset 26) */ + /* _mesa_function_pool[13832]: Color4bv (offset 26) */ "p\0" "glColor4bv\0" "\0" - /* _mesa_function_pool[13857]: VertexPointer (offset 321) */ + /* _mesa_function_pool[13846]: VertexPointer (offset 321) */ "iiip\0" "glVertexPointer\0" "\0" - /* _mesa_function_pool[13879]: SecondaryColor3uiEXT (will be remapped) */ + /* _mesa_function_pool[13868]: SecondaryColor3uiEXT (will be remapped) */ "iii\0" "glSecondaryColor3ui\0" "glSecondaryColor3uiEXT\0" "\0" - /* _mesa_function_pool[13927]: StartInstrumentsSGIX (dynamic) */ + /* _mesa_function_pool[13916]: StartInstrumentsSGIX (dynamic) */ "\0" "glStartInstrumentsSGIX\0" "\0" - /* _mesa_function_pool[13952]: SecondaryColor3usvEXT (will be remapped) */ + /* _mesa_function_pool[13941]: SecondaryColor3usvEXT (will be remapped) */ "p\0" "glSecondaryColor3usv\0" "glSecondaryColor3usvEXT\0" "\0" - /* _mesa_function_pool[14000]: VertexAttrib2fvNV (will be remapped) */ + /* _mesa_function_pool[13989]: VertexAttrib2fvNV (will be remapped) */ "ip\0" "glVertexAttrib2fvNV\0" "\0" - /* _mesa_function_pool[14024]: ProgramLocalParameter4dvARB (will be remapped) */ + /* _mesa_function_pool[14013]: ProgramLocalParameter4dvARB (will be remapped) */ "iip\0" "glProgramLocalParameter4dvARB\0" "\0" - /* _mesa_function_pool[14059]: DeleteLists (offset 4) */ + /* _mesa_function_pool[14048]: DeleteLists (offset 4) */ "ii\0" "glDeleteLists\0" "\0" - /* _mesa_function_pool[14077]: LogicOp (offset 242) */ + /* _mesa_function_pool[14066]: LogicOp (offset 242) */ "i\0" "glLogicOp\0" "\0" - /* _mesa_function_pool[14090]: MatrixIndexuivARB (dynamic) */ + /* _mesa_function_pool[14079]: MatrixIndexuivARB (dynamic) */ "ip\0" "glMatrixIndexuivARB\0" "\0" - /* _mesa_function_pool[14114]: Vertex2s (offset 132) */ + /* _mesa_function_pool[14103]: Vertex2s (offset 132) */ "ii\0" "glVertex2s\0" "\0" - /* _mesa_function_pool[14129]: RenderbufferStorageMultisample (will be remapped) */ + /* _mesa_function_pool[14118]: RenderbufferStorageMultisample (will be remapped) */ "iiiii\0" "glRenderbufferStorageMultisample\0" "glRenderbufferStorageMultisampleEXT\0" "\0" - /* _mesa_function_pool[14205]: TexCoord4fv (offset 121) */ + /* _mesa_function_pool[14194]: TexCoord4fv (offset 121) */ "p\0" "glTexCoord4fv\0" "\0" - /* _mesa_function_pool[14222]: Tangent3sEXT (dynamic) */ + /* _mesa_function_pool[14211]: Tangent3sEXT (dynamic) */ "iii\0" "glTangent3sEXT\0" "\0" - /* _mesa_function_pool[14242]: GlobalAlphaFactorfSUN (dynamic) */ + /* _mesa_function_pool[14231]: GlobalAlphaFactorfSUN (dynamic) */ "f\0" "glGlobalAlphaFactorfSUN\0" "\0" - /* _mesa_function_pool[14269]: MultiTexCoord3iARB (offset 396) */ + /* _mesa_function_pool[14258]: MultiTexCoord3iARB (offset 396) */ "iiii\0" "glMultiTexCoord3i\0" "glMultiTexCoord3iARB\0" "\0" - /* _mesa_function_pool[14314]: IsProgram (will be remapped) */ + /* _mesa_function_pool[14303]: IsProgram (will be remapped) */ "i\0" "glIsProgram\0" "\0" - /* _mesa_function_pool[14329]: TexCoordPointerListIBM (dynamic) */ + /* _mesa_function_pool[14318]: TexCoordPointerListIBM (dynamic) */ "iiipi\0" "glTexCoordPointerListIBM\0" "\0" - /* _mesa_function_pool[14361]: VertexAttribI4svEXT (will be remapped) */ + /* _mesa_function_pool[14350]: VertexAttribI4svEXT (will be remapped) */ "ip\0" "glVertexAttribI4svEXT\0" "glVertexAttribI4sv\0" "\0" - /* _mesa_function_pool[14406]: GlobalAlphaFactorusSUN (dynamic) */ + /* _mesa_function_pool[14395]: GlobalAlphaFactorusSUN (dynamic) */ "i\0" "glGlobalAlphaFactorusSUN\0" "\0" - /* _mesa_function_pool[14434]: VertexAttrib2dvNV (will be remapped) */ + /* _mesa_function_pool[14423]: VertexAttrib2dvNV (will be remapped) */ "ip\0" "glVertexAttrib2dvNV\0" "\0" - /* _mesa_function_pool[14458]: FramebufferRenderbufferEXT (will be remapped) */ + /* _mesa_function_pool[14447]: FramebufferRenderbufferEXT (will be remapped) */ "iiii\0" "glFramebufferRenderbuffer\0" "glFramebufferRenderbufferEXT\0" "\0" - /* _mesa_function_pool[14519]: ClearBufferuiv (will be remapped) */ + /* _mesa_function_pool[14508]: ClearBufferuiv (will be remapped) */ "iip\0" "glClearBufferuiv\0" "\0" - /* _mesa_function_pool[14541]: VertexAttrib1dvNV (will be remapped) */ + /* _mesa_function_pool[14530]: VertexAttrib1dvNV (will be remapped) */ "ip\0" "glVertexAttrib1dvNV\0" "\0" - /* _mesa_function_pool[14565]: GenTextures (offset 328) */ + /* _mesa_function_pool[14554]: GenTextures (offset 328) */ "ip\0" "glGenTextures\0" "glGenTexturesEXT\0" "\0" - /* _mesa_function_pool[14600]: FramebufferTextureARB (will be remapped) */ + /* _mesa_function_pool[14589]: FramebufferTextureARB (will be remapped) */ "iiii\0" "glFramebufferTextureARB\0" "\0" - /* _mesa_function_pool[14630]: SetFenceNV (will be remapped) */ + /* _mesa_function_pool[14619]: SetFenceNV (will be remapped) */ "ii\0" "glSetFenceNV\0" "\0" - /* _mesa_function_pool[14647]: FramebufferTexture1DEXT (will be remapped) */ + /* _mesa_function_pool[14636]: FramebufferTexture1DEXT (will be remapped) */ "iiiii\0" "glFramebufferTexture1D\0" "glFramebufferTexture1DEXT\0" "\0" - /* _mesa_function_pool[14703]: GetCombinerOutputParameterivNV (will be remapped) */ + /* _mesa_function_pool[14692]: GetCombinerOutputParameterivNV (will be remapped) */ "iiip\0" "glGetCombinerOutputParameterivNV\0" "\0" - /* _mesa_function_pool[14742]: PixelTexGenParameterivSGIS (will be remapped) */ + /* _mesa_function_pool[14731]: MultiModeDrawArraysIBM (will be remapped) */ + "pppii\0" + "glMultiModeDrawArraysIBM\0" + "\0" + /* _mesa_function_pool[14763]: PixelTexGenParameterivSGIS (will be remapped) */ "ip\0" "glPixelTexGenParameterivSGIS\0" "\0" - /* _mesa_function_pool[14775]: TextureNormalEXT (dynamic) */ + /* _mesa_function_pool[14796]: TextureNormalEXT (dynamic) */ "i\0" "glTextureNormalEXT\0" "\0" - /* _mesa_function_pool[14797]: IndexPointerListIBM (dynamic) */ + /* _mesa_function_pool[14818]: IndexPointerListIBM (dynamic) */ "iipi\0" "glIndexPointerListIBM\0" "\0" - /* _mesa_function_pool[14825]: WeightfvARB (dynamic) */ + /* _mesa_function_pool[14846]: WeightfvARB (dynamic) */ "ip\0" "glWeightfvARB\0" "\0" - /* _mesa_function_pool[14843]: MultiTexCoordP3ui (will be remapped) */ + /* _mesa_function_pool[14864]: GetCombinerOutputParameterfvNV (will be remapped) */ + "iiip\0" + "glGetCombinerOutputParameterfvNV\0" + "\0" + /* _mesa_function_pool[14903]: MultiTexCoordP3ui (will be remapped) */ "iii\0" "glMultiTexCoordP3ui\0" "\0" - /* _mesa_function_pool[14868]: RasterPos2sv (offset 69) */ + /* _mesa_function_pool[14928]: RasterPos2sv (offset 69) */ "p\0" "glRasterPos2sv\0" "\0" - /* _mesa_function_pool[14886]: Color4ubv (offset 36) */ + /* _mesa_function_pool[14946]: Color4ubv (offset 36) */ "p\0" "glColor4ubv\0" "\0" - /* _mesa_function_pool[14901]: DrawBuffer (offset 202) */ + /* _mesa_function_pool[14961]: DrawBuffer (offset 202) */ "i\0" "glDrawBuffer\0" "\0" - /* _mesa_function_pool[14917]: TexCoord2fv (offset 105) */ + /* _mesa_function_pool[14977]: TexCoord2fv (offset 105) */ "p\0" "glTexCoord2fv\0" "\0" - /* _mesa_function_pool[14934]: WindowPos4fMESA (will be remapped) */ + /* _mesa_function_pool[14994]: WindowPos4fMESA (will be remapped) */ "ffff\0" "glWindowPos4fMESA\0" "\0" - /* _mesa_function_pool[14958]: TexCoord1sv (offset 101) */ + /* _mesa_function_pool[15018]: TexCoord1sv (offset 101) */ "p\0" "glTexCoord1sv\0" "\0" - /* _mesa_function_pool[14975]: WindowPos3dvMESA (will be remapped) */ + /* _mesa_function_pool[15035]: WindowPos3dvMESA (will be remapped) */ "p\0" "glWindowPos3dv\0" "glWindowPos3dvARB\0" "glWindowPos3dvMESA\0" "\0" - /* _mesa_function_pool[15030]: VertexAttribP1uiv (will be remapped) */ + /* _mesa_function_pool[15090]: VertexAttribP1uiv (will be remapped) */ "iiip\0" "glVertexAttribP1uiv\0" "\0" - /* _mesa_function_pool[15056]: VertexAttribP4ui (will be remapped) */ + /* _mesa_function_pool[15116]: VertexAttribP4ui (will be remapped) */ "iiii\0" "glVertexAttribP4ui\0" "\0" - /* _mesa_function_pool[15081]: DepthFunc (offset 245) */ + /* _mesa_function_pool[15141]: DepthFunc (offset 245) */ "i\0" "glDepthFunc\0" "\0" - /* _mesa_function_pool[15096]: PixelMapusv (offset 253) */ + /* _mesa_function_pool[15156]: PixelMapusv (offset 253) */ "iip\0" "glPixelMapusv\0" "\0" - /* _mesa_function_pool[15115]: GetQueryObjecti64vEXT (will be remapped) */ + /* _mesa_function_pool[15175]: GetQueryObjecti64vEXT (will be remapped) */ "iip\0" "glGetQueryObjecti64vEXT\0" "\0" - /* _mesa_function_pool[15144]: MultiTexCoord1dARB (offset 376) */ + /* _mesa_function_pool[15204]: MultiTexCoord1dARB (offset 376) */ "id\0" "glMultiTexCoord1d\0" "glMultiTexCoord1dARB\0" "\0" - /* _mesa_function_pool[15187]: PointParameterivNV (will be remapped) */ + /* _mesa_function_pool[15247]: PointParameterivNV (will be remapped) */ "ip\0" "glPointParameteriv\0" "glPointParameterivNV\0" "\0" - /* _mesa_function_pool[15231]: IsSampler (will be remapped) */ + /* _mesa_function_pool[15291]: IsSampler (will be remapped) */ "i\0" "glIsSampler\0" "\0" - /* _mesa_function_pool[15246]: BlendFunc (offset 241) */ + /* _mesa_function_pool[15306]: BlendFunc (offset 241) */ "ii\0" "glBlendFunc\0" "\0" - /* _mesa_function_pool[15262]: EndTransformFeedbackEXT (will be remapped) */ + /* _mesa_function_pool[15322]: EndTransformFeedbackEXT (will be remapped) */ "\0" "glEndTransformFeedbackEXT\0" "glEndTransformFeedback\0" "\0" - /* _mesa_function_pool[15313]: Uniform2fvARB (will be remapped) */ + /* _mesa_function_pool[15373]: Uniform2fvARB (will be remapped) */ "iip\0" "glUniform2fv\0" "glUniform2fvARB\0" "\0" - /* _mesa_function_pool[15347]: BufferParameteriAPPLE (will be remapped) */ + /* _mesa_function_pool[15407]: BufferParameteriAPPLE (will be remapped) */ "iii\0" "glBufferParameteriAPPLE\0" "\0" - /* _mesa_function_pool[15376]: MultiTexCoord3dvARB (offset 393) */ + /* _mesa_function_pool[15436]: MultiTexCoord3dvARB (offset 393) */ "ip\0" "glMultiTexCoord3dv\0" "glMultiTexCoord3dvARB\0" "\0" - /* _mesa_function_pool[15421]: ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[15481]: ReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN (dynamic) */ "pppp\0" "glReplacementCodeuiTexCoord2fNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[15477]: DeleteObjectARB (will be remapped) */ + /* _mesa_function_pool[15537]: DeleteObjectARB (will be remapped) */ "i\0" "glDeleteObjectARB\0" "\0" - /* _mesa_function_pool[15498]: GetShaderPrecisionFormat (will be remapped) */ + /* _mesa_function_pool[15558]: GetShaderPrecisionFormat (will be remapped) */ "iipp\0" "glGetShaderPrecisionFormat\0" "\0" - /* _mesa_function_pool[15531]: MatrixIndexPointerARB (dynamic) */ + /* _mesa_function_pool[15591]: MatrixIndexPointerARB (dynamic) */ "iiip\0" "glMatrixIndexPointerARB\0" "\0" - /* _mesa_function_pool[15561]: ProgramNamedParameter4dvNV (will be remapped) */ + /* _mesa_function_pool[15621]: ProgramNamedParameter4dvNV (will be remapped) */ "iipp\0" "glProgramNamedParameter4dvNV\0" "\0" - /* _mesa_function_pool[15596]: Tangent3fvEXT (dynamic) */ + /* _mesa_function_pool[15656]: Tangent3fvEXT (dynamic) */ "p\0" "glTangent3fvEXT\0" "\0" - /* _mesa_function_pool[15615]: Flush (offset 217) */ + /* _mesa_function_pool[15675]: Flush (offset 217) */ "\0" "glFlush\0" "\0" - /* _mesa_function_pool[15625]: Color4uiv (offset 38) */ + /* _mesa_function_pool[15685]: Color4uiv (offset 38) */ "p\0" "glColor4uiv\0" "\0" - /* _mesa_function_pool[15640]: VertexAttribI4iEXT (will be remapped) */ + /* _mesa_function_pool[15700]: VertexAttribI4iEXT (will be remapped) */ "iiiii\0" "glVertexAttribI4iEXT\0" "glVertexAttribI4i\0" "\0" - /* _mesa_function_pool[15686]: GenVertexArrays (will be remapped) */ + /* _mesa_function_pool[15746]: GenVertexArrays (will be remapped) */ "ip\0" "glGenVertexArrays\0" "\0" - /* _mesa_function_pool[15708]: Uniform3uivEXT (will be remapped) */ + /* _mesa_function_pool[15768]: Uniform3uivEXT (will be remapped) */ "iip\0" "glUniform3uivEXT\0" "glUniform3uiv\0" "\0" - /* _mesa_function_pool[15744]: RasterPos3sv (offset 77) */ + /* _mesa_function_pool[15804]: RasterPos3sv (offset 77) */ "p\0" "glRasterPos3sv\0" "\0" - /* _mesa_function_pool[15762]: TexCoordP2ui (will be remapped) */ + /* _mesa_function_pool[15822]: TexCoordP2ui (will be remapped) */ "ii\0" "glTexCoordP2ui\0" "\0" - /* _mesa_function_pool[15781]: BindFramebufferEXT (will be remapped) */ + /* _mesa_function_pool[15841]: BindFramebufferEXT (will be remapped) */ "ii\0" "glBindFramebuffer\0" "glBindFramebufferEXT\0" "\0" - /* _mesa_function_pool[15824]: ReferencePlaneSGIX (dynamic) */ + /* _mesa_function_pool[15884]: ReferencePlaneSGIX (dynamic) */ "p\0" "glReferencePlaneSGIX\0" "\0" - /* _mesa_function_pool[15848]: PushAttrib (offset 219) */ + /* _mesa_function_pool[15908]: PushAttrib (offset 219) */ "i\0" "glPushAttrib\0" "\0" - /* _mesa_function_pool[15864]: RasterPos2i (offset 66) */ + /* _mesa_function_pool[15924]: RasterPos2i (offset 66) */ "ii\0" "glRasterPos2i\0" "\0" - /* _mesa_function_pool[15882]: ValidateProgramARB (will be remapped) */ + /* _mesa_function_pool[15942]: ValidateProgramARB (will be remapped) */ "i\0" "glValidateProgram\0" "glValidateProgramARB\0" "\0" - /* _mesa_function_pool[15924]: TexParameteriv (offset 181) */ + /* _mesa_function_pool[15984]: TexParameteriv (offset 181) */ "iip\0" "glTexParameteriv\0" "\0" - /* _mesa_function_pool[15946]: UnlockArraysEXT (will be remapped) */ + /* _mesa_function_pool[16006]: UnlockArraysEXT (will be remapped) */ "\0" "glUnlockArraysEXT\0" "\0" - /* _mesa_function_pool[15966]: TexCoord2fColor3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[16026]: TexCoord2fColor3fVertex3fSUN (dynamic) */ "ffffffff\0" "glTexCoord2fColor3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[16007]: WindowPos3fvMESA (will be remapped) */ + /* _mesa_function_pool[16067]: WindowPos3fvMESA (will be remapped) */ "p\0" "glWindowPos3fv\0" "glWindowPos3fvARB\0" "glWindowPos3fvMESA\0" "\0" - /* _mesa_function_pool[16062]: RasterPos2f (offset 64) */ + /* _mesa_function_pool[16122]: RasterPos2f (offset 64) */ "ff\0" "glRasterPos2f\0" "\0" - /* _mesa_function_pool[16080]: VertexAttrib1svNV (will be remapped) */ + /* _mesa_function_pool[16140]: VertexAttrib1svNV (will be remapped) */ "ip\0" "glVertexAttrib1svNV\0" "\0" - /* _mesa_function_pool[16104]: RasterPos2d (offset 62) */ + /* _mesa_function_pool[16164]: RasterPos2d (offset 62) */ "dd\0" "glRasterPos2d\0" "\0" - /* _mesa_function_pool[16122]: RasterPos3fv (offset 73) */ + /* _mesa_function_pool[16182]: RasterPos3fv (offset 73) */ "p\0" "glRasterPos3fv\0" "\0" - /* _mesa_function_pool[16140]: CopyTexSubImage3D (offset 373) */ + /* _mesa_function_pool[16200]: CopyTexSubImage3D (offset 373) */ "iiiiiiiii\0" "glCopyTexSubImage3D\0" "glCopyTexSubImage3DEXT\0" "\0" - /* _mesa_function_pool[16194]: VertexAttrib2dARB (will be remapped) */ + /* _mesa_function_pool[16254]: VertexAttrib2dARB (will be remapped) */ "idd\0" "glVertexAttrib2d\0" "glVertexAttrib2dARB\0" "\0" - /* _mesa_function_pool[16236]: Color4ub (offset 35) */ + /* _mesa_function_pool[16296]: Color4ub (offset 35) */ "iiii\0" "glColor4ub\0" "\0" - /* _mesa_function_pool[16253]: GetInteger64v (will be remapped) */ + /* _mesa_function_pool[16313]: GetInteger64v (will be remapped) */ "ip\0" "glGetInteger64v\0" "\0" - /* _mesa_function_pool[16273]: TextureColorMaskSGIS (dynamic) */ + /* _mesa_function_pool[16333]: TextureColorMaskSGIS (dynamic) */ "iiii\0" "glTextureColorMaskSGIS\0" "\0" - /* _mesa_function_pool[16302]: RasterPos2s (offset 68) */ + /* _mesa_function_pool[16362]: RasterPos2s (offset 68) */ "ii\0" "glRasterPos2s\0" "\0" - /* _mesa_function_pool[16320]: GetColorTable (offset 343) */ + /* _mesa_function_pool[16380]: GetColorTable (offset 343) */ "iiip\0" "glGetColorTable\0" "glGetColorTableSGI\0" "glGetColorTableEXT\0" "\0" - /* _mesa_function_pool[16380]: SelectBuffer (offset 195) */ + /* _mesa_function_pool[16440]: SelectBuffer (offset 195) */ "ip\0" "glSelectBuffer\0" "\0" - /* _mesa_function_pool[16399]: Indexiv (offset 49) */ + /* _mesa_function_pool[16459]: Indexiv (offset 49) */ "p\0" "glIndexiv\0" "\0" - /* _mesa_function_pool[16412]: TexCoord3i (offset 114) */ + /* _mesa_function_pool[16472]: TexCoord3i (offset 114) */ "iii\0" "glTexCoord3i\0" "\0" - /* _mesa_function_pool[16430]: CopyColorTable (offset 342) */ + /* _mesa_function_pool[16490]: CopyColorTable (offset 342) */ "iiiii\0" "glCopyColorTable\0" "glCopyColorTableSGI\0" "\0" - /* _mesa_function_pool[16474]: GetHistogramParameterfv (offset 362) */ + /* _mesa_function_pool[16534]: GetHistogramParameterfv (offset 362) */ "iip\0" "glGetHistogramParameterfv\0" "glGetHistogramParameterfvEXT\0" "\0" - /* _mesa_function_pool[16534]: Frustum (offset 289) */ + /* _mesa_function_pool[16594]: Frustum (offset 289) */ "dddddd\0" "glFrustum\0" "\0" - /* _mesa_function_pool[16552]: GetString (offset 275) */ + /* _mesa_function_pool[16612]: GetString (offset 275) */ "i\0" "glGetString\0" "\0" - /* _mesa_function_pool[16567]: ColorPointervINTEL (dynamic) */ + /* _mesa_function_pool[16627]: ColorPointervINTEL (dynamic) */ "iip\0" "glColorPointervINTEL\0" "\0" - /* _mesa_function_pool[16593]: TexEnvf (offset 184) */ + /* _mesa_function_pool[16653]: TexEnvf (offset 184) */ "iif\0" "glTexEnvf\0" "\0" - /* _mesa_function_pool[16608]: VertexP2uiv (will be remapped) */ + /* _mesa_function_pool[16668]: VertexP2uiv (will be remapped) */ "ip\0" "glVertexP2uiv\0" "\0" - /* _mesa_function_pool[16626]: TexCoord3d (offset 110) */ + /* _mesa_function_pool[16686]: TexCoord3d (offset 110) */ "ddd\0" "glTexCoord3d\0" "\0" - /* _mesa_function_pool[16644]: AlphaFragmentOp1ATI (will be remapped) */ + /* _mesa_function_pool[16704]: AlphaFragmentOp1ATI (will be remapped) */ "iiiiii\0" "glAlphaFragmentOp1ATI\0" "\0" - /* _mesa_function_pool[16674]: TexCoord3f (offset 112) */ + /* _mesa_function_pool[16734]: TexCoord3f (offset 112) */ "fff\0" "glTexCoord3f\0" "\0" - /* _mesa_function_pool[16692]: MultiTexCoord3ivARB (offset 397) */ + /* _mesa_function_pool[16752]: MultiTexCoord3ivARB (offset 397) */ "ip\0" "glMultiTexCoord3iv\0" "glMultiTexCoord3ivARB\0" "\0" - /* _mesa_function_pool[16737]: MultiTexCoord2sARB (offset 390) */ + /* _mesa_function_pool[16797]: MultiTexCoord2sARB (offset 390) */ "iii\0" "glMultiTexCoord2s\0" "glMultiTexCoord2sARB\0" "\0" - /* _mesa_function_pool[16781]: VertexAttrib1dvARB (will be remapped) */ + /* _mesa_function_pool[16841]: VertexAttrib1dvARB (will be remapped) */ "ip\0" "glVertexAttrib1dv\0" "glVertexAttrib1dvARB\0" "\0" - /* _mesa_function_pool[16824]: GetnHistogramARB (will be remapped) */ + /* _mesa_function_pool[16884]: GetnHistogramARB (will be remapped) */ "iiiiip\0" "glGetnHistogramARB\0" "\0" - /* _mesa_function_pool[16851]: DeleteTextures (offset 327) */ + /* _mesa_function_pool[16911]: DeleteTextures (offset 327) */ "ip\0" "glDeleteTextures\0" "glDeleteTexturesEXT\0" "\0" - /* _mesa_function_pool[16892]: TexCoordPointerEXT (will be remapped) */ + /* _mesa_function_pool[16952]: TexCoordPointerEXT (will be remapped) */ "iiiip\0" "glTexCoordPointerEXT\0" "\0" - /* _mesa_function_pool[16920]: TexSubImage4DSGIS (dynamic) */ + /* _mesa_function_pool[16980]: TexSubImage4DSGIS (dynamic) */ "iiiiiiiiiiiip\0" "glTexSubImage4DSGIS\0" "\0" - /* _mesa_function_pool[16955]: TexCoord3s (offset 116) */ + /* _mesa_function_pool[17015]: TexCoord3s (offset 116) */ "iii\0" "glTexCoord3s\0" "\0" - /* _mesa_function_pool[16973]: GetTexLevelParameteriv (offset 285) */ + /* _mesa_function_pool[17033]: GetTexLevelParameteriv (offset 285) */ "iiip\0" "glGetTexLevelParameteriv\0" "\0" - /* _mesa_function_pool[17004]: CombinerStageParameterfvNV (dynamic) */ + /* _mesa_function_pool[17064]: CombinerStageParameterfvNV (dynamic) */ "iip\0" "glCombinerStageParameterfvNV\0" "\0" - /* _mesa_function_pool[17038]: VertexAttribP4uiv (will be remapped) */ + /* _mesa_function_pool[17098]: VertexAttribP4uiv (will be remapped) */ "iiip\0" "glVertexAttribP4uiv\0" "\0" - /* _mesa_function_pool[17064]: StopInstrumentsSGIX (dynamic) */ + /* _mesa_function_pool[17124]: StopInstrumentsSGIX (dynamic) */ "i\0" "glStopInstrumentsSGIX\0" "\0" - /* _mesa_function_pool[17089]: TexCoord4fColor4fNormal3fVertex4fSUN (dynamic) */ + /* _mesa_function_pool[17149]: TexCoord4fColor4fNormal3fVertex4fSUN (dynamic) */ "fffffffffffffff\0" "glTexCoord4fColor4fNormal3fVertex4fSUN\0" "\0" - /* _mesa_function_pool[17145]: ClearAccum (offset 204) */ + /* _mesa_function_pool[17205]: ClearAccum (offset 204) */ "ffff\0" "glClearAccum\0" "\0" - /* _mesa_function_pool[17164]: DeformSGIX (dynamic) */ + /* _mesa_function_pool[17224]: DeformSGIX (dynamic) */ "i\0" "glDeformSGIX\0" "\0" - /* _mesa_function_pool[17180]: GetVertexAttribfvARB (will be remapped) */ + /* _mesa_function_pool[17240]: GetVertexAttribfvARB (will be remapped) */ "iip\0" "glGetVertexAttribfv\0" "glGetVertexAttribfvARB\0" "\0" - /* _mesa_function_pool[17228]: SecondaryColor3ivEXT (will be remapped) */ + /* _mesa_function_pool[17288]: SecondaryColor3ivEXT (will be remapped) */ "p\0" "glSecondaryColor3iv\0" "glSecondaryColor3ivEXT\0" "\0" - /* _mesa_function_pool[17274]: TexCoord4iv (offset 123) */ + /* _mesa_function_pool[17334]: TexCoord4iv (offset 123) */ "p\0" "glTexCoord4iv\0" "\0" - /* _mesa_function_pool[17291]: VertexAttribI4uiEXT (will be remapped) */ + /* _mesa_function_pool[17351]: VertexAttribI4uiEXT (will be remapped) */ "iiiii\0" "glVertexAttribI4uiEXT\0" "glVertexAttribI4ui\0" "\0" - /* _mesa_function_pool[17339]: GetFragmentMaterialfvSGIX (dynamic) */ + /* _mesa_function_pool[17399]: GetFragmentMaterialfvSGIX (dynamic) */ "iip\0" "glGetFragmentMaterialfvSGIX\0" "\0" - /* _mesa_function_pool[17372]: UniformMatrix4x2fv (will be remapped) */ + /* _mesa_function_pool[17432]: UniformMatrix4x2fv (will be remapped) */ "iiip\0" "glUniformMatrix4x2fv\0" "\0" - /* _mesa_function_pool[17399]: GetDetailTexFuncSGIS (dynamic) */ + /* _mesa_function_pool[17459]: GetDetailTexFuncSGIS (dynamic) */ "ip\0" "glGetDetailTexFuncSGIS\0" "\0" - /* _mesa_function_pool[17426]: GetCombinerStageParameterfvNV (dynamic) */ + /* _mesa_function_pool[17486]: GetCombinerStageParameterfvNV (dynamic) */ "iip\0" "glGetCombinerStageParameterfvNV\0" "\0" - /* _mesa_function_pool[17463]: SamplerParameterIiv (will be remapped) */ + /* _mesa_function_pool[17523]: SamplerParameterIiv (will be remapped) */ "iip\0" "glSamplerParameterIiv\0" "\0" - /* _mesa_function_pool[17490]: PolygonOffset (offset 319) */ + /* _mesa_function_pool[17550]: PolygonOffset (offset 319) */ "ff\0" "glPolygonOffset\0" "\0" - /* _mesa_function_pool[17510]: BindVertexArray (will be remapped) */ + /* _mesa_function_pool[17570]: BindVertexArray (will be remapped) */ "i\0" "glBindVertexArray\0" "\0" - /* _mesa_function_pool[17531]: Color4ubVertex2fvSUN (dynamic) */ + /* _mesa_function_pool[17591]: Color4ubVertex2fvSUN (dynamic) */ "pp\0" "glColor4ubVertex2fvSUN\0" "\0" - /* _mesa_function_pool[17558]: VertexP3uiv (will be remapped) */ + /* _mesa_function_pool[17618]: VertexP3uiv (will be remapped) */ "ip\0" "glVertexP3uiv\0" "\0" - /* _mesa_function_pool[17576]: Rectd (offset 86) */ + /* _mesa_function_pool[17636]: Rectd (offset 86) */ "dddd\0" "glRectd\0" "\0" - /* _mesa_function_pool[17590]: TexFilterFuncSGIS (dynamic) */ + /* _mesa_function_pool[17650]: TexFilterFuncSGIS (dynamic) */ "iiip\0" "glTexFilterFuncSGIS\0" "\0" - /* _mesa_function_pool[17616]: TextureBarrierNV (will be remapped) */ + /* _mesa_function_pool[17676]: TextureBarrierNV (will be remapped) */ "\0" "glTextureBarrierNV\0" "\0" - /* _mesa_function_pool[17637]: SamplerParameterfv (will be remapped) */ + /* _mesa_function_pool[17697]: SamplerParameterfv (will be remapped) */ "iip\0" "glSamplerParameterfv\0" "\0" - /* _mesa_function_pool[17663]: ColorMaskIndexedEXT (will be remapped) */ - "iiiii\0" - "glColorMaskIndexedEXT\0" - "glColorMaski\0" + /* _mesa_function_pool[17723]: VertexAttribI4ubvEXT (will be remapped) */ + "ip\0" + "glVertexAttribI4ubvEXT\0" + "glVertexAttribI4ubv\0" "\0" - /* _mesa_function_pool[17705]: GetAttribLocationARB (will be remapped) */ + /* _mesa_function_pool[17770]: GetAttribLocationARB (will be remapped) */ "ip\0" "glGetAttribLocation\0" "glGetAttribLocationARB\0" "\0" - /* _mesa_function_pool[17752]: RasterPos3i (offset 74) */ + /* _mesa_function_pool[17817]: RasterPos3i (offset 74) */ "iii\0" "glRasterPos3i\0" "\0" - /* _mesa_function_pool[17771]: VertexAttrib4ubvARB (will be remapped) */ + /* _mesa_function_pool[17836]: BlendEquationSeparateiARB (will be remapped) */ + "iii\0" + "glBlendEquationSeparateiARB\0" + "glBlendEquationSeparateIndexedAMD\0" + "\0" + /* _mesa_function_pool[17903]: VertexAttrib4ubvARB (will be remapped) */ "ip\0" "glVertexAttrib4ubv\0" "glVertexAttrib4ubvARB\0" "\0" - /* _mesa_function_pool[17816]: DetailTexFuncSGIS (dynamic) */ + /* _mesa_function_pool[17948]: DetailTexFuncSGIS (dynamic) */ "iip\0" "glDetailTexFuncSGIS\0" "\0" - /* _mesa_function_pool[17841]: Normal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[17973]: Normal3fVertex3fSUN (dynamic) */ "ffffff\0" "glNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[17871]: CopyTexImage2D (offset 324) */ + /* _mesa_function_pool[18003]: CopyTexImage2D (offset 324) */ "iiiiiiii\0" "glCopyTexImage2D\0" "glCopyTexImage2DEXT\0" "\0" - /* _mesa_function_pool[17918]: GetBufferPointervARB (will be remapped) */ + /* _mesa_function_pool[18050]: GetBufferPointervARB (will be remapped) */ "iip\0" "glGetBufferPointerv\0" "glGetBufferPointervARB\0" "\0" - /* _mesa_function_pool[17966]: ProgramEnvParameter4fARB (will be remapped) */ + /* _mesa_function_pool[18098]: ProgramEnvParameter4fARB (will be remapped) */ "iiffff\0" "glProgramEnvParameter4fARB\0" "glProgramParameter4fNV\0" "\0" - /* _mesa_function_pool[18024]: Uniform3ivARB (will be remapped) */ + /* _mesa_function_pool[18156]: Uniform3ivARB (will be remapped) */ "iip\0" "glUniform3iv\0" "glUniform3ivARB\0" "\0" - /* _mesa_function_pool[18058]: Lightfv (offset 160) */ + /* _mesa_function_pool[18190]: Lightfv (offset 160) */ "iip\0" "glLightfv\0" "\0" - /* _mesa_function_pool[18073]: PrimitiveRestartIndexNV (will be remapped) */ + /* _mesa_function_pool[18205]: PrimitiveRestartIndexNV (will be remapped) */ "i\0" "glPrimitiveRestartIndexNV\0" "glPrimitiveRestartIndex\0" "\0" - /* _mesa_function_pool[18126]: ClearDepth (offset 208) */ + /* _mesa_function_pool[18258]: ClearDepth (offset 208) */ "d\0" "glClearDepth\0" "\0" - /* _mesa_function_pool[18142]: GetFenceivNV (will be remapped) */ + /* _mesa_function_pool[18274]: GetFenceivNV (will be remapped) */ "iip\0" "glGetFenceivNV\0" "\0" - /* _mesa_function_pool[18162]: WindowPos4dvMESA (will be remapped) */ + /* _mesa_function_pool[18294]: WindowPos4dvMESA (will be remapped) */ "p\0" "glWindowPos4dvMESA\0" "\0" - /* _mesa_function_pool[18184]: ColorSubTable (offset 346) */ + /* _mesa_function_pool[18316]: ColorSubTable (offset 346) */ "iiiiip\0" "glColorSubTable\0" "glColorSubTableEXT\0" "\0" - /* _mesa_function_pool[18227]: Color4fv (offset 30) */ + /* _mesa_function_pool[18359]: Color4fv (offset 30) */ "p\0" "glColor4fv\0" "\0" - /* _mesa_function_pool[18241]: MultiTexCoord4ivARB (offset 405) */ + /* _mesa_function_pool[18373]: MultiTexCoord4ivARB (offset 405) */ "ip\0" "glMultiTexCoord4iv\0" "glMultiTexCoord4ivARB\0" "\0" - /* _mesa_function_pool[18286]: GetnMinmaxARB (will be remapped) */ + /* _mesa_function_pool[18418]: GetnMinmaxARB (will be remapped) */ "iiiiip\0" "glGetnMinmaxARB\0" "\0" - /* _mesa_function_pool[18310]: ProgramLocalParameters4fvEXT (will be remapped) */ + /* _mesa_function_pool[18442]: ProgramLocalParameters4fvEXT (will be remapped) */ "iiip\0" "glProgramLocalParameters4fvEXT\0" "\0" - /* _mesa_function_pool[18347]: ColorPointer (offset 308) */ + /* _mesa_function_pool[18479]: ColorPointer (offset 308) */ "iiip\0" "glColorPointer\0" "\0" - /* _mesa_function_pool[18368]: Rects (offset 92) */ + /* _mesa_function_pool[18500]: Rects (offset 92) */ "iiii\0" "glRects\0" "\0" - /* _mesa_function_pool[18382]: GetMapAttribParameterfvNV (dynamic) */ + /* _mesa_function_pool[18514]: GetMapAttribParameterfvNV (dynamic) */ "iiip\0" "glGetMapAttribParameterfvNV\0" "\0" - /* _mesa_function_pool[18416]: CreateShaderProgramEXT (will be remapped) */ + /* _mesa_function_pool[18548]: CreateShaderProgramEXT (will be remapped) */ "ip\0" "glCreateShaderProgramEXT\0" "\0" - /* _mesa_function_pool[18445]: ActiveProgramEXT (will be remapped) */ + /* _mesa_function_pool[18577]: ActiveProgramEXT (will be remapped) */ "i\0" "glActiveProgramEXT\0" "\0" - /* _mesa_function_pool[18467]: Lightiv (offset 162) */ + /* _mesa_function_pool[18599]: Lightiv (offset 162) */ "iip\0" "glLightiv\0" "\0" - /* _mesa_function_pool[18482]: VertexAttrib4sARB (will be remapped) */ + /* _mesa_function_pool[18614]: VertexAttrib4sARB (will be remapped) */ "iiiii\0" "glVertexAttrib4s\0" "glVertexAttrib4sARB\0" "\0" - /* _mesa_function_pool[18526]: GetQueryObjectuivARB (will be remapped) */ + /* _mesa_function_pool[18658]: GetQueryObjectuivARB (will be remapped) */ "iip\0" "glGetQueryObjectuiv\0" "glGetQueryObjectuivARB\0" "\0" - /* _mesa_function_pool[18574]: GetTexParameteriv (offset 283) */ + /* _mesa_function_pool[18706]: GetTexParameteriv (offset 283) */ "iip\0" "glGetTexParameteriv\0" "\0" - /* _mesa_function_pool[18599]: MapParameterivNV (dynamic) */ + /* _mesa_function_pool[18731]: MapParameterivNV (dynamic) */ "iip\0" "glMapParameterivNV\0" "\0" - /* _mesa_function_pool[18623]: GenRenderbuffersEXT (will be remapped) */ + /* _mesa_function_pool[18755]: GenRenderbuffersEXT (will be remapped) */ "ip\0" "glGenRenderbuffers\0" "glGenRenderbuffersEXT\0" "\0" - /* _mesa_function_pool[18668]: ClearBufferfv (will be remapped) */ + /* _mesa_function_pool[18800]: ClearBufferfv (will be remapped) */ "iip\0" "glClearBufferfv\0" "\0" - /* _mesa_function_pool[18689]: VertexAttrib2dvARB (will be remapped) */ + /* _mesa_function_pool[18821]: VertexAttrib2dvARB (will be remapped) */ "ip\0" "glVertexAttrib2dv\0" "glVertexAttrib2dvARB\0" "\0" - /* _mesa_function_pool[18732]: EdgeFlagPointerEXT (will be remapped) */ + /* _mesa_function_pool[18864]: EdgeFlagPointerEXT (will be remapped) */ "iip\0" "glEdgeFlagPointerEXT\0" "\0" - /* _mesa_function_pool[18758]: VertexAttribs2svNV (will be remapped) */ + /* _mesa_function_pool[18890]: VertexAttribs2svNV (will be remapped) */ "iip\0" "glVertexAttribs2svNV\0" "\0" - /* _mesa_function_pool[18784]: WeightbvARB (dynamic) */ + /* _mesa_function_pool[18916]: WeightbvARB (dynamic) */ "ip\0" "glWeightbvARB\0" "\0" - /* _mesa_function_pool[18802]: VertexAttrib2fvARB (will be remapped) */ + /* _mesa_function_pool[18934]: VertexAttrib2fvARB (will be remapped) */ "ip\0" "glVertexAttrib2fv\0" "glVertexAttrib2fvARB\0" "\0" - /* _mesa_function_pool[18845]: GetBufferParameterivARB (will be remapped) */ + /* _mesa_function_pool[18977]: GetBufferParameterivARB (will be remapped) */ "iip\0" "glGetBufferParameteriv\0" "glGetBufferParameterivARB\0" "\0" - /* _mesa_function_pool[18899]: Rectdv (offset 87) */ + /* _mesa_function_pool[19031]: Rectdv (offset 87) */ "pp\0" "glRectdv\0" "\0" - /* _mesa_function_pool[18912]: ListParameteriSGIX (dynamic) */ + /* _mesa_function_pool[19044]: ListParameteriSGIX (dynamic) */ "iii\0" "glListParameteriSGIX\0" "\0" - /* _mesa_function_pool[18938]: BlendEquationiARB (will be remapped) */ + /* _mesa_function_pool[19070]: BlendEquationiARB (will be remapped) */ "ii\0" "glBlendEquationiARB\0" "glBlendEquationIndexedAMD\0" "\0" - /* _mesa_function_pool[18988]: ReplacementCodeuiColor4fNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[19120]: ReplacementCodeuiColor4fNormal3fVertex3fSUN (dynamic) */ "iffffffffff\0" "glReplacementCodeuiColor4fNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[19047]: InstrumentsBufferSGIX (dynamic) */ + /* _mesa_function_pool[19179]: InstrumentsBufferSGIX (dynamic) */ "ip\0" "glInstrumentsBufferSGIX\0" "\0" - /* _mesa_function_pool[19075]: VertexAttrib4NivARB (will be remapped) */ + /* _mesa_function_pool[19207]: VertexAttrib4NivARB (will be remapped) */ "ip\0" "glVertexAttrib4Niv\0" "glVertexAttrib4NivARB\0" "\0" - /* _mesa_function_pool[19120]: DrawArraysInstancedARB (will be remapped) */ + /* _mesa_function_pool[19252]: DrawArraysInstancedARB (will be remapped) */ "iiii\0" "glDrawArraysInstancedARB\0" "glDrawArraysInstancedEXT\0" "glDrawArraysInstanced\0" "\0" - /* _mesa_function_pool[19198]: GetAttachedShaders (will be remapped) */ + /* _mesa_function_pool[19330]: GetAttachedShaders (will be remapped) */ "iipp\0" "glGetAttachedShaders\0" "\0" - /* _mesa_function_pool[19225]: GenVertexArraysAPPLE (will be remapped) */ + /* _mesa_function_pool[19357]: GenVertexArraysAPPLE (will be remapped) */ "ip\0" "glGenVertexArraysAPPLE\0" "\0" - /* _mesa_function_pool[19252]: ClearBufferfi (will be remapped) */ + /* _mesa_function_pool[19384]: ClearBufferfi (will be remapped) */ "iifi\0" "glClearBufferfi\0" "\0" - /* _mesa_function_pool[19274]: Materialiv (offset 172) */ + /* _mesa_function_pool[19406]: Materialiv (offset 172) */ "iip\0" "glMaterialiv\0" "\0" - /* _mesa_function_pool[19292]: PushClientAttrib (offset 335) */ + /* _mesa_function_pool[19424]: PushClientAttrib (offset 335) */ "i\0" "glPushClientAttrib\0" "\0" - /* _mesa_function_pool[19314]: SamplerParameteriv (will be remapped) */ + /* _mesa_function_pool[19446]: SamplerParameteriv (will be remapped) */ "iip\0" "glSamplerParameteriv\0" "\0" - /* _mesa_function_pool[19340]: TexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[19472]: TexCoord2fColor4fNormal3fVertex3fvSUN (dynamic) */ "pppp\0" "glTexCoord2fColor4fNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[19386]: WindowPos2iMESA (will be remapped) */ + /* _mesa_function_pool[19518]: WindowPos2iMESA (will be remapped) */ "ii\0" "glWindowPos2i\0" "glWindowPos2iARB\0" "glWindowPos2iMESA\0" "\0" - /* _mesa_function_pool[19439]: SampleMaskSGIS (will be remapped) */ + /* _mesa_function_pool[19571]: SampleMaskSGIS (will be remapped) */ "fi\0" "glSampleMaskSGIS\0" "glSampleMaskEXT\0" "\0" - /* _mesa_function_pool[19476]: SecondaryColor3fvEXT (will be remapped) */ + /* _mesa_function_pool[19608]: SecondaryColor3fvEXT (will be remapped) */ "p\0" "glSecondaryColor3fv\0" "glSecondaryColor3fvEXT\0" "\0" - /* _mesa_function_pool[19522]: PolygonMode (offset 174) */ + /* _mesa_function_pool[19654]: PolygonMode (offset 174) */ "ii\0" "glPolygonMode\0" "\0" - /* _mesa_function_pool[19540]: CompressedTexSubImage1DARB (will be remapped) */ + /* _mesa_function_pool[19672]: CompressedTexSubImage1DARB (will be remapped) */ "iiiiiip\0" "glCompressedTexSubImage1D\0" "glCompressedTexSubImage1DARB\0" "\0" - /* _mesa_function_pool[19604]: VertexAttribI1iEXT (will be remapped) */ + /* _mesa_function_pool[19736]: VertexAttribI1iEXT (will be remapped) */ "ii\0" "glVertexAttribI1iEXT\0" "glVertexAttribI1i\0" "\0" - /* _mesa_function_pool[19647]: TexCoord2fNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[19779]: TexCoord2fNormal3fVertex3fSUN (dynamic) */ "ffffffff\0" "glTexCoord2fNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[19689]: GetVertexAttribivNV (will be remapped) */ + /* _mesa_function_pool[19821]: GetVertexAttribivNV (will be remapped) */ "iip\0" "glGetVertexAttribivNV\0" "\0" - /* _mesa_function_pool[19716]: GetProgramStringARB (will be remapped) */ + /* _mesa_function_pool[19848]: GetProgramStringARB (will be remapped) */ "iip\0" "glGetProgramStringARB\0" "\0" - /* _mesa_function_pool[19743]: GetnUniformdvARB (will be remapped) */ + /* _mesa_function_pool[19875]: GetnUniformdvARB (will be remapped) */ "iiip\0" "glGetnUniformdvARB\0" "\0" - /* _mesa_function_pool[19768]: DrawElementsInstancedBaseVertex (will be remapped) */ + /* _mesa_function_pool[19900]: DrawElementsInstancedBaseVertex (will be remapped) */ "iiipii\0" "glDrawElementsInstancedBaseVertex\0" "\0" - /* _mesa_function_pool[19810]: TexBuffer (will be remapped) */ + /* _mesa_function_pool[19942]: TexBuffer (will be remapped) */ "iii\0" "glTexBuffer\0" "\0" - /* _mesa_function_pool[19827]: VertexAttribIPointerEXT (will be remapped) */ + /* _mesa_function_pool[19959]: VertexAttribIPointerEXT (will be remapped) */ "iiiip\0" "glVertexAttribIPointerEXT\0" "glVertexAttribIPointer\0" "\0" - /* _mesa_function_pool[19883]: TexBumpParameterfvATI (will be remapped) */ + /* _mesa_function_pool[20015]: TexBumpParameterfvATI (will be remapped) */ "ip\0" "glTexBumpParameterfvATI\0" "\0" - /* _mesa_function_pool[19911]: Tangent3ivEXT (dynamic) */ + /* _mesa_function_pool[20043]: Tangent3ivEXT (dynamic) */ "p\0" "glTangent3ivEXT\0" "\0" - /* _mesa_function_pool[19930]: CompileShaderARB (will be remapped) */ + /* _mesa_function_pool[20062]: CompileShaderARB (will be remapped) */ "i\0" "glCompileShader\0" "glCompileShaderARB\0" "\0" - /* _mesa_function_pool[19968]: DeleteShader (will be remapped) */ + /* _mesa_function_pool[20100]: DeleteShader (will be remapped) */ "i\0" "glDeleteShader\0" "\0" - /* _mesa_function_pool[19986]: DisableClientState (offset 309) */ + /* _mesa_function_pool[20118]: DisableClientState (offset 309) */ "i\0" "glDisableClientState\0" "\0" - /* _mesa_function_pool[20010]: TexGeni (offset 192) */ + /* _mesa_function_pool[20142]: TexGeni (offset 192) */ "iii\0" "glTexGeni\0" "\0" - /* _mesa_function_pool[20025]: TexGenf (offset 190) */ + /* _mesa_function_pool[20157]: TexGenf (offset 190) */ "iif\0" "glTexGenf\0" "\0" - /* _mesa_function_pool[20040]: Uniform3fARB (will be remapped) */ + /* _mesa_function_pool[20172]: Uniform3fARB (will be remapped) */ "ifff\0" "glUniform3f\0" "glUniform3fARB\0" "\0" - /* _mesa_function_pool[20073]: TexGend (offset 188) */ + /* _mesa_function_pool[20205]: TexGend (offset 188) */ "iid\0" "glTexGend\0" "\0" - /* _mesa_function_pool[20088]: ListParameterfvSGIX (dynamic) */ + /* _mesa_function_pool[20220]: ListParameterfvSGIX (dynamic) */ "iip\0" "glListParameterfvSGIX\0" "\0" - /* _mesa_function_pool[20115]: GetPolygonStipple (offset 274) */ + /* _mesa_function_pool[20247]: GetPolygonStipple (offset 274) */ "p\0" "glGetPolygonStipple\0" "\0" - /* _mesa_function_pool[20138]: ColorP3ui (will be remapped) */ + /* _mesa_function_pool[20270]: ColorP3ui (will be remapped) */ "ii\0" "glColorP3ui\0" "\0" - /* _mesa_function_pool[20154]: Tangent3dvEXT (dynamic) */ + /* _mesa_function_pool[20286]: Tangent3dvEXT (dynamic) */ "p\0" "glTangent3dvEXT\0" "\0" - /* _mesa_function_pool[20173]: BindBufferOffsetEXT (will be remapped) */ + /* _mesa_function_pool[20305]: BindBufferOffsetEXT (will be remapped) */ "iiii\0" "glBindBufferOffsetEXT\0" "\0" - /* _mesa_function_pool[20201]: WindowPos3sMESA (will be remapped) */ + /* _mesa_function_pool[20333]: WindowPos3sMESA (will be remapped) */ "iii\0" "glWindowPos3s\0" "glWindowPos3sARB\0" "glWindowPos3sMESA\0" "\0" - /* _mesa_function_pool[20255]: VertexAttrib2svNV (will be remapped) */ + /* _mesa_function_pool[20387]: VertexAttrib2svNV (will be remapped) */ "ip\0" "glVertexAttrib2svNV\0" "\0" - /* _mesa_function_pool[20279]: DisableIndexedEXT (will be remapped) */ + /* _mesa_function_pool[20411]: DisableIndexedEXT (will be remapped) */ "ii\0" "glDisableIndexedEXT\0" "glDisablei\0" "\0" - /* _mesa_function_pool[20314]: NormalP3uiv (will be remapped) */ + /* _mesa_function_pool[20446]: NormalP3uiv (will be remapped) */ "ip\0" "glNormalP3uiv\0" "\0" - /* _mesa_function_pool[20332]: SecondaryColorP3uiv (will be remapped) */ + /* _mesa_function_pool[20464]: SecondaryColorP3uiv (will be remapped) */ "ip\0" "glSecondaryColorP3uiv\0" "\0" - /* _mesa_function_pool[20358]: BindBufferBaseEXT (will be remapped) */ + /* _mesa_function_pool[20490]: BindBufferBaseEXT (will be remapped) */ "iii\0" "glBindBufferBaseEXT\0" "glBindBufferBase\0" "\0" - /* _mesa_function_pool[20400]: TexCoord2fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[20532]: TexCoord2fVertex3fvSUN (dynamic) */ "pp\0" "glTexCoord2fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[20429]: WindowPos4sMESA (will be remapped) */ + /* _mesa_function_pool[20561]: WindowPos4sMESA (will be remapped) */ "iiii\0" "glWindowPos4sMESA\0" "\0" - /* _mesa_function_pool[20453]: GetnPixelMapuivARB (will be remapped) */ + /* _mesa_function_pool[20585]: GetnPixelMapuivARB (will be remapped) */ "iip\0" "glGetnPixelMapuivARB\0" "\0" - /* _mesa_function_pool[20479]: VertexAttrib4NuivARB (will be remapped) */ + /* _mesa_function_pool[20611]: VertexAttrib4NuivARB (will be remapped) */ "ip\0" "glVertexAttrib4Nuiv\0" "glVertexAttrib4NuivARB\0" "\0" - /* _mesa_function_pool[20526]: ClientActiveTextureARB (offset 375) */ + /* _mesa_function_pool[20658]: ClientActiveTextureARB (offset 375) */ "i\0" "glClientActiveTexture\0" "glClientActiveTextureARB\0" "\0" - /* _mesa_function_pool[20576]: GetSamplerParameterIuiv (will be remapped) */ + /* _mesa_function_pool[20708]: GetSamplerParameterIuiv (will be remapped) */ "iip\0" "glGetSamplerParameterIuiv\0" "\0" - /* _mesa_function_pool[20607]: ReplacementCodeusvSUN (dynamic) */ + /* _mesa_function_pool[20739]: ReplacementCodeusvSUN (dynamic) */ "p\0" "glReplacementCodeusvSUN\0" "\0" - /* _mesa_function_pool[20634]: Uniform4fARB (will be remapped) */ + /* _mesa_function_pool[20766]: Uniform4fARB (will be remapped) */ "iffff\0" "glUniform4f\0" "glUniform4fARB\0" "\0" - /* _mesa_function_pool[20668]: Color4sv (offset 34) */ + /* _mesa_function_pool[20800]: Color4sv (offset 34) */ "p\0" "glColor4sv\0" "\0" - /* _mesa_function_pool[20682]: FlushMappedBufferRange (will be remapped) */ + /* _mesa_function_pool[20814]: FlushMappedBufferRange (will be remapped) */ "iii\0" "glFlushMappedBufferRange\0" "\0" - /* _mesa_function_pool[20712]: IsProgramNV (will be remapped) */ + /* _mesa_function_pool[20844]: IsProgramNV (will be remapped) */ "i\0" "glIsProgramARB\0" "glIsProgramNV\0" "\0" - /* _mesa_function_pool[20744]: FlushMappedBufferRangeAPPLE (will be remapped) */ + /* _mesa_function_pool[20876]: FlushMappedBufferRangeAPPLE (will be remapped) */ "iii\0" "glFlushMappedBufferRangeAPPLE\0" "\0" - /* _mesa_function_pool[20779]: PixelZoom (offset 246) */ + /* _mesa_function_pool[20911]: PixelZoom (offset 246) */ "ff\0" "glPixelZoom\0" "\0" - /* _mesa_function_pool[20795]: ReplacementCodePointerSUN (dynamic) */ + /* _mesa_function_pool[20927]: ReplacementCodePointerSUN (dynamic) */ "iip\0" "glReplacementCodePointerSUN\0" "\0" - /* _mesa_function_pool[20828]: ProgramEnvParameter4dARB (will be remapped) */ + /* _mesa_function_pool[20960]: ProgramEnvParameter4dARB (will be remapped) */ "iidddd\0" "glProgramEnvParameter4dARB\0" "glProgramParameter4dNV\0" "\0" - /* _mesa_function_pool[20886]: ColorTableParameterfv (offset 340) */ + /* _mesa_function_pool[21018]: ColorTableParameterfv (offset 340) */ "iip\0" "glColorTableParameterfv\0" "glColorTableParameterfvSGI\0" "\0" - /* _mesa_function_pool[20942]: FragmentLightModelfSGIX (dynamic) */ + /* _mesa_function_pool[21074]: FragmentLightModelfSGIX (dynamic) */ "if\0" "glFragmentLightModelfSGIX\0" "\0" - /* _mesa_function_pool[20972]: Binormal3bvEXT (dynamic) */ + /* _mesa_function_pool[21104]: Binormal3bvEXT (dynamic) */ "p\0" "glBinormal3bvEXT\0" "\0" - /* _mesa_function_pool[20992]: PixelMapuiv (offset 252) */ + /* _mesa_function_pool[21124]: PixelMapuiv (offset 252) */ "iip\0" "glPixelMapuiv\0" "\0" - /* _mesa_function_pool[21011]: Color3dv (offset 12) */ + /* _mesa_function_pool[21143]: Color3dv (offset 12) */ "p\0" "glColor3dv\0" "\0" - /* _mesa_function_pool[21025]: IsTexture (offset 330) */ + /* _mesa_function_pool[21157]: IsTexture (offset 330) */ "i\0" "glIsTexture\0" "glIsTextureEXT\0" "\0" - /* _mesa_function_pool[21055]: GenSamplers (will be remapped) */ + /* _mesa_function_pool[21187]: GenSamplers (will be remapped) */ "ip\0" "glGenSamplers\0" "\0" - /* _mesa_function_pool[21073]: VertexAttribP3uiv (will be remapped) */ + /* _mesa_function_pool[21205]: VertexAttribP3uiv (will be remapped) */ "iiip\0" "glVertexAttribP3uiv\0" "\0" - /* _mesa_function_pool[21099]: VertexWeightfvEXT (dynamic) */ + /* _mesa_function_pool[21231]: VertexWeightfvEXT (dynamic) */ "p\0" "glVertexWeightfvEXT\0" "\0" - /* _mesa_function_pool[21122]: VertexAttrib1dARB (will be remapped) */ + /* _mesa_function_pool[21254]: VertexAttrib1dARB (will be remapped) */ "id\0" "glVertexAttrib1d\0" "glVertexAttrib1dARB\0" "\0" - /* _mesa_function_pool[21163]: ImageTransformParameterivHP (dynamic) */ + /* _mesa_function_pool[21295]: ImageTransformParameterivHP (dynamic) */ "iip\0" "glImageTransformParameterivHP\0" "\0" - /* _mesa_function_pool[21198]: TexCoord4i (offset 122) */ + /* _mesa_function_pool[21330]: TexCoord4i (offset 122) */ "iiii\0" "glTexCoord4i\0" "\0" - /* _mesa_function_pool[21217]: DeleteQueriesARB (will be remapped) */ + /* _mesa_function_pool[21349]: DeleteQueriesARB (will be remapped) */ "ip\0" "glDeleteQueries\0" "glDeleteQueriesARB\0" "\0" - /* _mesa_function_pool[21256]: Color4ubVertex2fSUN (dynamic) */ + /* _mesa_function_pool[21388]: Color4ubVertex2fSUN (dynamic) */ "iiiiff\0" "glColor4ubVertex2fSUN\0" "\0" - /* _mesa_function_pool[21286]: FragmentColorMaterialSGIX (dynamic) */ + /* _mesa_function_pool[21418]: FragmentColorMaterialSGIX (dynamic) */ "ii\0" "glFragmentColorMaterialSGIX\0" "\0" - /* _mesa_function_pool[21318]: CurrentPaletteMatrixARB (dynamic) */ + /* _mesa_function_pool[21450]: CurrentPaletteMatrixARB (dynamic) */ "i\0" "glCurrentPaletteMatrixARB\0" "\0" - /* _mesa_function_pool[21347]: GetMapdv (offset 266) */ + /* _mesa_function_pool[21479]: GetMapdv (offset 266) */ "iip\0" "glGetMapdv\0" "\0" - /* _mesa_function_pool[21363]: ObjectPurgeableAPPLE (will be remapped) */ + /* _mesa_function_pool[21495]: ObjectPurgeableAPPLE (will be remapped) */ "iii\0" "glObjectPurgeableAPPLE\0" "\0" - /* _mesa_function_pool[21391]: GetStringi (will be remapped) */ + /* _mesa_function_pool[21523]: GetStringi (will be remapped) */ "ii\0" "glGetStringi\0" "\0" - /* _mesa_function_pool[21408]: SamplePatternSGIS (will be remapped) */ + /* _mesa_function_pool[21540]: SamplePatternSGIS (will be remapped) */ "i\0" "glSamplePatternSGIS\0" "glSamplePatternEXT\0" "\0" - /* _mesa_function_pool[21450]: PixelStoref (offset 249) */ + /* _mesa_function_pool[21582]: PixelStoref (offset 249) */ "if\0" "glPixelStoref\0" "\0" - /* _mesa_function_pool[21468]: IsQueryARB (will be remapped) */ + /* _mesa_function_pool[21600]: IsQueryARB (will be remapped) */ "i\0" "glIsQuery\0" "glIsQueryARB\0" "\0" - /* _mesa_function_pool[21494]: ReplacementCodeuiColor4ubVertex3fSUN (dynamic) */ + /* _mesa_function_pool[21626]: ReplacementCodeuiColor4ubVertex3fSUN (dynamic) */ "iiiiifff\0" "glReplacementCodeuiColor4ubVertex3fSUN\0" "\0" - /* _mesa_function_pool[21543]: PixelStorei (offset 250) */ + /* _mesa_function_pool[21675]: PixelStorei (offset 250) */ "ii\0" "glPixelStorei\0" "\0" - /* _mesa_function_pool[21561]: VertexAttrib4usvARB (will be remapped) */ + /* _mesa_function_pool[21693]: VertexAttrib4usvARB (will be remapped) */ "ip\0" "glVertexAttrib4usv\0" "glVertexAttrib4usvARB\0" "\0" - /* _mesa_function_pool[21606]: LinkProgramARB (will be remapped) */ + /* _mesa_function_pool[21738]: LinkProgramARB (will be remapped) */ "i\0" "glLinkProgram\0" "glLinkProgramARB\0" "\0" - /* _mesa_function_pool[21640]: VertexAttrib2fNV (will be remapped) */ + /* _mesa_function_pool[21772]: VertexAttrib2fNV (will be remapped) */ "iff\0" "glVertexAttrib2fNV\0" "\0" - /* _mesa_function_pool[21664]: ShaderSourceARB (will be remapped) */ + /* _mesa_function_pool[21796]: ShaderSourceARB (will be remapped) */ "iipp\0" "glShaderSource\0" "glShaderSourceARB\0" "\0" - /* _mesa_function_pool[21703]: FragmentMaterialiSGIX (dynamic) */ + /* _mesa_function_pool[21835]: FragmentMaterialiSGIX (dynamic) */ "iii\0" "glFragmentMaterialiSGIX\0" "\0" - /* _mesa_function_pool[21732]: EvalCoord2dv (offset 233) */ + /* _mesa_function_pool[21864]: EvalCoord2dv (offset 233) */ "p\0" "glEvalCoord2dv\0" "\0" - /* _mesa_function_pool[21750]: VertexAttrib3svARB (will be remapped) */ + /* _mesa_function_pool[21882]: VertexAttrib3svARB (will be remapped) */ "ip\0" "glVertexAttrib3sv\0" "glVertexAttrib3svARB\0" "\0" - /* _mesa_function_pool[21793]: ColorMaterial (offset 151) */ + /* _mesa_function_pool[21925]: ColorMaterial (offset 151) */ "ii\0" "glColorMaterial\0" "\0" - /* _mesa_function_pool[21813]: CompressedTexSubImage3DARB (will be remapped) */ + /* _mesa_function_pool[21945]: CompressedTexSubImage3DARB (will be remapped) */ "iiiiiiiiiip\0" "glCompressedTexSubImage3D\0" "glCompressedTexSubImage3DARB\0" "\0" - /* _mesa_function_pool[21881]: WindowPos2ivMESA (will be remapped) */ + /* _mesa_function_pool[22013]: WindowPos2ivMESA (will be remapped) */ "p\0" "glWindowPos2iv\0" "glWindowPos2ivARB\0" "glWindowPos2ivMESA\0" "\0" - /* _mesa_function_pool[21936]: IsFramebufferEXT (will be remapped) */ + /* _mesa_function_pool[22068]: IsFramebufferEXT (will be remapped) */ "i\0" "glIsFramebuffer\0" "glIsFramebufferEXT\0" "\0" - /* _mesa_function_pool[21974]: Uniform4ivARB (will be remapped) */ + /* _mesa_function_pool[22106]: Uniform4ivARB (will be remapped) */ "iip\0" "glUniform4iv\0" "glUniform4ivARB\0" "\0" - /* _mesa_function_pool[22008]: GetVertexAttribdvARB (will be remapped) */ + /* _mesa_function_pool[22140]: GetVertexAttribdvARB (will be remapped) */ "iip\0" "glGetVertexAttribdv\0" "glGetVertexAttribdvARB\0" "\0" - /* _mesa_function_pool[22056]: TexBumpParameterivATI (will be remapped) */ + /* _mesa_function_pool[22188]: TexBumpParameterivATI (will be remapped) */ "ip\0" "glTexBumpParameterivATI\0" "\0" - /* _mesa_function_pool[22084]: GetSeparableFilter (offset 359) */ + /* _mesa_function_pool[22216]: GetSeparableFilter (offset 359) */ "iiippp\0" "glGetSeparableFilter\0" "glGetSeparableFilterEXT\0" "\0" - /* _mesa_function_pool[22137]: Binormal3dEXT (dynamic) */ + /* _mesa_function_pool[22269]: Binormal3dEXT (dynamic) */ "ddd\0" "glBinormal3dEXT\0" "\0" - /* _mesa_function_pool[22158]: SpriteParameteriSGIX (dynamic) */ + /* _mesa_function_pool[22290]: SpriteParameteriSGIX (dynamic) */ "ii\0" "glSpriteParameteriSGIX\0" "\0" - /* _mesa_function_pool[22185]: RequestResidentProgramsNV (will be remapped) */ + /* _mesa_function_pool[22317]: RequestResidentProgramsNV (will be remapped) */ "ip\0" "glRequestResidentProgramsNV\0" "\0" - /* _mesa_function_pool[22217]: TagSampleBufferSGIX (dynamic) */ + /* _mesa_function_pool[22349]: TagSampleBufferSGIX (dynamic) */ "\0" "glTagSampleBufferSGIX\0" "\0" - /* _mesa_function_pool[22241]: TransformFeedbackVaryingsEXT (will be remapped) */ + /* _mesa_function_pool[22373]: TransformFeedbackVaryingsEXT (will be remapped) */ "iipi\0" "glTransformFeedbackVaryingsEXT\0" "glTransformFeedbackVaryings\0" "\0" - /* _mesa_function_pool[22306]: FeedbackBuffer (offset 194) */ + /* _mesa_function_pool[22438]: FeedbackBuffer (offset 194) */ "iip\0" "glFeedbackBuffer\0" "\0" - /* _mesa_function_pool[22328]: RasterPos2iv (offset 67) */ + /* _mesa_function_pool[22460]: RasterPos2iv (offset 67) */ "p\0" "glRasterPos2iv\0" "\0" - /* _mesa_function_pool[22346]: TexImage1D (offset 182) */ + /* _mesa_function_pool[22478]: TexImage1D (offset 182) */ "iiiiiiip\0" "glTexImage1D\0" "\0" - /* _mesa_function_pool[22369]: ListParameterivSGIX (dynamic) */ + /* _mesa_function_pool[22501]: ListParameterivSGIX (dynamic) */ "iip\0" "glListParameterivSGIX\0" "\0" - /* _mesa_function_pool[22396]: MultiDrawElementsEXT (will be remapped) */ + /* _mesa_function_pool[22528]: MultiDrawElementsEXT (will be remapped) */ "ipipi\0" "glMultiDrawElements\0" "glMultiDrawElementsEXT\0" "\0" - /* _mesa_function_pool[22446]: Color3s (offset 17) */ + /* _mesa_function_pool[22578]: Color3s (offset 17) */ "iii\0" "glColor3s\0" "\0" - /* _mesa_function_pool[22461]: Uniform1ivARB (will be remapped) */ + /* _mesa_function_pool[22593]: Uniform1ivARB (will be remapped) */ "iip\0" "glUniform1iv\0" "glUniform1ivARB\0" "\0" - /* _mesa_function_pool[22495]: WindowPos2sMESA (will be remapped) */ + /* _mesa_function_pool[22627]: WindowPos2sMESA (will be remapped) */ "ii\0" "glWindowPos2s\0" "glWindowPos2sARB\0" "glWindowPos2sMESA\0" "\0" - /* _mesa_function_pool[22548]: WeightusvARB (dynamic) */ + /* _mesa_function_pool[22680]: WeightusvARB (dynamic) */ "ip\0" "glWeightusvARB\0" "\0" - /* _mesa_function_pool[22567]: ColorP4ui (will be remapped) */ + /* _mesa_function_pool[22699]: ColorP4ui (will be remapped) */ "ii\0" "glColorP4ui\0" "\0" - /* _mesa_function_pool[22583]: TexCoordPointer (offset 320) */ + /* _mesa_function_pool[22715]: TexCoordPointer (offset 320) */ "iiip\0" "glTexCoordPointer\0" "\0" - /* _mesa_function_pool[22607]: FogCoordPointerEXT (will be remapped) */ + /* _mesa_function_pool[22739]: FogCoordPointerEXT (will be remapped) */ "iip\0" "glFogCoordPointer\0" "glFogCoordPointerEXT\0" "\0" - /* _mesa_function_pool[22651]: GetnSeparableFilterARB (will be remapped) */ + /* _mesa_function_pool[22783]: GetnSeparableFilterARB (will be remapped) */ "iiiipipp\0" "glGetnSeparableFilterARB\0" "\0" - /* _mesa_function_pool[22686]: IndexMaterialEXT (dynamic) */ + /* _mesa_function_pool[22818]: IndexMaterialEXT (dynamic) */ "ii\0" "glIndexMaterialEXT\0" "\0" - /* _mesa_function_pool[22709]: Color3i (offset 15) */ + /* _mesa_function_pool[22841]: Color3i (offset 15) */ "iii\0" "glColor3i\0" "\0" - /* _mesa_function_pool[22724]: FrontFace (offset 157) */ + /* _mesa_function_pool[22856]: FrontFace (offset 157) */ "i\0" "glFrontFace\0" "\0" - /* _mesa_function_pool[22739]: EvalCoord2d (offset 232) */ + /* _mesa_function_pool[22871]: EvalCoord2d (offset 232) */ "dd\0" "glEvalCoord2d\0" "\0" - /* _mesa_function_pool[22757]: SecondaryColor3ubvEXT (will be remapped) */ + /* _mesa_function_pool[22889]: SecondaryColor3ubvEXT (will be remapped) */ "p\0" "glSecondaryColor3ubv\0" "glSecondaryColor3ubvEXT\0" "\0" - /* _mesa_function_pool[22805]: EvalCoord2f (offset 234) */ + /* _mesa_function_pool[22937]: EvalCoord2f (offset 234) */ "ff\0" "glEvalCoord2f\0" "\0" - /* _mesa_function_pool[22823]: VertexAttrib4dvARB (will be remapped) */ + /* _mesa_function_pool[22955]: VertexAttrib4dvARB (will be remapped) */ "ip\0" "glVertexAttrib4dv\0" "glVertexAttrib4dvARB\0" "\0" - /* _mesa_function_pool[22866]: BindAttribLocationARB (will be remapped) */ + /* _mesa_function_pool[22998]: BindAttribLocationARB (will be remapped) */ "iip\0" "glBindAttribLocation\0" "glBindAttribLocationARB\0" "\0" - /* _mesa_function_pool[22916]: Color3b (offset 9) */ + /* _mesa_function_pool[23048]: Color3b (offset 9) */ "iii\0" "glColor3b\0" "\0" - /* _mesa_function_pool[22931]: MultiTexCoord2dARB (offset 384) */ + /* _mesa_function_pool[23063]: MultiTexCoord2dARB (offset 384) */ "idd\0" "glMultiTexCoord2d\0" "glMultiTexCoord2dARB\0" "\0" - /* _mesa_function_pool[22975]: ExecuteProgramNV (will be remapped) */ + /* _mesa_function_pool[23107]: ExecuteProgramNV (will be remapped) */ "iip\0" "glExecuteProgramNV\0" "\0" - /* _mesa_function_pool[22999]: Color3f (offset 13) */ + /* _mesa_function_pool[23131]: Color3f (offset 13) */ "fff\0" "glColor3f\0" "\0" - /* _mesa_function_pool[23014]: LightEnviSGIX (dynamic) */ + /* _mesa_function_pool[23146]: LightEnviSGIX (dynamic) */ "ii\0" "glLightEnviSGIX\0" "\0" - /* _mesa_function_pool[23034]: Color3d (offset 11) */ + /* _mesa_function_pool[23166]: Color3d (offset 11) */ "ddd\0" "glColor3d\0" "\0" - /* _mesa_function_pool[23049]: Normal3dv (offset 55) */ + /* _mesa_function_pool[23181]: Normal3dv (offset 55) */ "p\0" "glNormal3dv\0" "\0" - /* _mesa_function_pool[23064]: Lightf (offset 159) */ + /* _mesa_function_pool[23196]: Lightf (offset 159) */ "iif\0" "glLightf\0" "\0" - /* _mesa_function_pool[23078]: ReplacementCodeuiSUN (dynamic) */ + /* _mesa_function_pool[23210]: ReplacementCodeuiSUN (dynamic) */ "i\0" "glReplacementCodeuiSUN\0" "\0" - /* _mesa_function_pool[23104]: MatrixMode (offset 293) */ + /* _mesa_function_pool[23236]: MatrixMode (offset 293) */ "i\0" "glMatrixMode\0" "\0" - /* _mesa_function_pool[23120]: GetPixelMapusv (offset 273) */ + /* _mesa_function_pool[23252]: GetPixelMapusv (offset 273) */ "ip\0" "glGetPixelMapusv\0" "\0" - /* _mesa_function_pool[23141]: Lighti (offset 161) */ + /* _mesa_function_pool[23273]: Lighti (offset 161) */ "iii\0" "glLighti\0" "\0" - /* _mesa_function_pool[23155]: VertexAttribPointerNV (will be remapped) */ + /* _mesa_function_pool[23287]: VertexAttribPointerNV (will be remapped) */ "iiiip\0" "glVertexAttribPointerNV\0" "\0" - /* _mesa_function_pool[23186]: ClearDepthf (will be remapped) */ + /* _mesa_function_pool[23318]: ClearDepthf (will be remapped) */ "f\0" "glClearDepthf\0" "\0" - /* _mesa_function_pool[23203]: GetBooleanIndexedvEXT (will be remapped) */ + /* _mesa_function_pool[23335]: GetFragDataIndex (will be remapped) */ + "ip\0" + "glGetFragDataIndex\0" + "\0" + /* _mesa_function_pool[23358]: GetBooleanIndexedvEXT (will be remapped) */ "iip\0" "glGetBooleanIndexedvEXT\0" "glGetBooleani_v\0" "\0" - /* _mesa_function_pool[23248]: GetFramebufferAttachmentParameterivEXT (will be remapped) */ + /* _mesa_function_pool[23403]: GetFramebufferAttachmentParameterivEXT (will be remapped) */ "iiip\0" "glGetFramebufferAttachmentParameteriv\0" "glGetFramebufferAttachmentParameterivEXT\0" "\0" - /* _mesa_function_pool[23333]: PixelTransformParameterfEXT (dynamic) */ + /* _mesa_function_pool[23488]: PixelTransformParameterfEXT (dynamic) */ "iif\0" "glPixelTransformParameterfEXT\0" "\0" - /* _mesa_function_pool[23368]: MultiTexCoord4dvARB (offset 401) */ + /* _mesa_function_pool[23523]: MultiTexCoord4dvARB (offset 401) */ "ip\0" "glMultiTexCoord4dv\0" "glMultiTexCoord4dvARB\0" "\0" - /* _mesa_function_pool[23413]: PixelTransformParameteriEXT (dynamic) */ + /* _mesa_function_pool[23568]: PixelTransformParameteriEXT (dynamic) */ "iii\0" "glPixelTransformParameteriEXT\0" "\0" - /* _mesa_function_pool[23448]: GetDoublev (offset 260) */ + /* _mesa_function_pool[23603]: GetDoublev (offset 260) */ "ip\0" "glGetDoublev\0" "\0" - /* _mesa_function_pool[23465]: MultiTexCoordP4ui (will be remapped) */ + /* _mesa_function_pool[23620]: MultiTexCoordP4ui (will be remapped) */ "iii\0" "glMultiTexCoordP4ui\0" "\0" - /* _mesa_function_pool[23490]: TexCoordP2uiv (will be remapped) */ - "ip\0" - "glTexCoordP2uiv\0" - "\0" - /* _mesa_function_pool[23510]: MultMatrixd (offset 295) */ + /* _mesa_function_pool[23645]: MultMatrixd (offset 295) */ "p\0" "glMultMatrixd\0" "\0" - /* _mesa_function_pool[23527]: MultMatrixf (offset 294) */ + /* _mesa_function_pool[23662]: MultMatrixf (offset 294) */ "p\0" "glMultMatrixf\0" "\0" - /* _mesa_function_pool[23544]: VertexAttribI4bvEXT (will be remapped) */ + /* _mesa_function_pool[23679]: VertexAttribI4bvEXT (will be remapped) */ "ip\0" "glVertexAttribI4bvEXT\0" "glVertexAttribI4bv\0" "\0" - /* _mesa_function_pool[23589]: TexCoord2fColor4ubVertex3fSUN (dynamic) */ + /* _mesa_function_pool[23724]: TexCoord2fColor4ubVertex3fSUN (dynamic) */ "ffiiiifff\0" "glTexCoord2fColor4ubVertex3fSUN\0" "\0" - /* _mesa_function_pool[23632]: Uniform1iARB (will be remapped) */ + /* _mesa_function_pool[23767]: Uniform1iARB (will be remapped) */ "ii\0" "glUniform1i\0" "glUniform1iARB\0" "\0" - /* _mesa_function_pool[23663]: GetnMapfvARB (will be remapped) */ + /* _mesa_function_pool[23798]: GetnMapfvARB (will be remapped) */ "iiip\0" "glGetnMapfvARB\0" "\0" - /* _mesa_function_pool[23684]: VertexAttribPointerARB (will be remapped) */ + /* _mesa_function_pool[23819]: VertexAttribPointerARB (will be remapped) */ "iiiiip\0" "glVertexAttribPointer\0" "glVertexAttribPointerARB\0" "\0" - /* _mesa_function_pool[23739]: VertexAttrib3sNV (will be remapped) */ + /* _mesa_function_pool[23874]: VertexAttrib3sNV (will be remapped) */ "iiii\0" "glVertexAttrib3sNV\0" "\0" - /* _mesa_function_pool[23764]: SharpenTexFuncSGIS (dynamic) */ + /* _mesa_function_pool[23899]: SharpenTexFuncSGIS (dynamic) */ "iip\0" "glSharpenTexFuncSGIS\0" "\0" - /* _mesa_function_pool[23790]: MultiTexCoord4fvARB (offset 403) */ + /* _mesa_function_pool[23925]: MultiTexCoord4fvARB (offset 403) */ "ip\0" "glMultiTexCoord4fv\0" "glMultiTexCoord4fvARB\0" "\0" - /* _mesa_function_pool[23835]: Uniform2uiEXT (will be remapped) */ + /* _mesa_function_pool[23970]: Uniform2uiEXT (will be remapped) */ "iii\0" "glUniform2uiEXT\0" "glUniform2ui\0" "\0" - /* _mesa_function_pool[23869]: TexCoordP3uiv (will be remapped) */ + /* _mesa_function_pool[24004]: TexCoordP3uiv (will be remapped) */ "ip\0" "glTexCoordP3uiv\0" "\0" - /* _mesa_function_pool[23889]: UniformMatrix2x3fv (will be remapped) */ + /* _mesa_function_pool[24024]: UniformMatrix2x3fv (will be remapped) */ "iiip\0" "glUniformMatrix2x3fv\0" "\0" - /* _mesa_function_pool[23916]: SamplerParameteri (will be remapped) */ + /* _mesa_function_pool[24051]: SamplerParameteri (will be remapped) */ "iii\0" "glSamplerParameteri\0" "\0" - /* _mesa_function_pool[23941]: SamplerParameterf (will be remapped) */ + /* _mesa_function_pool[24076]: SamplerParameterf (will be remapped) */ "iif\0" "glSamplerParameterf\0" "\0" - /* _mesa_function_pool[23966]: CombinerParameteriNV (will be remapped) */ + /* _mesa_function_pool[24101]: CombinerParameteriNV (will be remapped) */ "ii\0" "glCombinerParameteriNV\0" "\0" - /* _mesa_function_pool[23993]: DeleteAsyncMarkersSGIX (dynamic) */ + /* _mesa_function_pool[24128]: DeleteAsyncMarkersSGIX (dynamic) */ "ii\0" "glDeleteAsyncMarkersSGIX\0" "\0" - /* _mesa_function_pool[24022]: ReplacementCodeusSUN (dynamic) */ + /* _mesa_function_pool[24157]: ReplacementCodeusSUN (dynamic) */ "i\0" "glReplacementCodeusSUN\0" "\0" - /* _mesa_function_pool[24048]: IsAsyncMarkerSGIX (dynamic) */ + /* _mesa_function_pool[24183]: IsAsyncMarkerSGIX (dynamic) */ "i\0" "glIsAsyncMarkerSGIX\0" "\0" - /* _mesa_function_pool[24071]: FrameZoomSGIX (dynamic) */ + /* _mesa_function_pool[24206]: FrameZoomSGIX (dynamic) */ "i\0" "glFrameZoomSGIX\0" "\0" - /* _mesa_function_pool[24090]: Normal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[24225]: Normal3fVertex3fvSUN (dynamic) */ "pp\0" "glNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[24117]: GetnUniformuivARB (will be remapped) */ + /* _mesa_function_pool[24252]: GetnUniformuivARB (will be remapped) */ "iiip\0" "glGetnUniformuivARB\0" "\0" - /* _mesa_function_pool[24143]: RasterPos4sv (offset 85) */ + /* _mesa_function_pool[24278]: RasterPos4sv (offset 85) */ "p\0" "glRasterPos4sv\0" "\0" - /* _mesa_function_pool[24161]: VertexAttrib4NsvARB (will be remapped) */ + /* _mesa_function_pool[24296]: VertexAttrib4NsvARB (will be remapped) */ "ip\0" "glVertexAttrib4Nsv\0" "glVertexAttrib4NsvARB\0" "\0" - /* _mesa_function_pool[24206]: VertexAttrib3fvARB (will be remapped) */ + /* _mesa_function_pool[24341]: VertexAttrib3fvARB (will be remapped) */ "ip\0" "glVertexAttrib3fv\0" "glVertexAttrib3fvARB\0" "\0" - /* _mesa_function_pool[24249]: ClearColor (offset 206) */ + /* _mesa_function_pool[24384]: ClearColor (offset 206) */ "ffff\0" "glClearColor\0" "\0" - /* _mesa_function_pool[24268]: GetSynciv (will be remapped) */ + /* _mesa_function_pool[24403]: GetSynciv (will be remapped) */ "iiipp\0" "glGetSynciv\0" "\0" - /* _mesa_function_pool[24287]: ClearColorIiEXT (will be remapped) */ + /* _mesa_function_pool[24422]: ClearColorIiEXT (will be remapped) */ "iiii\0" "glClearColorIiEXT\0" "\0" - /* _mesa_function_pool[24311]: DeleteFramebuffersEXT (will be remapped) */ + /* _mesa_function_pool[24446]: DeleteFramebuffersEXT (will be remapped) */ "ip\0" "glDeleteFramebuffers\0" "glDeleteFramebuffersEXT\0" "\0" - /* _mesa_function_pool[24360]: GlobalAlphaFactorsSUN (dynamic) */ + /* _mesa_function_pool[24495]: GlobalAlphaFactorsSUN (dynamic) */ "i\0" "glGlobalAlphaFactorsSUN\0" "\0" - /* _mesa_function_pool[24387]: IsEnabledIndexedEXT (will be remapped) */ + /* _mesa_function_pool[24522]: IsEnabledIndexedEXT (will be remapped) */ "ii\0" "glIsEnabledIndexedEXT\0" "glIsEnabledi\0" "\0" - /* _mesa_function_pool[24426]: TexEnviv (offset 187) */ + /* _mesa_function_pool[24561]: TexEnviv (offset 187) */ "iip\0" "glTexEnviv\0" "\0" - /* _mesa_function_pool[24442]: TexSubImage3D (offset 372) */ + /* _mesa_function_pool[24577]: TexSubImage3D (offset 372) */ "iiiiiiiiiip\0" "glTexSubImage3D\0" "glTexSubImage3DEXT\0" "\0" - /* _mesa_function_pool[24490]: Tangent3fEXT (dynamic) */ + /* _mesa_function_pool[24625]: Tangent3fEXT (dynamic) */ "fff\0" "glTangent3fEXT\0" "\0" - /* _mesa_function_pool[24510]: SecondaryColor3uivEXT (will be remapped) */ + /* _mesa_function_pool[24645]: SecondaryColor3uivEXT (will be remapped) */ "p\0" "glSecondaryColor3uiv\0" "glSecondaryColor3uivEXT\0" "\0" - /* _mesa_function_pool[24558]: MatrixIndexubvARB (dynamic) */ + /* _mesa_function_pool[24693]: MatrixIndexubvARB (dynamic) */ "ip\0" "glMatrixIndexubvARB\0" "\0" - /* _mesa_function_pool[24582]: Color4fNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[24717]: Color4fNormal3fVertex3fSUN (dynamic) */ "ffffffffff\0" "glColor4fNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[24623]: PixelTexGenParameterfSGIS (will be remapped) */ + /* _mesa_function_pool[24758]: PixelTexGenParameterfSGIS (will be remapped) */ "if\0" "glPixelTexGenParameterfSGIS\0" "\0" - /* _mesa_function_pool[24655]: CreateShader (will be remapped) */ + /* _mesa_function_pool[24790]: CreateShader (will be remapped) */ "i\0" "glCreateShader\0" "\0" - /* _mesa_function_pool[24673]: GetColorTableParameterfv (offset 344) */ + /* _mesa_function_pool[24808]: GetColorTableParameterfv (offset 344) */ "iip\0" "glGetColorTableParameterfv\0" "glGetColorTableParameterfvSGI\0" "glGetColorTableParameterfvEXT\0" "\0" - /* _mesa_function_pool[24765]: FragmentLightModelfvSGIX (dynamic) */ + /* _mesa_function_pool[24900]: FragmentLightModelfvSGIX (dynamic) */ "ip\0" "glFragmentLightModelfvSGIX\0" "\0" - /* _mesa_function_pool[24796]: Bitmap (offset 8) */ + /* _mesa_function_pool[24931]: Bitmap (offset 8) */ "iiffffp\0" "glBitmap\0" "\0" - /* _mesa_function_pool[24814]: MultiTexCoord3fARB (offset 394) */ + /* _mesa_function_pool[24949]: MultiTexCoord3fARB (offset 394) */ "ifff\0" "glMultiTexCoord3f\0" "glMultiTexCoord3fARB\0" "\0" - /* _mesa_function_pool[24859]: GetTexLevelParameterfv (offset 284) */ + /* _mesa_function_pool[24994]: GetTexLevelParameterfv (offset 284) */ "iiip\0" "glGetTexLevelParameterfv\0" "\0" - /* _mesa_function_pool[24890]: GetPixelTexGenParameterfvSGIS (will be remapped) */ + /* _mesa_function_pool[25025]: GetPixelTexGenParameterfvSGIS (will be remapped) */ "ip\0" "glGetPixelTexGenParameterfvSGIS\0" "\0" - /* _mesa_function_pool[24926]: GenFramebuffersEXT (will be remapped) */ + /* _mesa_function_pool[25061]: GenFramebuffersEXT (will be remapped) */ "ip\0" "glGenFramebuffers\0" "glGenFramebuffersEXT\0" "\0" - /* _mesa_function_pool[24969]: VertexAttribDivisor (will be remapped) */ + /* _mesa_function_pool[25104]: VertexAttribDivisor (will be remapped) */ "ii\0" "glVertexAttribDivisor\0" "\0" - /* _mesa_function_pool[24995]: GetProgramParameterdvNV (will be remapped) */ + /* _mesa_function_pool[25130]: GetProgramParameterdvNV (will be remapped) */ "iiip\0" "glGetProgramParameterdvNV\0" "\0" - /* _mesa_function_pool[25027]: Vertex2sv (offset 133) */ + /* _mesa_function_pool[25162]: Vertex2sv (offset 133) */ "p\0" "glVertex2sv\0" "\0" - /* _mesa_function_pool[25042]: GetIntegerv (offset 263) */ + /* _mesa_function_pool[25177]: GetIntegerv (offset 263) */ "ip\0" "glGetIntegerv\0" "\0" - /* _mesa_function_pool[25060]: IsVertexArrayAPPLE (will be remapped) */ + /* _mesa_function_pool[25195]: IsVertexArrayAPPLE (will be remapped) */ "i\0" "glIsVertexArray\0" "glIsVertexArrayAPPLE\0" "\0" - /* _mesa_function_pool[25100]: FragmentLightfvSGIX (dynamic) */ + /* _mesa_function_pool[25235]: BindFragDataLocationIndexed (will be remapped) */ + "iiip\0" + "glBindFragDataLocationIndexed\0" + "\0" + /* _mesa_function_pool[25271]: FragmentLightfvSGIX (dynamic) */ "iip\0" "glFragmentLightfvSGIX\0" "\0" - /* _mesa_function_pool[25127]: GetnMapdvARB (will be remapped) */ + /* _mesa_function_pool[25298]: GetnMapdvARB (will be remapped) */ "iiip\0" "glGetnMapdvARB\0" "\0" - /* _mesa_function_pool[25148]: DetachShader (will be remapped) */ + /* _mesa_function_pool[25319]: DetachShader (will be remapped) */ "ii\0" "glDetachShader\0" "\0" - /* _mesa_function_pool[25167]: VertexAttrib4NubARB (will be remapped) */ + /* _mesa_function_pool[25338]: VertexAttrib4NubARB (will be remapped) */ "iiiii\0" "glVertexAttrib4Nub\0" "glVertexAttrib4NubARB\0" "\0" - /* _mesa_function_pool[25215]: GetProgramEnvParameterfvARB (will be remapped) */ + /* _mesa_function_pool[25386]: GetProgramEnvParameterfvARB (will be remapped) */ "iip\0" "glGetProgramEnvParameterfvARB\0" "\0" - /* _mesa_function_pool[25250]: GetTrackMatrixivNV (will be remapped) */ + /* _mesa_function_pool[25421]: GetTrackMatrixivNV (will be remapped) */ "iiip\0" "glGetTrackMatrixivNV\0" "\0" - /* _mesa_function_pool[25277]: VertexAttrib3svNV (will be remapped) */ + /* _mesa_function_pool[25448]: VertexAttrib3svNV (will be remapped) */ "ip\0" "glVertexAttrib3svNV\0" "\0" - /* _mesa_function_pool[25301]: Uniform4fvARB (will be remapped) */ + /* _mesa_function_pool[25472]: Uniform4fvARB (will be remapped) */ "iip\0" "glUniform4fv\0" "glUniform4fvARB\0" "\0" - /* _mesa_function_pool[25335]: MultTransposeMatrixfARB (will be remapped) */ + /* _mesa_function_pool[25506]: MultTransposeMatrixfARB (will be remapped) */ "p\0" "glMultTransposeMatrixf\0" "glMultTransposeMatrixfARB\0" "\0" - /* _mesa_function_pool[25387]: GetTexEnviv (offset 277) */ + /* _mesa_function_pool[25558]: GetTexEnviv (offset 277) */ "iip\0" "glGetTexEnviv\0" "\0" - /* _mesa_function_pool[25406]: ColorFragmentOp1ATI (will be remapped) */ + /* _mesa_function_pool[25577]: ColorFragmentOp1ATI (will be remapped) */ "iiiiiii\0" "glColorFragmentOp1ATI\0" "\0" - /* _mesa_function_pool[25437]: GetUniformfvARB (will be remapped) */ + /* _mesa_function_pool[25608]: GetUniformfvARB (will be remapped) */ "iip\0" "glGetUniformfv\0" "glGetUniformfvARB\0" "\0" - /* _mesa_function_pool[25475]: EGLImageTargetRenderbufferStorageOES (will be remapped) */ + /* _mesa_function_pool[25646]: EGLImageTargetRenderbufferStorageOES (will be remapped) */ "ip\0" "glEGLImageTargetRenderbufferStorageOES\0" "\0" - /* _mesa_function_pool[25518]: VertexAttribI2ivEXT (will be remapped) */ + /* _mesa_function_pool[25689]: VertexAttribI2ivEXT (will be remapped) */ "ip\0" "glVertexAttribI2ivEXT\0" "glVertexAttribI2iv\0" "\0" - /* _mesa_function_pool[25563]: PopClientAttrib (offset 334) */ + /* _mesa_function_pool[25734]: PopClientAttrib (offset 334) */ "\0" "glPopClientAttrib\0" "\0" - /* _mesa_function_pool[25583]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[25754]: ReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN (dynamic) */ "iffffffffffff\0" "glReplacementCodeuiTexCoord2fColor4fNormal3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[25654]: DetachObjectARB (will be remapped) */ + /* _mesa_function_pool[25825]: DetachObjectARB (will be remapped) */ "ii\0" "glDetachObjectARB\0" "\0" - /* _mesa_function_pool[25676]: VertexBlendARB (dynamic) */ + /* _mesa_function_pool[25847]: VertexBlendARB (dynamic) */ "i\0" "glVertexBlendARB\0" "\0" - /* _mesa_function_pool[25696]: WindowPos3iMESA (will be remapped) */ + /* _mesa_function_pool[25867]: WindowPos3iMESA (will be remapped) */ "iii\0" "glWindowPos3i\0" "glWindowPos3iARB\0" "glWindowPos3iMESA\0" "\0" - /* _mesa_function_pool[25750]: SeparableFilter2D (offset 360) */ + /* _mesa_function_pool[25921]: SeparableFilter2D (offset 360) */ "iiiiiipp\0" "glSeparableFilter2D\0" "glSeparableFilter2DEXT\0" "\0" - /* _mesa_function_pool[25803]: ProgramParameteriARB (will be remapped) */ + /* _mesa_function_pool[25974]: ProgramParameteriARB (will be remapped) */ "iii\0" "glProgramParameteriARB\0" "\0" - /* _mesa_function_pool[25831]: Map1d (offset 220) */ + /* _mesa_function_pool[26002]: Map1d (offset 220) */ "iddiip\0" "glMap1d\0" "\0" - /* _mesa_function_pool[25847]: Map1f (offset 221) */ + /* _mesa_function_pool[26018]: Map1f (offset 221) */ "iffiip\0" "glMap1f\0" "\0" - /* _mesa_function_pool[25863]: CompressedTexImage2DARB (will be remapped) */ + /* _mesa_function_pool[26034]: CompressedTexImage2DARB (will be remapped) */ "iiiiiiip\0" "glCompressedTexImage2D\0" "glCompressedTexImage2DARB\0" "\0" - /* _mesa_function_pool[25922]: ArrayElement (offset 306) */ + /* _mesa_function_pool[26093]: ArrayElement (offset 306) */ "i\0" "glArrayElement\0" "glArrayElementEXT\0" "\0" - /* _mesa_function_pool[25958]: TexImage2D (offset 183) */ + /* _mesa_function_pool[26129]: TexImage2D (offset 183) */ "iiiiiiiip\0" "glTexImage2D\0" "\0" - /* _mesa_function_pool[25982]: DepthBoundsEXT (will be remapped) */ + /* _mesa_function_pool[26153]: DepthBoundsEXT (will be remapped) */ "dd\0" "glDepthBoundsEXT\0" "\0" - /* _mesa_function_pool[26003]: ProgramParameters4fvNV (will be remapped) */ + /* _mesa_function_pool[26174]: ProgramParameters4fvNV (will be remapped) */ "iiip\0" "glProgramParameters4fvNV\0" "\0" - /* _mesa_function_pool[26034]: DeformationMap3fSGIX (dynamic) */ + /* _mesa_function_pool[26205]: DeformationMap3fSGIX (dynamic) */ "iffiiffiiffiip\0" "glDeformationMap3fSGIX\0" "\0" - /* _mesa_function_pool[26073]: GetProgramivNV (will be remapped) */ + /* _mesa_function_pool[26244]: GetProgramivNV (will be remapped) */ "iip\0" "glGetProgramivNV\0" "\0" - /* _mesa_function_pool[26095]: GetFragDataLocationEXT (will be remapped) */ + /* _mesa_function_pool[26266]: GetFragDataLocationEXT (will be remapped) */ "ip\0" "glGetFragDataLocationEXT\0" "glGetFragDataLocation\0" "\0" - /* _mesa_function_pool[26146]: GetMinmaxParameteriv (offset 366) */ + /* _mesa_function_pool[26317]: GetMinmaxParameteriv (offset 366) */ "iip\0" "glGetMinmaxParameteriv\0" "glGetMinmaxParameterivEXT\0" "\0" - /* _mesa_function_pool[26200]: PixelTransferf (offset 247) */ + /* _mesa_function_pool[26371]: PixelTransferf (offset 247) */ "if\0" "glPixelTransferf\0" "\0" - /* _mesa_function_pool[26221]: CopyTexImage1D (offset 323) */ + /* _mesa_function_pool[26392]: CopyTexImage1D (offset 323) */ "iiiiiii\0" "glCopyTexImage1D\0" "glCopyTexImage1DEXT\0" "\0" - /* _mesa_function_pool[26267]: PushMatrix (offset 298) */ + /* _mesa_function_pool[26438]: PushMatrix (offset 298) */ "\0" "glPushMatrix\0" "\0" - /* _mesa_function_pool[26282]: Fogiv (offset 156) */ + /* _mesa_function_pool[26453]: Fogiv (offset 156) */ "ip\0" "glFogiv\0" "\0" - /* _mesa_function_pool[26294]: TexCoord1dv (offset 95) */ + /* _mesa_function_pool[26465]: TexCoord1dv (offset 95) */ "p\0" "glTexCoord1dv\0" "\0" - /* _mesa_function_pool[26311]: AlphaFragmentOp3ATI (will be remapped) */ + /* _mesa_function_pool[26482]: AlphaFragmentOp3ATI (will be remapped) */ "iiiiiiiiiiii\0" "glAlphaFragmentOp3ATI\0" "\0" - /* _mesa_function_pool[26347]: PixelTransferi (offset 248) */ + /* _mesa_function_pool[26518]: PixelTransferi (offset 248) */ "ii\0" "glPixelTransferi\0" "\0" - /* _mesa_function_pool[26368]: GetnColorTableARB (will be remapped) */ + /* _mesa_function_pool[26539]: GetnColorTableARB (will be remapped) */ "iiiip\0" "glGetnColorTableARB\0" "\0" - /* _mesa_function_pool[26395]: VertexAttrib3fvNV (will be remapped) */ + /* _mesa_function_pool[26566]: VertexAttrib3fvNV (will be remapped) */ "ip\0" "glVertexAttrib3fvNV\0" "\0" - /* _mesa_function_pool[26419]: Rotatef (offset 300) */ + /* _mesa_function_pool[26590]: Rotatef (offset 300) */ "ffff\0" "glRotatef\0" "\0" - /* _mesa_function_pool[26435]: GetFinalCombinerInputParameterivNV (will be remapped) */ + /* _mesa_function_pool[26606]: GetFinalCombinerInputParameterivNV (will be remapped) */ "iip\0" "glGetFinalCombinerInputParameterivNV\0" "\0" - /* _mesa_function_pool[26477]: Vertex3i (offset 138) */ + /* _mesa_function_pool[26648]: Vertex3i (offset 138) */ "iii\0" "glVertex3i\0" "\0" - /* _mesa_function_pool[26493]: SecondaryColorP3ui (will be remapped) */ + /* _mesa_function_pool[26664]: SecondaryColorP3ui (will be remapped) */ "ii\0" "glSecondaryColorP3ui\0" "\0" - /* _mesa_function_pool[26518]: Vertex3f (offset 136) */ + /* _mesa_function_pool[26689]: Vertex3f (offset 136) */ "fff\0" "glVertex3f\0" "\0" - /* _mesa_function_pool[26534]: Clear (offset 203) */ + /* _mesa_function_pool[26705]: Clear (offset 203) */ "i\0" "glClear\0" "\0" - /* _mesa_function_pool[26545]: Vertex3d (offset 134) */ + /* _mesa_function_pool[26716]: Vertex3d (offset 134) */ "ddd\0" "glVertex3d\0" "\0" - /* _mesa_function_pool[26561]: GetMapParameterivNV (dynamic) */ + /* _mesa_function_pool[26732]: GetMapParameterivNV (dynamic) */ "iip\0" "glGetMapParameterivNV\0" "\0" - /* _mesa_function_pool[26588]: Uniform4iARB (will be remapped) */ + /* _mesa_function_pool[26759]: Uniform4iARB (will be remapped) */ "iiiii\0" "glUniform4i\0" "glUniform4iARB\0" "\0" - /* _mesa_function_pool[26622]: ReadBuffer (offset 254) */ + /* _mesa_function_pool[26793]: ReadBuffer (offset 254) */ "i\0" "glReadBuffer\0" "\0" - /* _mesa_function_pool[26638]: ConvolutionParameteri (offset 352) */ + /* _mesa_function_pool[26809]: ConvolutionParameteri (offset 352) */ "iii\0" "glConvolutionParameteri\0" "glConvolutionParameteriEXT\0" "\0" - /* _mesa_function_pool[26694]: Ortho (offset 296) */ + /* _mesa_function_pool[26865]: Ortho (offset 296) */ "dddddd\0" "glOrtho\0" "\0" - /* _mesa_function_pool[26710]: Binormal3sEXT (dynamic) */ + /* _mesa_function_pool[26881]: Binormal3sEXT (dynamic) */ "iii\0" "glBinormal3sEXT\0" "\0" - /* _mesa_function_pool[26731]: ListBase (offset 6) */ + /* _mesa_function_pool[26902]: ListBase (offset 6) */ "i\0" "glListBase\0" "\0" - /* _mesa_function_pool[26745]: VertexAttribI3ivEXT (will be remapped) */ + /* _mesa_function_pool[26916]: VertexAttribI3ivEXT (will be remapped) */ "ip\0" "glVertexAttribI3ivEXT\0" "glVertexAttribI3iv\0" "\0" - /* _mesa_function_pool[26790]: MultiTexCoordP1ui (will be remapped) */ + /* _mesa_function_pool[26961]: MultiTexCoordP1ui (will be remapped) */ "iii\0" "glMultiTexCoordP1ui\0" "\0" - /* _mesa_function_pool[26815]: Vertex3s (offset 140) */ + /* _mesa_function_pool[26986]: Vertex3s (offset 140) */ "iii\0" "glVertex3s\0" "\0" - /* _mesa_function_pool[26831]: ConvolutionParameterf (offset 350) */ + /* _mesa_function_pool[27002]: ConvolutionParameterf (offset 350) */ "iif\0" "glConvolutionParameterf\0" "glConvolutionParameterfEXT\0" "\0" - /* _mesa_function_pool[26887]: GetColorTableParameteriv (offset 345) */ + /* _mesa_function_pool[27058]: GetColorTableParameteriv (offset 345) */ "iip\0" "glGetColorTableParameteriv\0" "glGetColorTableParameterivSGI\0" "glGetColorTableParameterivEXT\0" "\0" - /* _mesa_function_pool[26979]: ProgramEnvParameter4dvARB (will be remapped) */ + /* _mesa_function_pool[27150]: ProgramEnvParameter4dvARB (will be remapped) */ "iip\0" "glProgramEnvParameter4dvARB\0" "glProgramParameter4dvNV\0" "\0" - /* _mesa_function_pool[27036]: ShadeModel (offset 177) */ + /* _mesa_function_pool[27207]: ShadeModel (offset 177) */ "i\0" "glShadeModel\0" "\0" - /* _mesa_function_pool[27052]: VertexAttribs2fvNV (will be remapped) */ + /* _mesa_function_pool[27223]: VertexAttribs2fvNV (will be remapped) */ "iip\0" "glVertexAttribs2fvNV\0" "\0" - /* _mesa_function_pool[27078]: Rectiv (offset 91) */ + /* _mesa_function_pool[27249]: Rectiv (offset 91) */ "pp\0" "glRectiv\0" "\0" - /* _mesa_function_pool[27091]: UseProgramObjectARB (will be remapped) */ + /* _mesa_function_pool[27262]: UseProgramObjectARB (will be remapped) */ "i\0" "glUseProgram\0" "glUseProgramObjectARB\0" "\0" - /* _mesa_function_pool[27129]: GetMapParameterfvNV (dynamic) */ + /* _mesa_function_pool[27300]: GetMapParameterfvNV (dynamic) */ "iip\0" "glGetMapParameterfvNV\0" "\0" - /* _mesa_function_pool[27156]: EndConditionalRenderNV (will be remapped) */ + /* _mesa_function_pool[27327]: EndConditionalRenderNV (will be remapped) */ "\0" "glEndConditionalRenderNV\0" "glEndConditionalRender\0" "\0" - /* _mesa_function_pool[27206]: PassTexCoordATI (will be remapped) */ + /* _mesa_function_pool[27377]: PassTexCoordATI (will be remapped) */ "iii\0" "glPassTexCoordATI\0" "\0" - /* _mesa_function_pool[27229]: DeleteProgram (will be remapped) */ + /* _mesa_function_pool[27400]: DeleteProgram (will be remapped) */ "i\0" "glDeleteProgram\0" "\0" - /* _mesa_function_pool[27248]: GetSamplerParameteriv (will be remapped) */ + /* _mesa_function_pool[27419]: GetSamplerParameteriv (will be remapped) */ "iip\0" "glGetSamplerParameteriv\0" "\0" - /* _mesa_function_pool[27277]: Tangent3dEXT (dynamic) */ + /* _mesa_function_pool[27448]: Tangent3dEXT (dynamic) */ "ddd\0" "glTangent3dEXT\0" "\0" - /* _mesa_function_pool[27297]: SecondaryColor3dvEXT (will be remapped) */ + /* _mesa_function_pool[27468]: SecondaryColor3dvEXT (will be remapped) */ "p\0" "glSecondaryColor3dv\0" "glSecondaryColor3dvEXT\0" "\0" - /* _mesa_function_pool[27343]: AlphaFragmentOp2ATI (will be remapped) */ + /* _mesa_function_pool[27514]: AlphaFragmentOp2ATI (will be remapped) */ "iiiiiiiii\0" "glAlphaFragmentOp2ATI\0" "\0" - /* _mesa_function_pool[27376]: Vertex2fv (offset 129) */ + /* _mesa_function_pool[27547]: Vertex2fv (offset 129) */ "p\0" "glVertex2fv\0" "\0" - /* _mesa_function_pool[27391]: MultiDrawArraysEXT (will be remapped) */ + /* _mesa_function_pool[27562]: MultiDrawArraysEXT (will be remapped) */ "ippi\0" "glMultiDrawArrays\0" "glMultiDrawArraysEXT\0" "\0" - /* _mesa_function_pool[27436]: BindRenderbufferEXT (will be remapped) */ + /* _mesa_function_pool[27607]: BindRenderbufferEXT (will be remapped) */ "ii\0" "glBindRenderbuffer\0" "glBindRenderbufferEXT\0" "\0" - /* _mesa_function_pool[27481]: MultiTexCoord4dARB (offset 400) */ + /* _mesa_function_pool[27652]: MultiTexCoord4dARB (offset 400) */ "idddd\0" "glMultiTexCoord4d\0" "glMultiTexCoord4dARB\0" "\0" - /* _mesa_function_pool[27527]: FramebufferTextureFaceARB (will be remapped) */ + /* _mesa_function_pool[27698]: FramebufferTextureFaceARB (will be remapped) */ "iiiii\0" "glFramebufferTextureFaceARB\0" "\0" - /* _mesa_function_pool[27562]: Vertex3sv (offset 141) */ + /* _mesa_function_pool[27733]: Vertex3sv (offset 141) */ "p\0" "glVertex3sv\0" "\0" - /* _mesa_function_pool[27577]: SecondaryColor3usEXT (will be remapped) */ + /* _mesa_function_pool[27748]: SecondaryColor3usEXT (will be remapped) */ "iii\0" "glSecondaryColor3us\0" "glSecondaryColor3usEXT\0" "\0" - /* _mesa_function_pool[27625]: ProgramLocalParameter4fvARB (will be remapped) */ + /* _mesa_function_pool[27796]: ProgramLocalParameter4fvARB (will be remapped) */ "iip\0" "glProgramLocalParameter4fvARB\0" "\0" - /* _mesa_function_pool[27660]: DeleteProgramsNV (will be remapped) */ + /* _mesa_function_pool[27831]: DeleteProgramsNV (will be remapped) */ "ip\0" "glDeleteProgramsARB\0" "glDeleteProgramsNV\0" "\0" - /* _mesa_function_pool[27703]: EvalMesh1 (offset 236) */ + /* _mesa_function_pool[27874]: EvalMesh1 (offset 236) */ "iii\0" "glEvalMesh1\0" "\0" - /* _mesa_function_pool[27720]: PauseTransformFeedback (will be remapped) */ + /* _mesa_function_pool[27891]: PauseTransformFeedback (will be remapped) */ "\0" "glPauseTransformFeedback\0" "\0" - /* _mesa_function_pool[27747]: MultiTexCoord1sARB (offset 382) */ + /* _mesa_function_pool[27918]: MultiTexCoord1sARB (offset 382) */ "ii\0" "glMultiTexCoord1s\0" "glMultiTexCoord1sARB\0" "\0" - /* _mesa_function_pool[27790]: ReplacementCodeuiColor3fVertex3fSUN (dynamic) */ + /* _mesa_function_pool[27961]: ReplacementCodeuiColor3fVertex3fSUN (dynamic) */ "iffffff\0" "glReplacementCodeuiColor3fVertex3fSUN\0" "\0" - /* _mesa_function_pool[27837]: GetVertexAttribPointervNV (will be remapped) */ + /* _mesa_function_pool[28008]: GetVertexAttribPointervNV (will be remapped) */ "iip\0" "glGetVertexAttribPointerv\0" "glGetVertexAttribPointervARB\0" "glGetVertexAttribPointervNV\0" "\0" - /* _mesa_function_pool[27925]: VertexAttribs1fvNV (will be remapped) */ + /* _mesa_function_pool[28096]: VertexAttribs1fvNV (will be remapped) */ "iip\0" "glVertexAttribs1fvNV\0" "\0" - /* _mesa_function_pool[27951]: MultiTexCoord1dvARB (offset 377) */ + /* _mesa_function_pool[28122]: MultiTexCoord1dvARB (offset 377) */ "ip\0" "glMultiTexCoord1dv\0" "glMultiTexCoord1dvARB\0" "\0" - /* _mesa_function_pool[27996]: Uniform2iARB (will be remapped) */ + /* _mesa_function_pool[28167]: Uniform2iARB (will be remapped) */ "iii\0" "glUniform2i\0" "glUniform2iARB\0" "\0" - /* _mesa_function_pool[28028]: Vertex2iv (offset 131) */ + /* _mesa_function_pool[28199]: Vertex2iv (offset 131) */ "p\0" "glVertex2iv\0" "\0" - /* _mesa_function_pool[28043]: GetProgramStringNV (will be remapped) */ + /* _mesa_function_pool[28214]: GetProgramStringNV (will be remapped) */ "iip\0" "glGetProgramStringNV\0" "\0" - /* _mesa_function_pool[28069]: ColorPointerEXT (will be remapped) */ + /* _mesa_function_pool[28240]: ColorPointerEXT (will be remapped) */ "iiiip\0" "glColorPointerEXT\0" "\0" - /* _mesa_function_pool[28094]: LineWidth (offset 168) */ + /* _mesa_function_pool[28265]: LineWidth (offset 168) */ "f\0" "glLineWidth\0" "\0" - /* _mesa_function_pool[28109]: Tangent3svEXT (dynamic) */ + /* _mesa_function_pool[28280]: Tangent3svEXT (dynamic) */ "p\0" "glTangent3svEXT\0" "\0" - /* _mesa_function_pool[28128]: MapBufferARB (will be remapped) */ + /* _mesa_function_pool[28299]: MapBufferARB (will be remapped) */ "ii\0" "glMapBuffer\0" "glMapBufferARB\0" "\0" - /* _mesa_function_pool[28159]: MultiDrawElementsBaseVertex (will be remapped) */ + /* _mesa_function_pool[28330]: MultiDrawElementsBaseVertex (will be remapped) */ "ipipip\0" "glMultiDrawElementsBaseVertex\0" "\0" - /* _mesa_function_pool[28197]: TexParameterIuivEXT (will be remapped) */ + /* _mesa_function_pool[28368]: TexParameterIuivEXT (will be remapped) */ "iip\0" "glTexParameterIuivEXT\0" "glTexParameterIuiv\0" "\0" - /* _mesa_function_pool[28243]: Binormal3svEXT (dynamic) */ + /* _mesa_function_pool[28414]: Binormal3svEXT (dynamic) */ "p\0" "glBinormal3svEXT\0" "\0" - /* _mesa_function_pool[28263]: ApplyTextureEXT (dynamic) */ + /* _mesa_function_pool[28434]: ApplyTextureEXT (dynamic) */ "i\0" "glApplyTextureEXT\0" "\0" - /* _mesa_function_pool[28284]: GetBufferParameteri64v (will be remapped) */ + /* _mesa_function_pool[28455]: GetBufferParameteri64v (will be remapped) */ "iip\0" "glGetBufferParameteri64v\0" "\0" - /* _mesa_function_pool[28314]: TexGendv (offset 189) */ + /* _mesa_function_pool[28485]: TexGendv (offset 189) */ "iip\0" "glTexGendv\0" "\0" - /* _mesa_function_pool[28330]: VertexAttribI3iEXT (will be remapped) */ + /* _mesa_function_pool[28501]: VertexAttribI3iEXT (will be remapped) */ "iiii\0" "glVertexAttribI3iEXT\0" "glVertexAttribI3i\0" "\0" - /* _mesa_function_pool[28375]: EnableIndexedEXT (will be remapped) */ + /* _mesa_function_pool[28546]: EnableIndexedEXT (will be remapped) */ "ii\0" "glEnableIndexedEXT\0" "glEnablei\0" "\0" - /* _mesa_function_pool[28408]: TextureMaterialEXT (dynamic) */ + /* _mesa_function_pool[28579]: TextureMaterialEXT (dynamic) */ "ii\0" "glTextureMaterialEXT\0" "\0" - /* _mesa_function_pool[28433]: TextureLightEXT (dynamic) */ + /* _mesa_function_pool[28604]: TextureLightEXT (dynamic) */ "i\0" "glTextureLightEXT\0" "\0" - /* _mesa_function_pool[28454]: ResetMinmax (offset 370) */ + /* _mesa_function_pool[28625]: ResetMinmax (offset 370) */ "i\0" "glResetMinmax\0" "glResetMinmaxEXT\0" "\0" - /* _mesa_function_pool[28488]: SpriteParameterfSGIX (dynamic) */ + /* _mesa_function_pool[28659]: SpriteParameterfSGIX (dynamic) */ "if\0" "glSpriteParameterfSGIX\0" "\0" - /* _mesa_function_pool[28515]: EnableClientState (offset 313) */ + /* _mesa_function_pool[28686]: EnableClientState (offset 313) */ "i\0" "glEnableClientState\0" "\0" - /* _mesa_function_pool[28538]: VertexAttrib4sNV (will be remapped) */ + /* _mesa_function_pool[28709]: VertexAttrib4sNV (will be remapped) */ "iiiii\0" "glVertexAttrib4sNV\0" "\0" - /* _mesa_function_pool[28564]: GetConvolutionParameterfv (offset 357) */ + /* _mesa_function_pool[28735]: GetConvolutionParameterfv (offset 357) */ "iip\0" "glGetConvolutionParameterfv\0" "glGetConvolutionParameterfvEXT\0" "\0" - /* _mesa_function_pool[28628]: VertexAttribs4dvNV (will be remapped) */ + /* _mesa_function_pool[28799]: VertexAttribs4dvNV (will be remapped) */ "iip\0" "glVertexAttribs4dvNV\0" "\0" - /* _mesa_function_pool[28654]: MultiModeDrawArraysIBM (will be remapped) */ - "pppii\0" - "glMultiModeDrawArraysIBM\0" - "\0" - /* _mesa_function_pool[28686]: VertexAttrib4dARB (will be remapped) */ + /* _mesa_function_pool[28825]: VertexAttrib4dARB (will be remapped) */ "idddd\0" "glVertexAttrib4d\0" "glVertexAttrib4dARB\0" "\0" - /* _mesa_function_pool[28730]: GetTexBumpParameterfvATI (will be remapped) */ + /* _mesa_function_pool[28869]: GetTexBumpParameterfvATI (will be remapped) */ "ip\0" "glGetTexBumpParameterfvATI\0" "\0" - /* _mesa_function_pool[28761]: ProgramNamedParameter4dNV (will be remapped) */ + /* _mesa_function_pool[28900]: ProgramNamedParameter4dNV (will be remapped) */ "iipdddd\0" "glProgramNamedParameter4dNV\0" "\0" - /* _mesa_function_pool[28798]: GetMaterialfv (offset 269) */ + /* _mesa_function_pool[28937]: GetMaterialfv (offset 269) */ "iip\0" "glGetMaterialfv\0" "\0" - /* _mesa_function_pool[28819]: VertexWeightfEXT (dynamic) */ + /* _mesa_function_pool[28958]: VertexWeightfEXT (dynamic) */ "f\0" "glVertexWeightfEXT\0" "\0" - /* _mesa_function_pool[28841]: SetFragmentShaderConstantATI (will be remapped) */ + /* _mesa_function_pool[28980]: SetFragmentShaderConstantATI (will be remapped) */ "ip\0" "glSetFragmentShaderConstantATI\0" "\0" - /* _mesa_function_pool[28876]: Binormal3fEXT (dynamic) */ + /* _mesa_function_pool[29015]: Binormal3fEXT (dynamic) */ "fff\0" "glBinormal3fEXT\0" "\0" - /* _mesa_function_pool[28897]: CallList (offset 2) */ + /* _mesa_function_pool[29036]: CallList (offset 2) */ "i\0" "glCallList\0" "\0" - /* _mesa_function_pool[28911]: Materialfv (offset 170) */ + /* _mesa_function_pool[29050]: Materialfv (offset 170) */ "iip\0" "glMaterialfv\0" "\0" - /* _mesa_function_pool[28929]: TexCoord3fv (offset 113) */ + /* _mesa_function_pool[29068]: TexCoord3fv (offset 113) */ "p\0" "glTexCoord3fv\0" "\0" - /* _mesa_function_pool[28946]: FogCoordfvEXT (will be remapped) */ + /* _mesa_function_pool[29085]: FogCoordfvEXT (will be remapped) */ "p\0" "glFogCoordfv\0" "glFogCoordfvEXT\0" "\0" - /* _mesa_function_pool[28978]: MultiTexCoord1ivARB (offset 381) */ + /* _mesa_function_pool[29117]: MultiTexCoord1ivARB (offset 381) */ "ip\0" "glMultiTexCoord1iv\0" "glMultiTexCoord1ivARB\0" "\0" - /* _mesa_function_pool[29023]: SecondaryColor3ubEXT (will be remapped) */ + /* _mesa_function_pool[29162]: SecondaryColor3ubEXT (will be remapped) */ "iii\0" "glSecondaryColor3ub\0" "glSecondaryColor3ubEXT\0" "\0" - /* _mesa_function_pool[29071]: MultiTexCoord2ivARB (offset 389) */ + /* _mesa_function_pool[29210]: MultiTexCoord2ivARB (offset 389) */ "ip\0" "glMultiTexCoord2iv\0" "glMultiTexCoord2ivARB\0" "\0" - /* _mesa_function_pool[29116]: FogFuncSGIS (dynamic) */ + /* _mesa_function_pool[29255]: FogFuncSGIS (dynamic) */ "ip\0" "glFogFuncSGIS\0" "\0" - /* _mesa_function_pool[29134]: CopyTexSubImage2D (offset 326) */ + /* _mesa_function_pool[29273]: CopyTexSubImage2D (offset 326) */ "iiiiiiii\0" "glCopyTexSubImage2D\0" "glCopyTexSubImage2DEXT\0" "\0" - /* _mesa_function_pool[29187]: GetObjectParameterivARB (will be remapped) */ + /* _mesa_function_pool[29326]: GetObjectParameterivARB (will be remapped) */ "iip\0" "glGetObjectParameterivARB\0" "\0" - /* _mesa_function_pool[29218]: Color3iv (offset 16) */ + /* _mesa_function_pool[29357]: Color3iv (offset 16) */ "p\0" "glColor3iv\0" "\0" - /* _mesa_function_pool[29232]: TexCoord4fVertex4fSUN (dynamic) */ + /* _mesa_function_pool[29371]: TexCoord4fVertex4fSUN (dynamic) */ "ffffffff\0" "glTexCoord4fVertex4fSUN\0" "\0" - /* _mesa_function_pool[29266]: DrawElements (offset 311) */ + /* _mesa_function_pool[29405]: DrawElements (offset 311) */ "iiip\0" "glDrawElements\0" "\0" - /* _mesa_function_pool[29287]: BindVertexArrayAPPLE (will be remapped) */ + /* _mesa_function_pool[29426]: BindVertexArrayAPPLE (will be remapped) */ "i\0" "glBindVertexArrayAPPLE\0" "\0" - /* _mesa_function_pool[29313]: GetProgramLocalParameterdvARB (will be remapped) */ + /* _mesa_function_pool[29452]: GetProgramLocalParameterdvARB (will be remapped) */ "iip\0" "glGetProgramLocalParameterdvARB\0" "\0" - /* _mesa_function_pool[29350]: GetHistogramParameteriv (offset 363) */ + /* _mesa_function_pool[29489]: GetHistogramParameteriv (offset 363) */ "iip\0" "glGetHistogramParameteriv\0" "glGetHistogramParameterivEXT\0" "\0" - /* _mesa_function_pool[29410]: MultiTexCoord1iARB (offset 380) */ + /* _mesa_function_pool[29549]: MultiTexCoord1iARB (offset 380) */ "ii\0" "glMultiTexCoord1i\0" "glMultiTexCoord1iARB\0" "\0" - /* _mesa_function_pool[29453]: GetConvolutionFilter (offset 356) */ + /* _mesa_function_pool[29592]: GetConvolutionFilter (offset 356) */ "iiip\0" "glGetConvolutionFilter\0" "glGetConvolutionFilterEXT\0" "\0" - /* _mesa_function_pool[29508]: GetProgramivARB (will be remapped) */ + /* _mesa_function_pool[29647]: GetProgramivARB (will be remapped) */ "iip\0" "glGetProgramivARB\0" "\0" - /* _mesa_function_pool[29531]: TexBufferARB (will be remapped) */ + /* _mesa_function_pool[29670]: TexBufferARB (will be remapped) */ "iii\0" "glTexBufferARB\0" "\0" - /* _mesa_function_pool[29551]: BlendFuncSeparateEXT (will be remapped) */ + /* _mesa_function_pool[29690]: BlendFuncSeparateEXT (will be remapped) */ "iiii\0" "glBlendFuncSeparate\0" "glBlendFuncSeparateEXT\0" "glBlendFuncSeparateINGR\0" "\0" - /* _mesa_function_pool[29624]: MapBufferRange (will be remapped) */ + /* _mesa_function_pool[29763]: MapBufferRange (will be remapped) */ "iiii\0" "glMapBufferRange\0" "\0" - /* _mesa_function_pool[29647]: ProgramParameters4dvNV (will be remapped) */ + /* _mesa_function_pool[29786]: ProgramParameters4dvNV (will be remapped) */ "iiip\0" "glProgramParameters4dvNV\0" "\0" - /* _mesa_function_pool[29678]: TexCoord2fColor3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[29817]: TexCoord2fColor3fVertex3fvSUN (dynamic) */ "ppp\0" "glTexCoord2fColor3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[29715]: EvalPoint2 (offset 239) */ + /* _mesa_function_pool[29854]: EvalPoint2 (offset 239) */ "ii\0" "glEvalPoint2\0" "\0" - /* _mesa_function_pool[29732]: Uniform1uivEXT (will be remapped) */ + /* _mesa_function_pool[29871]: Uniform1uivEXT (will be remapped) */ "iip\0" "glUniform1uivEXT\0" "glUniform1uiv\0" "\0" - /* _mesa_function_pool[29768]: EvalPoint1 (offset 237) */ + /* _mesa_function_pool[29907]: EvalPoint1 (offset 237) */ "i\0" "glEvalPoint1\0" "\0" - /* _mesa_function_pool[29784]: Binormal3dvEXT (dynamic) */ + /* _mesa_function_pool[29923]: Binormal3dvEXT (dynamic) */ "p\0" "glBinormal3dvEXT\0" "\0" - /* _mesa_function_pool[29804]: PopMatrix (offset 297) */ + /* _mesa_function_pool[29943]: PopMatrix (offset 297) */ "\0" "glPopMatrix\0" "\0" - /* _mesa_function_pool[29818]: GetVertexAttribIuivEXT (will be remapped) */ - "iip\0" - "glGetVertexAttribIuivEXT\0" - "glGetVertexAttribIuiv\0" - "\0" - /* _mesa_function_pool[29870]: FinishFenceNV (will be remapped) */ + /* _mesa_function_pool[29957]: FinishFenceNV (will be remapped) */ "i\0" "glFinishFenceNV\0" "\0" - /* _mesa_function_pool[29889]: GetFogFuncSGIS (dynamic) */ + /* _mesa_function_pool[29976]: GetFogFuncSGIS (dynamic) */ "p\0" "glGetFogFuncSGIS\0" "\0" - /* _mesa_function_pool[29909]: GetUniformLocationARB (will be remapped) */ + /* _mesa_function_pool[29996]: GetUniformLocationARB (will be remapped) */ "ip\0" "glGetUniformLocation\0" "glGetUniformLocationARB\0" "\0" - /* _mesa_function_pool[29958]: SecondaryColor3fEXT (will be remapped) */ + /* _mesa_function_pool[30045]: SecondaryColor3fEXT (will be remapped) */ "fff\0" "glSecondaryColor3f\0" "glSecondaryColor3fEXT\0" "\0" - /* _mesa_function_pool[30004]: GetTexGeniv (offset 280) */ + /* _mesa_function_pool[30091]: GetTexGeniv (offset 280) */ "iip\0" "glGetTexGeniv\0" "\0" - /* _mesa_function_pool[30023]: CombinerInputNV (will be remapped) */ + /* _mesa_function_pool[30110]: CombinerInputNV (will be remapped) */ "iiiiii\0" "glCombinerInputNV\0" "\0" - /* _mesa_function_pool[30049]: VertexAttrib3sARB (will be remapped) */ + /* _mesa_function_pool[30136]: VertexAttrib3sARB (will be remapped) */ "iiii\0" "glVertexAttrib3s\0" "glVertexAttrib3sARB\0" "\0" - /* _mesa_function_pool[30092]: IsTransformFeedback (will be remapped) */ + /* _mesa_function_pool[30179]: IsTransformFeedback (will be remapped) */ "i\0" "glIsTransformFeedback\0" "\0" - /* _mesa_function_pool[30117]: ReplacementCodeuiNormal3fVertex3fvSUN (dynamic) */ + /* _mesa_function_pool[30204]: ReplacementCodeuiNormal3fVertex3fvSUN (dynamic) */ "ppp\0" "glReplacementCodeuiNormal3fVertex3fvSUN\0" "\0" - /* _mesa_function_pool[30162]: Map2d (offset 222) */ + /* _mesa_function_pool[30249]: Map2d (offset 222) */ "iddiiddiip\0" "glMap2d\0" "\0" - /* _mesa_function_pool[30182]: Map2f (offset 223) */ + /* _mesa_function_pool[30269]: Map2f (offset 223) */ "iffiiffiip\0" "glMap2f\0" "\0" - /* _mesa_function_pool[30202]: ProgramStringARB (will be remapped) */ + /* _mesa_function_pool[30289]: ProgramStringARB (will be remapped) */ "iiip\0" "glProgramStringARB\0" "\0" - /* _mesa_function_pool[30227]: Vertex4s (offset 148) */ + /* _mesa_function_pool[30314]: Vertex4s (offset 148) */ "iiii\0" "glVertex4s\0" "\0" - /* _mesa_function_pool[30244]: TexCoord4fVertex4fvSUN (dynamic) */ + /* _mesa_function_pool[30331]: TexCoord4fVertex4fvSUN (dynamic) */ "pp\0" "glTexCoord4fVertex4fvSUN\0" "\0" - /* _mesa_function_pool[30273]: TextureStorage3DEXT (will be remapped) */ + /* _mesa_function_pool[30360]: TextureStorage3DEXT (will be remapped) */ "iiiiiii\0" "glTextureStorage3DEXT\0" "\0" - /* _mesa_function_pool[30304]: FragmentLightModelivSGIX (dynamic) */ + /* _mesa_function_pool[30391]: FragmentLightModelivSGIX (dynamic) */ "ip\0" "glFragmentLightModelivSGIX\0" "\0" - /* _mesa_function_pool[30335]: VertexAttrib1fNV (will be remapped) */ + /* _mesa_function_pool[30422]: VertexAttrib1fNV (will be remapped) */ "if\0" "glVertexAttrib1fNV\0" "\0" - /* _mesa_function_pool[30358]: Vertex4f (offset 144) */ + /* _mesa_function_pool[30445]: Vertex4f (offset 144) */ "ffff\0" "glVertex4f\0" "\0" - /* _mesa_function_pool[30375]: EvalCoord1d (offset 228) */ + /* _mesa_function_pool[30462]: EvalCoord1d (offset 228) */ "d\0" "glEvalCoord1d\0" "\0" - /* _mesa_function_pool[30392]: Vertex4d (offset 142) */ + /* _mesa_function_pool[30479]: Vertex4d (offset 142) */ "dddd\0" "glVertex4d\0" "\0" - /* _mesa_function_pool[30409]: RasterPos4dv (offset 79) */ + /* _mesa_function_pool[30496]: RasterPos4dv (offset 79) */ "p\0" "glRasterPos4dv\0" "\0" - /* _mesa_function_pool[30427]: UseShaderProgramEXT (will be remapped) */ + /* _mesa_function_pool[30514]: UseShaderProgramEXT (will be remapped) */ "ii\0" "glUseShaderProgramEXT\0" "\0" - /* _mesa_function_pool[30453]: FragmentLightfSGIX (dynamic) */ + /* _mesa_function_pool[30540]: FragmentLightfSGIX (dynamic) */ "iif\0" "glFragmentLightfSGIX\0" "\0" - /* _mesa_function_pool[30479]: TextureStorage2DEXT (will be remapped) */ + /* _mesa_function_pool[30566]: TextureStorage2DEXT (will be remapped) */ "iiiiii\0" "glTextureStorage2DEXT\0" "\0" - /* _mesa_function_pool[30509]: GetCompressedTexImageARB (will be remapped) */ + /* _mesa_function_pool[30596]: GetCompressedTexImageARB (will be remapped) */ "iip\0" "glGetCompressedTexImage\0" "glGetCompressedTexImageARB\0" "\0" - /* _mesa_function_pool[30565]: GetTexGenfv (offset 279) */ + /* _mesa_function_pool[30652]: GetTexGenfv (offset 279) */ "iip\0" "glGetTexGenfv\0" "\0" - /* _mesa_function_pool[30584]: Vertex4i (offset 146) */ + /* _mesa_function_pool[30671]: Vertex4i (offset 146) */ "iiii\0" "glVertex4i\0" "\0" - /* _mesa_function_pool[30601]: VertexWeightPointerEXT (dynamic) */ + /* _mesa_function_pool[30688]: VertexWeightPointerEXT (dynamic) */ "iiip\0" "glVertexWeightPointerEXT\0" "\0" - /* _mesa_function_pool[30632]: GetHistogram (offset 361) */ + /* _mesa_function_pool[30719]: GetHistogram (offset 361) */ "iiiip\0" "glGetHistogram\0" "glGetHistogramEXT\0" "\0" - /* _mesa_function_pool[30672]: ActiveStencilFaceEXT (will be remapped) */ + /* _mesa_function_pool[30759]: ActiveStencilFaceEXT (will be remapped) */ "i\0" "glActiveStencilFaceEXT\0" "\0" - /* _mesa_function_pool[30698]: TexStorage3D (will be remapped) */ + /* _mesa_function_pool[30785]: TexStorage3D (will be remapped) */ "iiiiii\0" "glTexStorage3D\0" "\0" - /* _mesa_function_pool[30721]: StencilFuncSeparateATI (will be remapped) */ + /* _mesa_function_pool[30808]: StencilFuncSeparateATI (will be remapped) */ "iiii\0" "glStencilFuncSeparateATI\0" "\0" - /* _mesa_function_pool[30752]: Materialf (offset 169) */ + /* _mesa_function_pool[30839]: Materialf (offset 169) */ "iif\0" "glMaterialf\0" "\0" - /* _mesa_function_pool[30769]: GetShaderSourceARB (will be remapped) */ + /* _mesa_function_pool[30856]: GetShaderSourceARB (will be remapped) */ "iipp\0" "glGetShaderSource\0" "glGetShaderSourceARB\0" "\0" - /* _mesa_function_pool[30814]: IglooInterfaceSGIX (dynamic) */ + /* _mesa_function_pool[30901]: IglooInterfaceSGIX (dynamic) */ "ip\0" "glIglooInterfaceSGIX\0" "\0" - /* _mesa_function_pool[30839]: Materiali (offset 171) */ + /* _mesa_function_pool[30926]: Materiali (offset 171) */ "iii\0" "glMateriali\0" "\0" - /* _mesa_function_pool[30856]: VertexAttrib4dNV (will be remapped) */ + /* _mesa_function_pool[30943]: VertexAttrib4dNV (will be remapped) */ "idddd\0" "glVertexAttrib4dNV\0" "\0" - /* _mesa_function_pool[30882]: MultiModeDrawElementsIBM (will be remapped) */ + /* _mesa_function_pool[30969]: MultiModeDrawElementsIBM (will be remapped) */ "ppipii\0" "glMultiModeDrawElementsIBM\0" "\0" - /* _mesa_function_pool[30917]: Indexsv (offset 51) */ + /* _mesa_function_pool[31004]: Indexsv (offset 51) */ "p\0" "glIndexsv\0" "\0" - /* _mesa_function_pool[30930]: MultiTexCoord4svARB (offset 407) */ + /* _mesa_function_pool[31017]: MultiTexCoord4svARB (offset 407) */ "ip\0" "glMultiTexCoord4sv\0" "glMultiTexCoord4svARB\0" "\0" - /* _mesa_function_pool[30975]: LightModelfv (offset 164) */ + /* _mesa_function_pool[31062]: LightModelfv (offset 164) */ "ip\0" "glLightModelfv\0" "\0" - /* _mesa_function_pool[30994]: TexCoord2dv (offset 103) */ + /* _mesa_function_pool[31081]: TexCoord2dv (offset 103) */ "p\0" "glTexCoord2dv\0" "\0" - /* _mesa_function_pool[31011]: GenQueriesARB (will be remapped) */ + /* _mesa_function_pool[31098]: GenQueriesARB (will be remapped) */ "ip\0" "glGenQueries\0" "glGenQueriesARB\0" "\0" - /* _mesa_function_pool[31044]: EvalCoord1dv (offset 229) */ + /* _mesa_function_pool[31131]: EvalCoord1dv (offset 229) */ "p\0" "glEvalCoord1dv\0" "\0" - /* _mesa_function_pool[31062]: ReplacementCodeuiVertex3fSUN (dynamic) */ + /* _mesa_function_pool[31149]: ReplacementCodeuiVertex3fSUN (dynamic) */ "ifff\0" "glReplacementCodeuiVertex3fSUN\0" "\0" - /* _mesa_function_pool[31099]: Translated (offset 303) */ + /* _mesa_function_pool[31186]: Translated (offset 303) */ "ddd\0" "glTranslated\0" "\0" - /* _mesa_function_pool[31117]: Translatef (offset 304) */ + /* _mesa_function_pool[31204]: Translatef (offset 304) */ "fff\0" "glTranslatef\0" "\0" - /* _mesa_function_pool[31135]: Uniform3uiEXT (will be remapped) */ + /* _mesa_function_pool[31222]: Uniform3uiEXT (will be remapped) */ "iiii\0" "glUniform3uiEXT\0" "glUniform3ui\0" "\0" - /* _mesa_function_pool[31170]: StencilMask (offset 209) */ + /* _mesa_function_pool[31257]: StencilMask (offset 209) */ "i\0" "glStencilMask\0" "\0" - /* _mesa_function_pool[31187]: Tangent3iEXT (dynamic) */ + /* _mesa_function_pool[31274]: Tangent3iEXT (dynamic) */ "iii\0" "glTangent3iEXT\0" "\0" - /* _mesa_function_pool[31207]: ClampColorARB (will be remapped) */ + /* _mesa_function_pool[31294]: ClampColorARB (will be remapped) */ "ii\0" "glClampColorARB\0" "\0" - /* _mesa_function_pool[31227]: GetLightiv (offset 265) */ + /* _mesa_function_pool[31314]: GetLightiv (offset 265) */ "iip\0" "glGetLightiv\0" "\0" - /* _mesa_function_pool[31245]: GetSamplerParameterIiv (will be remapped) */ + /* _mesa_function_pool[31332]: GetSamplerParameterIiv (will be remapped) */ "iip\0" "glGetSamplerParameterIiv\0" "\0" - /* _mesa_function_pool[31275]: DrawMeshArraysSUN (dynamic) */ + /* _mesa_function_pool[31362]: DrawMeshArraysSUN (dynamic) */ "iiii\0" "glDrawMeshArraysSUN\0" "\0" - /* _mesa_function_pool[31301]: IsList (offset 287) */ + /* _mesa_function_pool[31388]: IsList (offset 287) */ "i\0" "glIsList\0" "\0" - /* _mesa_function_pool[31313]: IsSync (will be remapped) */ + /* _mesa_function_pool[31400]: IsSync (will be remapped) */ "i\0" "glIsSync\0" "\0" - /* _mesa_function_pool[31325]: RenderMode (offset 196) */ + /* _mesa_function_pool[31412]: RenderMode (offset 196) */ "i\0" "glRenderMode\0" "\0" - /* _mesa_function_pool[31341]: GetMapControlPointsNV (dynamic) */ + /* _mesa_function_pool[31428]: GetMapControlPointsNV (dynamic) */ "iiiiiip\0" "glGetMapControlPointsNV\0" "\0" - /* _mesa_function_pool[31374]: DrawBuffersARB (will be remapped) */ + /* _mesa_function_pool[31461]: DrawBuffersARB (will be remapped) */ "ip\0" "glDrawBuffers\0" "glDrawBuffersARB\0" "glDrawBuffersATI\0" "glDrawBuffersNV\0" "\0" - /* _mesa_function_pool[31442]: ClearBufferiv (will be remapped) */ + /* _mesa_function_pool[31529]: ClearBufferiv (will be remapped) */ "iip\0" "glClearBufferiv\0" "\0" - /* _mesa_function_pool[31463]: ProgramLocalParameter4fARB (will be remapped) */ + /* _mesa_function_pool[31550]: ProgramLocalParameter4fARB (will be remapped) */ "iiffff\0" "glProgramLocalParameter4fARB\0" "\0" - /* _mesa_function_pool[31500]: SpriteParameterivSGIX (dynamic) */ + /* _mesa_function_pool[31587]: SpriteParameterivSGIX (dynamic) */ "ip\0" "glSpriteParameterivSGIX\0" "\0" - /* _mesa_function_pool[31528]: ProvokingVertexEXT (will be remapped) */ + /* _mesa_function_pool[31615]: ProvokingVertexEXT (will be remapped) */ "i\0" "glProvokingVertexEXT\0" "glProvokingVertex\0" "\0" - /* _mesa_function_pool[31570]: MultiTexCoord1fARB (offset 378) */ + /* _mesa_function_pool[31657]: MultiTexCoord1fARB (offset 378) */ "if\0" "glMultiTexCoord1f\0" "glMultiTexCoord1fARB\0" "\0" - /* _mesa_function_pool[31613]: LoadName (offset 198) */ + /* _mesa_function_pool[31700]: LoadName (offset 198) */ "i\0" "glLoadName\0" "\0" - /* _mesa_function_pool[31627]: VertexAttribs4ubvNV (will be remapped) */ + /* _mesa_function_pool[31714]: VertexAttribs4ubvNV (will be remapped) */ "iip\0" "glVertexAttribs4ubvNV\0" "\0" - /* _mesa_function_pool[31654]: WeightsvARB (dynamic) */ + /* _mesa_function_pool[31741]: WeightsvARB (dynamic) */ "ip\0" "glWeightsvARB\0" "\0" - /* _mesa_function_pool[31672]: NormalP3ui (will be remapped) */ + /* _mesa_function_pool[31759]: NormalP3ui (will be remapped) */ "ii\0" "glNormalP3ui\0" "\0" - /* _mesa_function_pool[31689]: Uniform1fvARB (will be remapped) */ + /* _mesa_function_pool[31776]: VertexAttribP2ui (will be remapped) */ + "iiii\0" + "glVertexAttribP2ui\0" + "\0" + /* _mesa_function_pool[31801]: Uniform1fvARB (will be remapped) */ "iip\0" "glUniform1fv\0" "glUniform1fvARB\0" "\0" - /* _mesa_function_pool[31723]: CopyTexSubImage1D (offset 325) */ + /* _mesa_function_pool[31835]: CopyTexSubImage1D (offset 325) */ "iiiiii\0" "glCopyTexSubImage1D\0" "glCopyTexSubImage1DEXT\0" "\0" - /* _mesa_function_pool[31774]: CullFace (offset 152) */ + /* _mesa_function_pool[31886]: CullFace (offset 152) */ "i\0" "glCullFace\0" "\0" - /* _mesa_function_pool[31788]: BindTexture (offset 307) */ + /* _mesa_function_pool[31900]: BindTexture (offset 307) */ "ii\0" "glBindTexture\0" "glBindTextureEXT\0" "\0" - /* _mesa_function_pool[31823]: BeginFragmentShaderATI (will be remapped) */ + /* _mesa_function_pool[31935]: BeginFragmentShaderATI (will be remapped) */ "\0" "glBeginFragmentShaderATI\0" "\0" - /* _mesa_function_pool[31850]: MultiTexCoord4fARB (offset 402) */ + /* _mesa_function_pool[31962]: MultiTexCoord4fARB (offset 402) */ "iffff\0" "glMultiTexCoord4f\0" "glMultiTexCoord4fARB\0" "\0" - /* _mesa_function_pool[31896]: VertexAttribs3svNV (will be remapped) */ + /* _mesa_function_pool[32008]: VertexAttribs3svNV (will be remapped) */ "iip\0" "glVertexAttribs3svNV\0" "\0" - /* _mesa_function_pool[31922]: StencilFunc (offset 243) */ + /* _mesa_function_pool[32034]: StencilFunc (offset 243) */ "iii\0" "glStencilFunc\0" "\0" - /* _mesa_function_pool[31941]: CopyPixels (offset 255) */ + /* _mesa_function_pool[32053]: CopyPixels (offset 255) */ "iiiii\0" "glCopyPixels\0" "\0" - /* _mesa_function_pool[31961]: Rectsv (offset 93) */ + /* _mesa_function_pool[32073]: Rectsv (offset 93) */ "pp\0" "glRectsv\0" "\0" - /* _mesa_function_pool[31974]: ReplacementCodeuivSUN (dynamic) */ + /* _mesa_function_pool[32086]: ReplacementCodeuivSUN (dynamic) */ "p\0" "glReplacementCodeuivSUN\0" "\0" - /* _mesa_function_pool[32001]: MultiTexCoordP2uiv (will be remapped) */ + /* _mesa_function_pool[32113]: MultiTexCoordP2uiv (will be remapped) */ "iip\0" "glMultiTexCoordP2uiv\0" "\0" - /* _mesa_function_pool[32027]: EnableVertexAttribArrayARB (will be remapped) */ + /* _mesa_function_pool[32139]: EnableVertexAttribArrayARB (will be remapped) */ "i\0" "glEnableVertexAttribArray\0" "glEnableVertexAttribArrayARB\0" "\0" - /* _mesa_function_pool[32085]: NormalPointervINTEL (dynamic) */ + /* _mesa_function_pool[32197]: NormalPointervINTEL (dynamic) */ "ip\0" "glNormalPointervINTEL\0" "\0" - /* _mesa_function_pool[32111]: CopyConvolutionFilter2D (offset 355) */ + /* _mesa_function_pool[32223]: CopyConvolutionFilter2D (offset 355) */ "iiiiii\0" "glCopyConvolutionFilter2D\0" "glCopyConvolutionFilter2DEXT\0" "\0" - /* _mesa_function_pool[32174]: WindowPos3ivMESA (will be remapped) */ + /* _mesa_function_pool[32286]: WindowPos3ivMESA (will be remapped) */ "p\0" "glWindowPos3iv\0" "glWindowPos3ivARB\0" "glWindowPos3ivMESA\0" "\0" - /* _mesa_function_pool[32229]: CopyBufferSubData (will be remapped) */ + /* _mesa_function_pool[32341]: CopyBufferSubData (will be remapped) */ "iiiii\0" "glCopyBufferSubData\0" "\0" - /* _mesa_function_pool[32256]: NormalPointer (offset 318) */ + /* _mesa_function_pool[32368]: NormalPointer (offset 318) */ "iip\0" "glNormalPointer\0" "\0" - /* _mesa_function_pool[32277]: TexParameterfv (offset 179) */ + /* _mesa_function_pool[32389]: TexParameterfv (offset 179) */ "iip\0" "glTexParameterfv\0" "\0" - /* _mesa_function_pool[32299]: IsBufferARB (will be remapped) */ + /* _mesa_function_pool[32411]: IsBufferARB (will be remapped) */ "i\0" "glIsBuffer\0" "glIsBufferARB\0" "\0" - /* _mesa_function_pool[32327]: WindowPos4iMESA (will be remapped) */ + /* _mesa_function_pool[32439]: WindowPos4iMESA (will be remapped) */ "iiii\0" "glWindowPos4iMESA\0" "\0" - /* _mesa_function_pool[32351]: VertexAttrib4uivARB (will be remapped) */ + /* _mesa_function_pool[32463]: VertexAttrib4uivARB (will be remapped) */ "ip\0" "glVertexAttrib4uiv\0" "glVertexAttrib4uivARB\0" "\0" - /* _mesa_function_pool[32396]: Tangent3bvEXT (dynamic) */ + /* _mesa_function_pool[32508]: Tangent3bvEXT (dynamic) */ "p\0" "glTangent3bvEXT\0" "\0" - /* _mesa_function_pool[32415]: VertexAttribI3uivEXT (will be remapped) */ + /* _mesa_function_pool[32527]: VertexAttribI3uivEXT (will be remapped) */ "ip\0" "glVertexAttribI3uivEXT\0" "glVertexAttribI3uiv\0" "\0" - /* _mesa_function_pool[32462]: UniformMatrix3x4fv (will be remapped) */ + /* _mesa_function_pool[32574]: UniformMatrix3x4fv (will be remapped) */ "iiip\0" "glUniformMatrix3x4fv\0" "\0" - /* _mesa_function_pool[32489]: ClipPlane (offset 150) */ + /* _mesa_function_pool[32601]: ClipPlane (offset 150) */ "ip\0" "glClipPlane\0" "\0" - /* _mesa_function_pool[32505]: Recti (offset 90) */ + /* _mesa_function_pool[32617]: Recti (offset 90) */ "iiii\0" "glRecti\0" "\0" - /* _mesa_function_pool[32519]: TrackMatrixNV (will be remapped) */ + /* _mesa_function_pool[32631]: TrackMatrixNV (will be remapped) */ "iiii\0" "glTrackMatrixNV\0" "\0" - /* _mesa_function_pool[32541]: DrawRangeElementsBaseVertex (will be remapped) */ + /* _mesa_function_pool[32653]: DrawRangeElementsBaseVertex (will be remapped) */ "iiiiipi\0" "glDrawRangeElementsBaseVertex\0" "\0" - /* _mesa_function_pool[32580]: SamplerParameterIuiv (will be remapped) */ + /* _mesa_function_pool[32692]: SamplerParameterIuiv (will be remapped) */ "iip\0" "glSamplerParameterIuiv\0" "\0" - /* _mesa_function_pool[32608]: TexCoordPointervINTEL (dynamic) */ + /* _mesa_function_pool[32720]: TexCoordPointervINTEL (dynamic) */ "iip\0" "glTexCoordPointervINTEL\0" "\0" - /* _mesa_function_pool[32637]: DeleteBuffersARB (will be remapped) */ + /* _mesa_function_pool[32749]: DeleteBuffersARB (will be remapped) */ "ip\0" "glDeleteBuffers\0" "glDeleteBuffersARB\0" "\0" - /* _mesa_function_pool[32676]: PixelTransformParameterfvEXT (dynamic) */ + /* _mesa_function_pool[32788]: PixelTransformParameterfvEXT (dynamic) */ "iip\0" "glPixelTransformParameterfvEXT\0" "\0" - /* _mesa_function_pool[32712]: PrimitiveRestartNV (will be remapped) */ + /* _mesa_function_pool[32824]: PrimitiveRestartNV (will be remapped) */ "\0" "glPrimitiveRestartNV\0" "\0" - /* _mesa_function_pool[32735]: WindowPos4fvMESA (will be remapped) */ + /* _mesa_function_pool[32847]: WindowPos4fvMESA (will be remapped) */ "p\0" "glWindowPos4fvMESA\0" "\0" - /* _mesa_function_pool[32757]: GetPixelMapuiv (offset 272) */ + /* _mesa_function_pool[32869]: GetPixelMapuiv (offset 272) */ "ip\0" "glGetPixelMapuiv\0" "\0" - /* _mesa_function_pool[32778]: Rectf (offset 88) */ + /* _mesa_function_pool[32890]: Rectf (offset 88) */ "ffff\0" "glRectf\0" "\0" - /* _mesa_function_pool[32792]: VertexAttrib1sNV (will be remapped) */ + /* _mesa_function_pool[32904]: VertexAttrib1sNV (will be remapped) */ "ii\0" "glVertexAttrib1sNV\0" "\0" - /* _mesa_function_pool[32815]: Indexfv (offset 47) */ + /* _mesa_function_pool[32927]: Indexfv (offset 47) */ "p\0" "glIndexfv\0" "\0" - /* _mesa_function_pool[32828]: ColorP3uiv (will be remapped) */ + /* _mesa_function_pool[32940]: ColorP3uiv (will be remapped) */ "ip\0" "glColorP3uiv\0" "\0" - /* _mesa_function_pool[32845]: SecondaryColor3svEXT (will be remapped) */ + /* _mesa_function_pool[32957]: SecondaryColor3svEXT (will be remapped) */ "p\0" "glSecondaryColor3sv\0" "glSecondaryColor3svEXT\0" "\0" - /* _mesa_function_pool[32891]: LoadTransposeMatrixfARB (will be remapped) */ + /* _mesa_function_pool[33003]: LoadTransposeMatrixfARB (will be remapped) */ "p\0" "glLoadTransposeMatrixf\0" "glLoadTransposeMatrixfARB\0" "\0" - /* _mesa_function_pool[32943]: GetPointerv (offset 329) */ + /* _mesa_function_pool[33055]: GetPointerv (offset 329) */ "ip\0" "glGetPointerv\0" "glGetPointervEXT\0" "\0" - /* _mesa_function_pool[32978]: Tangent3bEXT (dynamic) */ + /* _mesa_function_pool[33090]: Tangent3bEXT (dynamic) */ "iii\0" "glTangent3bEXT\0" "\0" - /* _mesa_function_pool[32998]: CombinerParameterfNV (will be remapped) */ + /* _mesa_function_pool[33110]: CombinerParameterfNV (will be remapped) */ "if\0" "glCombinerParameterfNV\0" "\0" - /* _mesa_function_pool[33025]: IndexMask (offset 212) */ + /* _mesa_function_pool[33137]: IndexMask (offset 212) */ "i\0" "glIndexMask\0" "\0" - /* _mesa_function_pool[33040]: BindProgramNV (will be remapped) */ + /* _mesa_function_pool[33152]: BindProgramNV (will be remapped) */ "ii\0" "glBindProgramARB\0" "glBindProgramNV\0" "\0" - /* _mesa_function_pool[33077]: VertexAttrib4svARB (will be remapped) */ + /* _mesa_function_pool[33189]: VertexAttrib4svARB (will be remapped) */ "ip\0" "glVertexAttrib4sv\0" "glVertexAttrib4svARB\0" "\0" - /* _mesa_function_pool[33120]: GetFloatv (offset 262) */ + /* _mesa_function_pool[33232]: GetFloatv (offset 262) */ "ip\0" "glGetFloatv\0" "\0" - /* _mesa_function_pool[33136]: CreateDebugObjectMESA (dynamic) */ + /* _mesa_function_pool[33248]: CreateDebugObjectMESA (dynamic) */ "\0" "glCreateDebugObjectMESA\0" "\0" - /* _mesa_function_pool[33162]: GetShaderiv (will be remapped) */ + /* _mesa_function_pool[33274]: GetShaderiv (will be remapped) */ "iip\0" "glGetShaderiv\0" "\0" - /* _mesa_function_pool[33181]: ClientWaitSync (will be remapped) */ + /* _mesa_function_pool[33293]: ClientWaitSync (will be remapped) */ "iii\0" "glClientWaitSync\0" "\0" - /* _mesa_function_pool[33203]: TexCoord4s (offset 124) */ + /* _mesa_function_pool[33315]: TexCoord4s (offset 124) */ "iiii\0" "glTexCoord4s\0" "\0" - /* _mesa_function_pool[33222]: TexCoord3sv (offset 117) */ + /* _mesa_function_pool[33334]: TexCoord3sv (offset 117) */ "p\0" "glTexCoord3sv\0" "\0" - /* _mesa_function_pool[33239]: BindFragmentShaderATI (will be remapped) */ + /* _mesa_function_pool[33351]: BindFragmentShaderATI (will be remapped) */ "i\0" "glBindFragmentShaderATI\0" "\0" - /* _mesa_function_pool[33266]: PopAttrib (offset 218) */ + /* _mesa_function_pool[33378]: PopAttrib (offset 218) */ "\0" "glPopAttrib\0" "\0" - /* _mesa_function_pool[33280]: Fogfv (offset 154) */ + /* _mesa_function_pool[33392]: Fogfv (offset 154) */ "ip\0" "glFogfv\0" "\0" - /* _mesa_function_pool[33292]: UnmapBufferARB (will be remapped) */ + /* _mesa_function_pool[33404]: UnmapBufferARB (will be remapped) */ "i\0" "glUnmapBuffer\0" "glUnmapBufferARB\0" "\0" - /* _mesa_function_pool[33326]: InitNames (offset 197) */ + /* _mesa_function_pool[33438]: InitNames (offset 197) */ "\0" "glInitNames\0" "\0" - /* _mesa_function_pool[33340]: Normal3sv (offset 61) */ + /* _mesa_function_pool[33452]: Normal3sv (offset 61) */ "p\0" "glNormal3sv\0" "\0" - /* _mesa_function_pool[33355]: Minmax (offset 368) */ + /* _mesa_function_pool[33467]: Minmax (offset 368) */ "iii\0" "glMinmax\0" "glMinmaxEXT\0" "\0" - /* _mesa_function_pool[33381]: TexCoord4d (offset 118) */ + /* _mesa_function_pool[33493]: TexCoord4d (offset 118) */ "dddd\0" "glTexCoord4d\0" "\0" - /* _mesa_function_pool[33400]: TexCoord4f (offset 120) */ + /* _mesa_function_pool[33512]: DeformationMap3dSGIX (dynamic) */ + "iddiiddiiddiip\0" + "glDeformationMap3dSGIX\0" + "\0" + /* _mesa_function_pool[33551]: TexCoord4f (offset 120) */ "ffff\0" "glTexCoord4f\0" "\0" - /* _mesa_function_pool[33419]: FogCoorddvEXT (will be remapped) */ + /* _mesa_function_pool[33570]: FogCoorddvEXT (will be remapped) */ "p\0" "glFogCoorddv\0" "glFogCoorddvEXT\0" "\0" - /* _mesa_function_pool[33451]: FinishTextureSUNX (dynamic) */ + /* _mesa_function_pool[33602]: FinishTextureSUNX (dynamic) */ "\0" "glFinishTextureSUNX\0" "\0" - /* _mesa_function_pool[33473]: GetFragmentLightfvSGIX (dynamic) */ + /* _mesa_function_pool[33624]: GetFragmentLightfvSGIX (dynamic) */ "iip\0" "glGetFragmentLightfvSGIX\0" "\0" - /* _mesa_function_pool[33503]: Binormal3fvEXT (dynamic) */ + /* _mesa_function_pool[33654]: Binormal3fvEXT (dynamic) */ "p\0" "glBinormal3fvEXT\0" "\0" - /* _mesa_function_pool[33523]: GetBooleanv (offset 258) */ + /* _mesa_function_pool[33674]: GetBooleanv (offset 258) */ "ip\0" "glGetBooleanv\0" "\0" - /* _mesa_function_pool[33541]: ColorFragmentOp3ATI (will be remapped) */ + /* _mesa_function_pool[33692]: ColorFragmentOp3ATI (will be remapped) */ "iiiiiiiiiiiii\0" "glColorFragmentOp3ATI\0" "\0" - /* _mesa_function_pool[33578]: Hint (offset 158) */ + /* _mesa_function_pool[33729]: Hint (offset 158) */ "ii\0" "glHint\0" "\0" - /* _mesa_function_pool[33589]: Color4dv (offset 28) */ + /* _mesa_function_pool[33740]: Color4dv (offset 28) */ "p\0" "glColor4dv\0" "\0" - /* _mesa_function_pool[33603]: VertexAttrib2svARB (will be remapped) */ + /* _mesa_function_pool[33754]: VertexAttrib2svARB (will be remapped) */ "ip\0" "glVertexAttrib2sv\0" "glVertexAttrib2svARB\0" "\0" - /* _mesa_function_pool[33646]: AreProgramsResidentNV (will be remapped) */ + /* _mesa_function_pool[33797]: AreProgramsResidentNV (will be remapped) */ "ipp\0" "glAreProgramsResidentNV\0" "\0" - /* _mesa_function_pool[33675]: WindowPos3svMESA (will be remapped) */ + /* _mesa_function_pool[33826]: WindowPos3svMESA (will be remapped) */ "p\0" "glWindowPos3sv\0" "glWindowPos3svARB\0" "glWindowPos3svMESA\0" "\0" - /* _mesa_function_pool[33730]: CopyColorSubTable (offset 347) */ + /* _mesa_function_pool[33881]: CopyColorSubTable (offset 347) */ "iiiii\0" "glCopyColorSubTable\0" "glCopyColorSubTableEXT\0" "\0" - /* _mesa_function_pool[33780]: WeightdvARB (dynamic) */ + /* _mesa_function_pool[33931]: WeightdvARB (dynamic) */ "ip\0" "glWeightdvARB\0" "\0" - /* _mesa_function_pool[33798]: DeleteRenderbuffersEXT (will be remapped) */ + /* _mesa_function_pool[33949]: DeleteRenderbuffersEXT (will be remapped) */ "ip\0" "glDeleteRenderbuffers\0" "glDeleteRenderbuffersEXT\0" "\0" - /* _mesa_function_pool[33849]: VertexAttrib4NubvARB (will be remapped) */ + /* _mesa_function_pool[34000]: VertexAttrib4NubvARB (will be remapped) */ "ip\0" "glVertexAttrib4Nubv\0" "glVertexAttrib4NubvARB\0" "\0" - /* _mesa_function_pool[33896]: VertexAttrib3dvNV (will be remapped) */ + /* _mesa_function_pool[34047]: VertexAttrib3dvNV (will be remapped) */ "ip\0" "glVertexAttrib3dvNV\0" "\0" - /* _mesa_function_pool[33920]: GetObjectParameterfvARB (will be remapped) */ + /* _mesa_function_pool[34071]: GetObjectParameterfvARB (will be remapped) */ "iip\0" "glGetObjectParameterfvARB\0" "\0" - /* _mesa_function_pool[33951]: Vertex4iv (offset 147) */ + /* _mesa_function_pool[34102]: Vertex4iv (offset 147) */ "p\0" "glVertex4iv\0" "\0" - /* _mesa_function_pool[33966]: GetProgramEnvParameterdvARB (will be remapped) */ + /* _mesa_function_pool[34117]: GetProgramEnvParameterdvARB (will be remapped) */ "iip\0" "glGetProgramEnvParameterdvARB\0" "\0" - /* _mesa_function_pool[34001]: TexCoord4dv (offset 119) */ + /* _mesa_function_pool[34152]: TexCoord4dv (offset 119) */ "p\0" "glTexCoord4dv\0" "\0" - /* _mesa_function_pool[34018]: LockArraysEXT (will be remapped) */ + /* _mesa_function_pool[34169]: LockArraysEXT (will be remapped) */ "ii\0" "glLockArraysEXT\0" "\0" - /* _mesa_function_pool[34038]: Begin (offset 7) */ + /* _mesa_function_pool[34189]: Begin (offset 7) */ "i\0" "glBegin\0" "\0" - /* _mesa_function_pool[34049]: LightModeli (offset 165) */ + /* _mesa_function_pool[34200]: LightModeli (offset 165) */ "ii\0" "glLightModeli\0" "\0" - /* _mesa_function_pool[34067]: VertexAttribI4ivEXT (will be remapped) */ + /* _mesa_function_pool[34218]: VertexAttribI4ivEXT (will be remapped) */ "ip\0" "glVertexAttribI4ivEXT\0" "glVertexAttribI4iv\0" "\0" - /* _mesa_function_pool[34112]: Rectfv (offset 89) */ + /* _mesa_function_pool[34263]: Rectfv (offset 89) */ "pp\0" "glRectfv\0" "\0" - /* _mesa_function_pool[34125]: BlendEquationSeparateiARB (will be remapped) */ - "iii\0" - "glBlendEquationSeparateiARB\0" - "glBlendEquationSeparateIndexedAMD\0" - "\0" - /* _mesa_function_pool[34192]: LightModelf (offset 163) */ + /* _mesa_function_pool[34276]: LightModelf (offset 163) */ "if\0" "glLightModelf\0" "\0" - /* _mesa_function_pool[34210]: GetTexParameterfv (offset 282) */ + /* _mesa_function_pool[34294]: GetTexParameterfv (offset 282) */ "iip\0" "glGetTexParameterfv\0" "\0" - /* _mesa_function_pool[34235]: GetLightfv (offset 264) */ + /* _mesa_function_pool[34319]: GetLightfv (offset 264) */ "iip\0" "glGetLightfv\0" "\0" - /* _mesa_function_pool[34253]: PixelTransformParameterivEXT (dynamic) */ + /* _mesa_function_pool[34337]: PixelTransformParameterivEXT (dynamic) */ "iip\0" "glPixelTransformParameterivEXT\0" "\0" - /* _mesa_function_pool[34289]: BinormalPointerEXT (dynamic) */ + /* _mesa_function_pool[34373]: BinormalPointerEXT (dynamic) */ "iip\0" "glBinormalPointerEXT\0" "\0" - /* _mesa_function_pool[34315]: VertexAttrib1dNV (will be remapped) */ + /* _mesa_function_pool[34399]: VertexAttrib1dNV (will be remapped) */ "id\0" "glVertexAttrib1dNV\0" "\0" - /* _mesa_function_pool[34338]: GetCombinerInputParameterivNV (will be remapped) */ + /* _mesa_function_pool[34422]: GetCombinerInputParameterivNV (will be remapped) */ "iiiip\0" "glGetCombinerInputParameterivNV\0" "\0" - /* _mesa_function_pool[34377]: Disable (offset 214) */ + /* _mesa_function_pool[34461]: Disable (offset 214) */ "i\0" "glDisable\0" "\0" - /* _mesa_function_pool[34390]: MultiTexCoord2fvARB (offset 387) */ + /* _mesa_function_pool[34474]: MultiTexCoord2fvARB (offset 387) */ "ip\0" "glMultiTexCoord2fv\0" "glMultiTexCoord2fvARB\0" "\0" - /* _mesa_function_pool[34435]: GetRenderbufferParameterivEXT (will be remapped) */ + /* _mesa_function_pool[34519]: GetRenderbufferParameterivEXT (will be remapped) */ "iip\0" "glGetRenderbufferParameteriv\0" "glGetRenderbufferParameterivEXT\0" "\0" - /* _mesa_function_pool[34501]: CombinerParameterivNV (will be remapped) */ + /* _mesa_function_pool[34585]: CombinerParameterivNV (will be remapped) */ "ip\0" "glCombinerParameterivNV\0" "\0" - /* _mesa_function_pool[34529]: GenFragmentShadersATI (will be remapped) */ + /* _mesa_function_pool[34613]: GenFragmentShadersATI (will be remapped) */ "i\0" "glGenFragmentShadersATI\0" "\0" - /* _mesa_function_pool[34556]: DrawArrays (offset 310) */ + /* _mesa_function_pool[34640]: DrawArrays (offset 310) */ "iii\0" "glDrawArrays\0" "glDrawArraysEXT\0" "\0" - /* _mesa_function_pool[34590]: WeightuivARB (dynamic) */ + /* _mesa_function_pool[34674]: WeightuivARB (dynamic) */ "ip\0" "glWeightuivARB\0" "\0" - /* _mesa_function_pool[34609]: GetVertexAttribIivEXT (will be remapped) */ + /* _mesa_function_pool[34693]: GetVertexAttribIivEXT (will be remapped) */ "iip\0" "glGetVertexAttribIivEXT\0" "glGetVertexAttribIiv\0" "\0" - /* _mesa_function_pool[34659]: VertexAttrib2sARB (will be remapped) */ + /* _mesa_function_pool[34743]: VertexAttrib2sARB (will be remapped) */ "iii\0" "glVertexAttrib2s\0" "glVertexAttrib2sARB\0" "\0" - /* _mesa_function_pool[34701]: GetnTexImageARB (will be remapped) */ + /* _mesa_function_pool[34785]: GetnTexImageARB (will be remapped) */ "iiiiip\0" "glGetnTexImageARB\0" "\0" - /* _mesa_function_pool[34727]: ColorMask (offset 210) */ + /* _mesa_function_pool[34811]: ColorMask (offset 210) */ "iiii\0" "glColorMask\0" "\0" - /* _mesa_function_pool[34745]: GenAsyncMarkersSGIX (dynamic) */ + /* _mesa_function_pool[34829]: GenAsyncMarkersSGIX (dynamic) */ "i\0" "glGenAsyncMarkersSGIX\0" "\0" - /* _mesa_function_pool[34770]: DebugMessageInsertARB (will be remapped) */ + /* _mesa_function_pool[34854]: DebugMessageInsertARB (will be remapped) */ "iiiiip\0" "glDebugMessageInsertARB\0" "\0" - /* _mesa_function_pool[34802]: GetListParameterivSGIX (dynamic) */ + /* _mesa_function_pool[34886]: GetListParameterivSGIX (dynamic) */ "iip\0" "glGetListParameterivSGIX\0" "\0" - /* _mesa_function_pool[34832]: BindBufferARB (will be remapped) */ + /* _mesa_function_pool[34916]: BindBufferARB (will be remapped) */ "ii\0" "glBindBuffer\0" "glBindBufferARB\0" "\0" - /* _mesa_function_pool[34865]: GetInfoLogARB (will be remapped) */ + /* _mesa_function_pool[34949]: GetInfoLogARB (will be remapped) */ "iipp\0" "glGetInfoLogARB\0" "\0" - /* _mesa_function_pool[34887]: RasterPos4iv (offset 83) */ + /* _mesa_function_pool[34971]: RasterPos4iv (offset 83) */ "p\0" "glRasterPos4iv\0" "\0" - /* _mesa_function_pool[34905]: Enable (offset 215) */ + /* _mesa_function_pool[34989]: Enable (offset 215) */ "i\0" "glEnable\0" "\0" - /* _mesa_function_pool[34917]: LineStipple (offset 167) */ + /* _mesa_function_pool[35001]: LineStipple (offset 167) */ "ii\0" "glLineStipple\0" "\0" - /* _mesa_function_pool[34935]: VertexAttribP2ui (will be remapped) */ - "iiii\0" - "glVertexAttribP2ui\0" - "\0" - /* _mesa_function_pool[34960]: VertexAttribs4svNV (will be remapped) */ + /* _mesa_function_pool[35019]: VertexAttribs4svNV (will be remapped) */ "iip\0" "glVertexAttribs4svNV\0" "\0" - /* _mesa_function_pool[34986]: EdgeFlagPointerListIBM (dynamic) */ + /* _mesa_function_pool[35045]: EdgeFlagPointerListIBM (dynamic) */ "ipi\0" "glEdgeFlagPointerListIBM\0" "\0" - /* _mesa_function_pool[35016]: UniformMatrix3x2fv (will be remapped) */ + /* _mesa_function_pool[35075]: UniformMatrix3x2fv (will be remapped) */ "iiip\0" "glUniformMatrix3x2fv\0" "\0" - /* _mesa_function_pool[35043]: GetMinmaxParameterfv (offset 365) */ + /* _mesa_function_pool[35102]: GetMinmaxParameterfv (offset 365) */ "iip\0" "glGetMinmaxParameterfv\0" "glGetMinmaxParameterfvEXT\0" "\0" - /* _mesa_function_pool[35097]: VertexAttrib1fvARB (will be remapped) */ + /* _mesa_function_pool[35156]: VertexAttrib1fvARB (will be remapped) */ "ip\0" "glVertexAttrib1fv\0" "glVertexAttrib1fvARB\0" "\0" - /* _mesa_function_pool[35140]: GenBuffersARB (will be remapped) */ + /* _mesa_function_pool[35199]: GenBuffersARB (will be remapped) */ "ip\0" "glGenBuffers\0" "glGenBuffersARB\0" "\0" - /* _mesa_function_pool[35173]: VertexAttribs1svNV (will be remapped) */ + /* _mesa_function_pool[35232]: VertexAttribs1svNV (will be remapped) */ "iip\0" "glVertexAttribs1svNV\0" "\0" - /* _mesa_function_pool[35199]: Vertex3fv (offset 137) */ + /* _mesa_function_pool[35258]: Vertex3fv (offset 137) */ "p\0" "glVertex3fv\0" "\0" - /* _mesa_function_pool[35214]: GetTexBumpParameterivATI (will be remapped) */ + /* _mesa_function_pool[35273]: GetTexBumpParameterivATI (will be remapped) */ "ip\0" "glGetTexBumpParameterivATI\0" "\0" - /* _mesa_function_pool[35245]: Binormal3bEXT (dynamic) */ + /* _mesa_function_pool[35304]: Binormal3bEXT (dynamic) */ "iii\0" "glBinormal3bEXT\0" "\0" - /* _mesa_function_pool[35266]: FragmentMaterialivSGIX (dynamic) */ + /* _mesa_function_pool[35325]: FragmentMaterialivSGIX (dynamic) */ "iip\0" "glFragmentMaterialivSGIX\0" "\0" - /* _mesa_function_pool[35296]: IsRenderbufferEXT (will be remapped) */ + /* _mesa_function_pool[35355]: IsRenderbufferEXT (will be remapped) */ "i\0" "glIsRenderbuffer\0" "glIsRenderbufferEXT\0" "\0" - /* _mesa_function_pool[35336]: GenProgramsNV (will be remapped) */ + /* _mesa_function_pool[35395]: GenProgramsNV (will be remapped) */ "ip\0" "glGenProgramsARB\0" "glGenProgramsNV\0" "\0" - /* _mesa_function_pool[35373]: VertexAttrib4dvNV (will be remapped) */ + /* _mesa_function_pool[35432]: VertexAttrib4dvNV (will be remapped) */ "ip\0" "glVertexAttrib4dvNV\0" "\0" - /* _mesa_function_pool[35397]: EndFragmentShaderATI (will be remapped) */ + /* _mesa_function_pool[35456]: EndFragmentShaderATI (will be remapped) */ "\0" "glEndFragmentShaderATI\0" "\0" - /* _mesa_function_pool[35422]: Binormal3iEXT (dynamic) */ + /* _mesa_function_pool[35481]: Binormal3iEXT (dynamic) */ "iii\0" "glBinormal3iEXT\0" "\0" - /* _mesa_function_pool[35443]: WindowPos2fMESA (will be remapped) */ + /* _mesa_function_pool[35502]: WindowPos2fMESA (will be remapped) */ "ff\0" "glWindowPos2f\0" "glWindowPos2fARB\0" @@ -5128,685 +5136,687 @@ static const char _mesa_function_pool[] = /* these functions need to be remapped */ static const struct gl_function_pool_remap MESA_remap_table_functions[] = { - { 1680, AttachShader_remap_index }, - { 10765, CreateProgram_remap_index }, - { 24655, CreateShader_remap_index }, - { 27229, DeleteProgram_remap_index }, - { 19968, DeleteShader_remap_index }, - { 25148, DetachShader_remap_index }, - { 19198, GetAttachedShaders_remap_index }, - { 5460, GetProgramInfoLog_remap_index }, - { 444, GetProgramiv_remap_index }, - { 7308, GetShaderInfoLog_remap_index }, - { 33162, GetShaderiv_remap_index }, - { 14314, IsProgram_remap_index }, - { 13215, IsShader_remap_index }, - { 10895, StencilFuncSeparate_remap_index }, - { 4439, StencilMaskSeparate_remap_index }, - { 8373, StencilOpSeparate_remap_index }, - { 23889, UniformMatrix2x3fv_remap_index }, - { 3166, UniformMatrix2x4fv_remap_index }, - { 35016, UniformMatrix3x2fv_remap_index }, - { 32462, UniformMatrix3x4fv_remap_index }, - { 17372, UniformMatrix4x2fv_remap_index }, - { 3657, UniformMatrix4x3fv_remap_index }, - { 5683, ClampColor_remap_index }, - { 19252, ClearBufferfi_remap_index }, - { 18668, ClearBufferfv_remap_index }, - { 31442, ClearBufferiv_remap_index }, - { 14519, ClearBufferuiv_remap_index }, - { 21391, GetStringi_remap_index }, - { 19810, TexBuffer_remap_index }, - { 977, FramebufferTexture_remap_index }, - { 28284, GetBufferParameteri64v_remap_index }, - { 10995, GetInteger64i_v_remap_index }, - { 24969, VertexAttribDivisor_remap_index }, - { 10783, LoadTransposeMatrixdARB_remap_index }, - { 32891, LoadTransposeMatrixfARB_remap_index }, - { 6368, MultTransposeMatrixdARB_remap_index }, - { 25335, MultTransposeMatrixfARB_remap_index }, - { 255, SampleCoverageARB_remap_index }, - { 6571, CompressedTexImage1DARB_remap_index }, - { 25863, CompressedTexImage2DARB_remap_index }, - { 4502, CompressedTexImage3DARB_remap_index }, - { 19540, CompressedTexSubImage1DARB_remap_index }, - { 2236, CompressedTexSubImage2DARB_remap_index }, - { 21813, CompressedTexSubImage3DARB_remap_index }, - { 30509, GetCompressedTexImageARB_remap_index }, - { 4249, DisableVertexAttribArrayARB_remap_index }, - { 32027, EnableVertexAttribArrayARB_remap_index }, - { 33966, GetProgramEnvParameterdvARB_remap_index }, - { 25215, GetProgramEnvParameterfvARB_remap_index }, - { 29313, GetProgramLocalParameterdvARB_remap_index }, - { 8849, GetProgramLocalParameterfvARB_remap_index }, - { 19716, GetProgramStringARB_remap_index }, - { 29508, GetProgramivARB_remap_index }, - { 22008, GetVertexAttribdvARB_remap_index }, - { 17180, GetVertexAttribfvARB_remap_index }, - { 10574, GetVertexAttribivARB_remap_index }, - { 20828, ProgramEnvParameter4dARB_remap_index }, - { 26979, ProgramEnvParameter4dvARB_remap_index }, - { 17966, ProgramEnvParameter4fARB_remap_index }, - { 9724, ProgramEnvParameter4fvARB_remap_index }, - { 4465, ProgramLocalParameter4dARB_remap_index }, - { 14024, ProgramLocalParameter4dvARB_remap_index }, - { 31463, ProgramLocalParameter4fARB_remap_index }, - { 27625, ProgramLocalParameter4fvARB_remap_index }, - { 30202, ProgramStringARB_remap_index }, - { 21122, VertexAttrib1dARB_remap_index }, - { 16781, VertexAttrib1dvARB_remap_index }, - { 4661, VertexAttrib1fARB_remap_index }, - { 35097, VertexAttrib1fvARB_remap_index }, - { 7899, VertexAttrib1sARB_remap_index }, - { 2431, VertexAttrib1svARB_remap_index }, - { 16194, VertexAttrib2dARB_remap_index }, - { 18689, VertexAttrib2dvARB_remap_index }, - { 1763, VertexAttrib2fARB_remap_index }, - { 18802, VertexAttrib2fvARB_remap_index }, - { 34659, VertexAttrib2sARB_remap_index }, - { 33603, VertexAttrib2svARB_remap_index }, - { 12199, VertexAttrib3dARB_remap_index }, - { 9391, VertexAttrib3dvARB_remap_index }, - { 1850, VertexAttrib3fARB_remap_index }, - { 24206, VertexAttrib3fvARB_remap_index }, - { 30049, VertexAttrib3sARB_remap_index }, - { 21750, VertexAttrib3svARB_remap_index }, - { 5503, VertexAttrib4NbvARB_remap_index }, - { 19075, VertexAttrib4NivARB_remap_index }, - { 24161, VertexAttrib4NsvARB_remap_index }, - { 25167, VertexAttrib4NubARB_remap_index }, - { 33849, VertexAttrib4NubvARB_remap_index }, - { 20479, VertexAttrib4NuivARB_remap_index }, - { 3487, VertexAttrib4NusvARB_remap_index }, - { 11788, VertexAttrib4bvARB_remap_index }, - { 28686, VertexAttrib4dARB_remap_index }, - { 22823, VertexAttrib4dvARB_remap_index }, - { 12353, VertexAttrib4fARB_remap_index }, - { 12757, VertexAttrib4fvARB_remap_index }, - { 11138, VertexAttrib4ivARB_remap_index }, - { 18482, VertexAttrib4sARB_remap_index }, - { 33077, VertexAttrib4svARB_remap_index }, - { 17771, VertexAttrib4ubvARB_remap_index }, - { 32351, VertexAttrib4uivARB_remap_index }, - { 21561, VertexAttrib4usvARB_remap_index }, - { 23684, VertexAttribPointerARB_remap_index }, - { 34832, BindBufferARB_remap_index }, - { 7606, BufferDataARB_remap_index }, - { 1601, BufferSubDataARB_remap_index }, - { 32637, DeleteBuffersARB_remap_index }, - { 35140, GenBuffersARB_remap_index }, - { 18845, GetBufferParameterivARB_remap_index }, - { 17918, GetBufferPointervARB_remap_index }, - { 1554, GetBufferSubDataARB_remap_index }, - { 32299, IsBufferARB_remap_index }, - { 28128, MapBufferARB_remap_index }, - { 33292, UnmapBufferARB_remap_index }, - { 351, BeginQueryARB_remap_index }, - { 21217, DeleteQueriesARB_remap_index }, - { 13076, EndQueryARB_remap_index }, - { 31011, GenQueriesARB_remap_index }, - { 2128, GetQueryObjectivARB_remap_index }, - { 18526, GetQueryObjectuivARB_remap_index }, - { 1907, GetQueryivARB_remap_index }, - { 21468, IsQueryARB_remap_index }, - { 9001, AttachObjectARB_remap_index }, - { 19930, CompileShaderARB_remap_index }, - { 3599, CreateProgramObjectARB_remap_index }, - { 7551, CreateShaderObjectARB_remap_index }, - { 15477, DeleteObjectARB_remap_index }, - { 25654, DetachObjectARB_remap_index }, - { 12821, GetActiveUniformARB_remap_index }, - { 10216, GetAttachedObjectsARB_remap_index }, - { 10523, GetHandleARB_remap_index }, - { 34865, GetInfoLogARB_remap_index }, - { 33920, GetObjectParameterfvARB_remap_index }, - { 29187, GetObjectParameterivARB_remap_index }, - { 30769, GetShaderSourceARB_remap_index }, - { 29909, GetUniformLocationARB_remap_index }, - { 25437, GetUniformfvARB_remap_index }, - { 13599, GetUniformivARB_remap_index }, - { 21606, LinkProgramARB_remap_index }, - { 21664, ShaderSourceARB_remap_index }, - { 8273, Uniform1fARB_remap_index }, - { 31689, Uniform1fvARB_remap_index }, - { 23632, Uniform1iARB_remap_index }, - { 22461, Uniform1ivARB_remap_index }, - { 2380, Uniform2fARB_remap_index }, - { 15313, Uniform2fvARB_remap_index }, - { 27996, Uniform2iARB_remap_index }, - { 2517, Uniform2ivARB_remap_index }, - { 20040, Uniform3fARB_remap_index }, - { 10246, Uniform3fvARB_remap_index }, - { 7162, Uniform3iARB_remap_index }, - { 18024, Uniform3ivARB_remap_index }, - { 20634, Uniform4fARB_remap_index }, - { 25301, Uniform4fvARB_remap_index }, - { 26588, Uniform4iARB_remap_index }, - { 21974, Uniform4ivARB_remap_index }, - { 9053, UniformMatrix2fvARB_remap_index }, + { 1661, AttachShader_remap_index }, + { 10754, CreateProgram_remap_index }, + { 24790, CreateShader_remap_index }, + { 27400, DeleteProgram_remap_index }, + { 20100, DeleteShader_remap_index }, + { 25319, DetachShader_remap_index }, + { 19330, GetAttachedShaders_remap_index }, + { 5407, GetProgramInfoLog_remap_index }, + { 425, GetProgramiv_remap_index }, + { 7297, GetShaderInfoLog_remap_index }, + { 33274, GetShaderiv_remap_index }, + { 14303, IsProgram_remap_index }, + { 13204, IsShader_remap_index }, + { 10884, StencilFuncSeparate_remap_index }, + { 4334, StencilMaskSeparate_remap_index }, + { 8362, StencilOpSeparate_remap_index }, + { 24024, UniformMatrix2x3fv_remap_index }, + { 3108, UniformMatrix2x4fv_remap_index }, + { 35075, UniformMatrix3x2fv_remap_index }, + { 32574, UniformMatrix3x4fv_remap_index }, + { 17432, UniformMatrix4x2fv_remap_index }, + { 3599, UniformMatrix4x3fv_remap_index }, + { 5630, ClampColor_remap_index }, + { 19384, ClearBufferfi_remap_index }, + { 18800, ClearBufferfv_remap_index }, + { 31529, ClearBufferiv_remap_index }, + { 14508, ClearBufferuiv_remap_index }, + { 21523, GetStringi_remap_index }, + { 19942, TexBuffer_remap_index }, + { 958, FramebufferTexture_remap_index }, + { 28455, GetBufferParameteri64v_remap_index }, + { 10984, GetInteger64i_v_remap_index }, + { 25104, VertexAttribDivisor_remap_index }, + { 10772, LoadTransposeMatrixdARB_remap_index }, + { 33003, LoadTransposeMatrixfARB_remap_index }, + { 6315, MultTransposeMatrixdARB_remap_index }, + { 25506, MultTransposeMatrixfARB_remap_index }, + { 236, SampleCoverageARB_remap_index }, + { 6560, CompressedTexImage1DARB_remap_index }, + { 26034, CompressedTexImage2DARB_remap_index }, + { 4397, CompressedTexImage3DARB_remap_index }, + { 19672, CompressedTexSubImage1DARB_remap_index }, + { 2217, CompressedTexSubImage2DARB_remap_index }, + { 21945, CompressedTexSubImage3DARB_remap_index }, + { 30596, GetCompressedTexImageARB_remap_index }, + { 4191, DisableVertexAttribArrayARB_remap_index }, + { 32139, EnableVertexAttribArrayARB_remap_index }, + { 34117, GetProgramEnvParameterdvARB_remap_index }, + { 25386, GetProgramEnvParameterfvARB_remap_index }, + { 29452, GetProgramLocalParameterdvARB_remap_index }, + { 8838, GetProgramLocalParameterfvARB_remap_index }, + { 19848, GetProgramStringARB_remap_index }, + { 29647, GetProgramivARB_remap_index }, + { 22140, GetVertexAttribdvARB_remap_index }, + { 17240, GetVertexAttribfvARB_remap_index }, + { 10563, GetVertexAttribivARB_remap_index }, + { 20960, ProgramEnvParameter4dARB_remap_index }, + { 27150, ProgramEnvParameter4dvARB_remap_index }, + { 18098, ProgramEnvParameter4fARB_remap_index }, + { 9713, ProgramEnvParameter4fvARB_remap_index }, + { 4360, ProgramLocalParameter4dARB_remap_index }, + { 14013, ProgramLocalParameter4dvARB_remap_index }, + { 31550, ProgramLocalParameter4fARB_remap_index }, + { 27796, ProgramLocalParameter4fvARB_remap_index }, + { 30289, ProgramStringARB_remap_index }, + { 21254, VertexAttrib1dARB_remap_index }, + { 16841, VertexAttrib1dvARB_remap_index }, + { 4556, VertexAttrib1fARB_remap_index }, + { 35156, VertexAttrib1fvARB_remap_index }, + { 7888, VertexAttrib1sARB_remap_index }, + { 2412, VertexAttrib1svARB_remap_index }, + { 16254, VertexAttrib2dARB_remap_index }, + { 18821, VertexAttrib2dvARB_remap_index }, + { 1744, VertexAttrib2fARB_remap_index }, + { 18934, VertexAttrib2fvARB_remap_index }, + { 34743, VertexAttrib2sARB_remap_index }, + { 33754, VertexAttrib2svARB_remap_index }, + { 12188, VertexAttrib3dARB_remap_index }, + { 9380, VertexAttrib3dvARB_remap_index }, + { 1831, VertexAttrib3fARB_remap_index }, + { 24341, VertexAttrib3fvARB_remap_index }, + { 30136, VertexAttrib3sARB_remap_index }, + { 21882, VertexAttrib3svARB_remap_index }, + { 5450, VertexAttrib4NbvARB_remap_index }, + { 19207, VertexAttrib4NivARB_remap_index }, + { 24296, VertexAttrib4NsvARB_remap_index }, + { 25338, VertexAttrib4NubARB_remap_index }, + { 34000, VertexAttrib4NubvARB_remap_index }, + { 20611, VertexAttrib4NuivARB_remap_index }, + { 3429, VertexAttrib4NusvARB_remap_index }, + { 11777, VertexAttrib4bvARB_remap_index }, + { 28825, VertexAttrib4dARB_remap_index }, + { 22955, VertexAttrib4dvARB_remap_index }, + { 12342, VertexAttrib4fARB_remap_index }, + { 12746, VertexAttrib4fvARB_remap_index }, + { 11127, VertexAttrib4ivARB_remap_index }, + { 18614, VertexAttrib4sARB_remap_index }, + { 33189, VertexAttrib4svARB_remap_index }, + { 17903, VertexAttrib4ubvARB_remap_index }, + { 32463, VertexAttrib4uivARB_remap_index }, + { 21693, VertexAttrib4usvARB_remap_index }, + { 23819, VertexAttribPointerARB_remap_index }, + { 34916, BindBufferARB_remap_index }, + { 7595, BufferDataARB_remap_index }, + { 1582, BufferSubDataARB_remap_index }, + { 32749, DeleteBuffersARB_remap_index }, + { 35199, GenBuffersARB_remap_index }, + { 18977, GetBufferParameterivARB_remap_index }, + { 18050, GetBufferPointervARB_remap_index }, + { 1535, GetBufferSubDataARB_remap_index }, + { 32411, IsBufferARB_remap_index }, + { 28299, MapBufferARB_remap_index }, + { 33404, UnmapBufferARB_remap_index }, + { 332, BeginQueryARB_remap_index }, + { 21349, DeleteQueriesARB_remap_index }, + { 13065, EndQueryARB_remap_index }, + { 31098, GenQueriesARB_remap_index }, + { 2109, GetQueryObjectivARB_remap_index }, + { 18658, GetQueryObjectuivARB_remap_index }, + { 1888, GetQueryivARB_remap_index }, + { 21600, IsQueryARB_remap_index }, + { 8990, AttachObjectARB_remap_index }, + { 20062, CompileShaderARB_remap_index }, + { 3541, CreateProgramObjectARB_remap_index }, + { 7540, CreateShaderObjectARB_remap_index }, + { 15537, DeleteObjectARB_remap_index }, + { 25825, DetachObjectARB_remap_index }, + { 12810, GetActiveUniformARB_remap_index }, + { 10205, GetAttachedObjectsARB_remap_index }, + { 10512, GetHandleARB_remap_index }, + { 34949, GetInfoLogARB_remap_index }, + { 34071, GetObjectParameterfvARB_remap_index }, + { 29326, GetObjectParameterivARB_remap_index }, + { 30856, GetShaderSourceARB_remap_index }, + { 29996, GetUniformLocationARB_remap_index }, + { 25608, GetUniformfvARB_remap_index }, + { 13588, GetUniformivARB_remap_index }, + { 21738, LinkProgramARB_remap_index }, + { 21796, ShaderSourceARB_remap_index }, + { 8262, Uniform1fARB_remap_index }, + { 31801, Uniform1fvARB_remap_index }, + { 23767, Uniform1iARB_remap_index }, + { 22593, Uniform1ivARB_remap_index }, + { 2361, Uniform2fARB_remap_index }, + { 15373, Uniform2fvARB_remap_index }, + { 28167, Uniform2iARB_remap_index }, + { 2498, Uniform2ivARB_remap_index }, + { 20172, Uniform3fARB_remap_index }, + { 10235, Uniform3fvARB_remap_index }, + { 7151, Uniform3iARB_remap_index }, + { 18156, Uniform3ivARB_remap_index }, + { 20766, Uniform4fARB_remap_index }, + { 25472, Uniform4fvARB_remap_index }, + { 26759, Uniform4iARB_remap_index }, + { 22106, Uniform4ivARB_remap_index }, + { 9042, UniformMatrix2fvARB_remap_index }, { 17, UniformMatrix3fvARB_remap_index }, - { 2953, UniformMatrix4fvARB_remap_index }, - { 27091, UseProgramObjectARB_remap_index }, - { 15882, ValidateProgramARB_remap_index }, - { 22866, BindAttribLocationARB_remap_index }, - { 5548, GetActiveAttribARB_remap_index }, - { 17705, GetAttribLocationARB_remap_index }, - { 31374, DrawBuffersARB_remap_index }, - { 31207, ClampColorARB_remap_index }, - { 19120, DrawArraysInstancedARB_remap_index }, - { 7223, DrawElementsInstancedARB_remap_index }, - { 14129, RenderbufferStorageMultisample_remap_index }, - { 14600, FramebufferTextureARB_remap_index }, - { 27527, FramebufferTextureFaceARB_remap_index }, - { 25803, ProgramParameteriARB_remap_index }, - { 6743, VertexAttribDivisorARB_remap_index }, - { 20682, FlushMappedBufferRange_remap_index }, - { 29624, MapBufferRange_remap_index }, - { 29531, TexBufferARB_remap_index }, - { 17510, BindVertexArray_remap_index }, - { 15686, GenVertexArrays_remap_index }, - { 32229, CopyBufferSubData_remap_index }, - { 33181, ClientWaitSync_remap_index }, - { 2872, DeleteSync_remap_index }, - { 7940, FenceSync_remap_index }, - { 16253, GetInteger64v_remap_index }, - { 24268, GetSynciv_remap_index }, - { 31313, IsSync_remap_index }, - { 10147, WaitSync_remap_index }, - { 4217, DrawElementsBaseVertex_remap_index }, - { 19768, DrawElementsInstancedBaseVertex_remap_index }, - { 32541, DrawRangeElementsBaseVertex_remap_index }, - { 28159, MultiDrawElementsBaseVertex_remap_index }, - { 34125, BlendEquationSeparateiARB_remap_index }, - { 18938, BlendEquationiARB_remap_index }, - { 13538, BlendFuncSeparateiARB_remap_index }, - { 10622, BlendFunciARB_remap_index }, - { 8915, BindSampler_remap_index }, - { 4640, DeleteSamplers_remap_index }, - { 21055, GenSamplers_remap_index }, - { 31245, GetSamplerParameterIiv_remap_index }, - { 20576, GetSamplerParameterIuiv_remap_index }, - { 5380, GetSamplerParameterfv_remap_index }, - { 27248, GetSamplerParameteriv_remap_index }, - { 15231, IsSampler_remap_index }, - { 17463, SamplerParameterIiv_remap_index }, - { 32580, SamplerParameterIuiv_remap_index }, - { 23941, SamplerParameterf_remap_index }, - { 17637, SamplerParameterfv_remap_index }, - { 23916, SamplerParameteri_remap_index }, - { 19314, SamplerParameteriv_remap_index }, - { 20138, ColorP3ui_remap_index }, - { 32828, ColorP3uiv_remap_index }, - { 22567, ColorP4ui_remap_index }, - { 4407, ColorP4uiv_remap_index }, - { 26790, MultiTexCoordP1ui_remap_index }, - { 13512, MultiTexCoordP1uiv_remap_index }, - { 1738, MultiTexCoordP2ui_remap_index }, - { 32001, MultiTexCoordP2uiv_remap_index }, - { 14843, MultiTexCoordP3ui_remap_index }, - { 11214, MultiTexCoordP3uiv_remap_index }, - { 23465, MultiTexCoordP4ui_remap_index }, - { 4079, MultiTexCoordP4uiv_remap_index }, - { 31672, NormalP3ui_remap_index }, - { 20314, NormalP3uiv_remap_index }, - { 26493, SecondaryColorP3ui_remap_index }, - { 20332, SecondaryColorP3uiv_remap_index }, - { 2853, TexCoordP1ui_remap_index }, - { 2620, TexCoordP1uiv_remap_index }, - { 15762, TexCoordP2ui_remap_index }, - { 23490, TexCoordP2uiv_remap_index }, - { 6450, TexCoordP3ui_remap_index }, - { 23869, TexCoordP3uiv_remap_index }, - { 2036, TexCoordP4ui_remap_index }, - { 5952, TexCoordP4uiv_remap_index }, - { 10665, VertexAttribP1ui_remap_index }, - { 15030, VertexAttribP1uiv_remap_index }, - { 34935, VertexAttribP2ui_remap_index }, - { 5744, VertexAttribP2uiv_remap_index }, - { 3552, VertexAttribP3ui_remap_index }, - { 21073, VertexAttribP3uiv_remap_index }, - { 15056, VertexAttribP4ui_remap_index }, - { 17038, VertexAttribP4uiv_remap_index }, - { 5486, VertexP2ui_remap_index }, - { 16608, VertexP2uiv_remap_index }, - { 2500, VertexP3ui_remap_index }, - { 17558, VertexP3uiv_remap_index }, - { 10175, VertexP4ui_remap_index }, - { 3534, VertexP4uiv_remap_index }, - { 5770, BindTransformFeedback_remap_index }, - { 3626, DeleteTransformFeedbacks_remap_index }, - { 7195, DrawTransformFeedback_remap_index }, - { 10383, GenTransformFeedbacks_remap_index }, - { 30092, IsTransformFeedback_remap_index }, - { 27720, PauseTransformFeedback_remap_index }, - { 6253, ResumeTransformFeedback_remap_index }, - { 23186, ClearDepthf_remap_index }, - { 7499, DepthRangef_remap_index }, - { 15498, GetShaderPrecisionFormat_remap_index }, - { 10835, ReleaseShaderCompiler_remap_index }, - { 11831, ShaderBinary_remap_index }, - { 1482, DebugMessageCallbackARB_remap_index }, - { 10541, DebugMessageControlARB_remap_index }, - { 34770, DebugMessageInsertARB_remap_index }, - { 3051, GetDebugMessageLogARB_remap_index }, - { 1004, GetGraphicsResetStatusARB_remap_index }, - { 26368, GetnColorTableARB_remap_index }, - { 8684, GetnCompressedTexImageARB_remap_index }, - { 4356, GetnConvolutionFilterARB_remap_index }, - { 16824, GetnHistogramARB_remap_index }, - { 25127, GetnMapdvARB_remap_index }, - { 23663, GetnMapfvARB_remap_index }, - { 2359, GetnMapivARB_remap_index }, - { 18286, GetnMinmaxARB_remap_index }, - { 4976, GetnPixelMapfvARB_remap_index }, - { 20453, GetnPixelMapuivARB_remap_index }, - { 3279, GetnPixelMapusvARB_remap_index }, - { 1404, GetnPolygonStippleARB_remap_index }, - { 22651, GetnSeparableFilterARB_remap_index }, - { 34701, GetnTexImageARB_remap_index }, - { 19743, GetnUniformdvARB_remap_index }, - { 5077, GetnUniformfvARB_remap_index }, - { 10690, GetnUniformivARB_remap_index }, - { 24117, GetnUniformuivARB_remap_index }, - { 3193, ReadnPixelsARB_remap_index }, - { 1291, TexStorage1D_remap_index }, - { 4866, TexStorage2D_remap_index }, - { 30698, TexStorage3D_remap_index }, - { 5001, TextureStorage1DEXT_remap_index }, - { 30479, TextureStorage2DEXT_remap_index }, - { 30273, TextureStorage3DEXT_remap_index }, - { 6121, PolygonOffsetEXT_remap_index }, - { 24890, GetPixelTexGenParameterfvSGIS_remap_index }, - { 4926, GetPixelTexGenParameterivSGIS_remap_index }, - { 24623, PixelTexGenParameterfSGIS_remap_index }, - { 663, PixelTexGenParameterfvSGIS_remap_index }, - { 13637, PixelTexGenParameteriSGIS_remap_index }, - { 14742, PixelTexGenParameterivSGIS_remap_index }, - { 19439, SampleMaskSGIS_remap_index }, - { 21408, SamplePatternSGIS_remap_index }, - { 28069, ColorPointerEXT_remap_index }, - { 18732, EdgeFlagPointerEXT_remap_index }, - { 6816, IndexPointerEXT_remap_index }, - { 6896, NormalPointerEXT_remap_index }, - { 16892, TexCoordPointerEXT_remap_index }, - { 7729, VertexPointerEXT_remap_index }, - { 3993, PointParameterfEXT_remap_index }, - { 8580, PointParameterfvEXT_remap_index }, - { 34018, LockArraysEXT_remap_index }, - { 15946, UnlockArraysEXT_remap_index }, - { 1312, SecondaryColor3bEXT_remap_index }, - { 8773, SecondaryColor3bvEXT_remap_index }, - { 11341, SecondaryColor3dEXT_remap_index }, - { 27297, SecondaryColor3dvEXT_remap_index }, - { 29958, SecondaryColor3fEXT_remap_index }, - { 19476, SecondaryColor3fvEXT_remap_index }, - { 509, SecondaryColor3iEXT_remap_index }, - { 17228, SecondaryColor3ivEXT_remap_index }, - { 10923, SecondaryColor3sEXT_remap_index }, - { 32845, SecondaryColor3svEXT_remap_index }, - { 29023, SecondaryColor3ubEXT_remap_index }, - { 22757, SecondaryColor3ubvEXT_remap_index }, - { 13879, SecondaryColor3uiEXT_remap_index }, - { 24510, SecondaryColor3uivEXT_remap_index }, - { 27577, SecondaryColor3usEXT_remap_index }, - { 13952, SecondaryColor3usvEXT_remap_index }, - { 12700, SecondaryColorPointerEXT_remap_index }, - { 27391, MultiDrawArraysEXT_remap_index }, - { 22396, MultiDrawElementsEXT_remap_index }, - { 22607, FogCoordPointerEXT_remap_index }, - { 5128, FogCoorddEXT_remap_index }, - { 33419, FogCoorddvEXT_remap_index }, - { 5245, FogCoordfEXT_remap_index }, - { 28946, FogCoordfvEXT_remap_index }, - { 12800, PixelTexGenSGIX_remap_index }, - { 29551, BlendFuncSeparateEXT_remap_index }, - { 7641, FlushVertexArrayRangeNV_remap_index }, - { 6070, VertexArrayRangeNV_remap_index }, - { 30023, CombinerInputNV_remap_index }, - { 2302, CombinerOutputNV_remap_index }, - { 32998, CombinerParameterfNV_remap_index }, - { 5924, CombinerParameterfvNV_remap_index }, - { 23966, CombinerParameteriNV_remap_index }, - { 34501, CombinerParameterivNV_remap_index }, - { 8017, FinalCombinerInputNV_remap_index }, - { 1699, GetCombinerInputParameterfvNV_remap_index }, - { 34338, GetCombinerInputParameterivNV_remap_index }, - { 216, GetCombinerOutputParameterfvNV_remap_index }, - { 14703, GetCombinerOutputParameterivNV_remap_index }, - { 7403, GetFinalCombinerInputParameterfvNV_remap_index }, - { 26435, GetFinalCombinerInputParameterivNV_remap_index }, - { 13490, ResizeBuffersMESA_remap_index }, - { 12026, WindowPos2dMESA_remap_index }, - { 1084, WindowPos2dvMESA_remap_index }, - { 35443, WindowPos2fMESA_remap_index }, - { 8718, WindowPos2fvMESA_remap_index }, - { 19386, WindowPos2iMESA_remap_index }, - { 21881, WindowPos2ivMESA_remap_index }, - { 22495, WindowPos2sMESA_remap_index }, - { 6485, WindowPos2svMESA_remap_index }, - { 8509, WindowPos3dMESA_remap_index }, - { 14975, WindowPos3dvMESA_remap_index }, - { 555, WindowPos3fMESA_remap_index }, - { 16007, WindowPos3fvMESA_remap_index }, - { 25696, WindowPos3iMESA_remap_index }, - { 32174, WindowPos3ivMESA_remap_index }, - { 20201, WindowPos3sMESA_remap_index }, - { 33675, WindowPos3svMESA_remap_index }, - { 11977, WindowPos4dMESA_remap_index }, - { 18162, WindowPos4dvMESA_remap_index }, - { 14934, WindowPos4fMESA_remap_index }, - { 32735, WindowPos4fvMESA_remap_index }, - { 32327, WindowPos4iMESA_remap_index }, - { 13329, WindowPos4ivMESA_remap_index }, - { 20429, WindowPos4sMESA_remap_index }, - { 3577, WindowPos4svMESA_remap_index }, - { 28654, MultiModeDrawArraysIBM_remap_index }, - { 30882, MultiModeDrawElementsIBM_remap_index }, - { 13104, DeleteFencesNV_remap_index }, - { 29870, FinishFenceNV_remap_index }, - { 4141, GenFencesNV_remap_index }, - { 18142, GetFenceivNV_remap_index }, - { 8986, IsFenceNV_remap_index }, - { 14630, SetFenceNV_remap_index }, - { 4717, TestFenceNV_remap_index }, - { 33646, AreProgramsResidentNV_remap_index }, - { 33040, BindProgramNV_remap_index }, - { 27660, DeleteProgramsNV_remap_index }, - { 22975, ExecuteProgramNV_remap_index }, - { 35336, GenProgramsNV_remap_index }, - { 24995, GetProgramParameterdvNV_remap_index }, - { 11403, GetProgramParameterfvNV_remap_index }, - { 28043, GetProgramStringNV_remap_index }, - { 26073, GetProgramivNV_remap_index }, - { 25250, GetTrackMatrixivNV_remap_index }, - { 27837, GetVertexAttribPointervNV_remap_index }, - { 11018, GetVertexAttribdvNV_remap_index }, - { 10042, GetVertexAttribfvNV_remap_index }, - { 19689, GetVertexAttribivNV_remap_index }, - { 20712, IsProgramNV_remap_index }, - { 10125, LoadProgramNV_remap_index }, - { 29647, ProgramParameters4dvNV_remap_index }, - { 26003, ProgramParameters4fvNV_remap_index }, - { 22185, RequestResidentProgramsNV_remap_index }, - { 32519, TrackMatrixNV_remap_index }, - { 34315, VertexAttrib1dNV_remap_index }, - { 14541, VertexAttrib1dvNV_remap_index }, - { 30335, VertexAttrib1fNV_remap_index }, - { 2659, VertexAttrib1fvNV_remap_index }, - { 32792, VertexAttrib1sNV_remap_index }, - { 16080, VertexAttrib1svNV_remap_index }, - { 5436, VertexAttrib2dNV_remap_index }, - { 14434, VertexAttrib2dvNV_remap_index }, - { 21640, VertexAttrib2fNV_remap_index }, - { 14000, VertexAttrib2fvNV_remap_index }, - { 6697, VertexAttrib2sNV_remap_index }, - { 20255, VertexAttrib2svNV_remap_index }, - { 12174, VertexAttrib3dNV_remap_index }, - { 33896, VertexAttrib3dvNV_remap_index }, - { 11189, VertexAttrib3fNV_remap_index }, - { 26395, VertexAttrib3fvNV_remap_index }, - { 23739, VertexAttrib3sNV_remap_index }, - { 25277, VertexAttrib3svNV_remap_index }, - { 30856, VertexAttrib4dNV_remap_index }, - { 35373, VertexAttrib4dvNV_remap_index }, - { 5864, VertexAttrib4fNV_remap_index }, - { 10192, VertexAttrib4fvNV_remap_index }, - { 28538, VertexAttrib4sNV_remap_index }, - { 1512, VertexAttrib4svNV_remap_index }, - { 5611, VertexAttrib4ubNV_remap_index }, - { 817, VertexAttrib4ubvNV_remap_index }, - { 23155, VertexAttribPointerNV_remap_index }, - { 2474, VertexAttribs1dvNV_remap_index }, - { 27925, VertexAttribs1fvNV_remap_index }, - { 35173, VertexAttribs1svNV_remap_index }, - { 11240, VertexAttribs2dvNV_remap_index }, - { 27052, VertexAttribs2fvNV_remap_index }, - { 18758, VertexAttribs2svNV_remap_index }, - { 5972, VertexAttribs3dvNV_remap_index }, - { 2333, VertexAttribs3fvNV_remap_index }, - { 31896, VertexAttribs3svNV_remap_index }, - { 28628, VertexAttribs4dvNV_remap_index }, - { 6044, VertexAttribs4fvNV_remap_index }, - { 34960, VertexAttribs4svNV_remap_index }, - { 31627, VertexAttribs4ubvNV_remap_index }, - { 28730, GetTexBumpParameterfvATI_remap_index }, - { 35214, GetTexBumpParameterivATI_remap_index }, - { 19883, TexBumpParameterfvATI_remap_index }, - { 22056, TexBumpParameterivATI_remap_index }, - { 16644, AlphaFragmentOp1ATI_remap_index }, - { 27343, AlphaFragmentOp2ATI_remap_index }, - { 26311, AlphaFragmentOp3ATI_remap_index }, - { 31823, BeginFragmentShaderATI_remap_index }, - { 33239, BindFragmentShaderATI_remap_index }, - { 25406, ColorFragmentOp1ATI_remap_index }, - { 4832, ColorFragmentOp2ATI_remap_index }, - { 33541, ColorFragmentOp3ATI_remap_index }, - { 6210, DeleteFragmentShaderATI_remap_index }, - { 35397, EndFragmentShaderATI_remap_index }, - { 34529, GenFragmentShadersATI_remap_index }, - { 27206, PassTexCoordATI_remap_index }, - { 7709, SampleMapATI_remap_index }, - { 28841, SetFragmentShaderConstantATI_remap_index }, - { 402, PointParameteriNV_remap_index }, - { 15187, PointParameterivNV_remap_index }, - { 30672, ActiveStencilFaceEXT_remap_index }, - { 29287, BindVertexArrayAPPLE_remap_index }, - { 3000, DeleteVertexArraysAPPLE_remap_index }, - { 19225, GenVertexArraysAPPLE_remap_index }, - { 25060, IsVertexArrayAPPLE_remap_index }, - { 858, GetProgramNamedParameterdvNV_remap_index }, - { 3956, GetProgramNamedParameterfvNV_remap_index }, - { 28761, ProgramNamedParameter4dNV_remap_index }, - { 15561, ProgramNamedParameter4dvNV_remap_index }, - { 9658, ProgramNamedParameter4fNV_remap_index }, - { 12665, ProgramNamedParameter4fvNV_remap_index }, - { 18073, PrimitiveRestartIndexNV_remap_index }, - { 32712, PrimitiveRestartNV_remap_index }, - { 25982, DepthBoundsEXT_remap_index }, - { 1183, BlendEquationSeparateEXT_remap_index }, - { 15781, BindFramebufferEXT_remap_index }, - { 27436, BindRenderbufferEXT_remap_index }, - { 10439, CheckFramebufferStatusEXT_remap_index }, - { 24311, DeleteFramebuffersEXT_remap_index }, - { 33798, DeleteRenderbuffersEXT_remap_index }, - { 14458, FramebufferRenderbufferEXT_remap_index }, - { 14647, FramebufferTexture1DEXT_remap_index }, - { 12459, FramebufferTexture2DEXT_remap_index }, - { 12079, FramebufferTexture3DEXT_remap_index }, - { 24926, GenFramebuffersEXT_remap_index }, - { 18623, GenRenderbuffersEXT_remap_index }, - { 7445, GenerateMipmapEXT_remap_index }, - { 23248, GetFramebufferAttachmentParameterivEXT_remap_index }, - { 34435, GetRenderbufferParameterivEXT_remap_index }, - { 21936, IsFramebufferEXT_remap_index }, - { 35296, IsRenderbufferEXT_remap_index }, - { 8933, RenderbufferStorageEXT_remap_index }, - { 734, BlitFramebufferEXT_remap_index }, - { 15347, BufferParameteriAPPLE_remap_index }, - { 20744, FlushMappedBufferRangeAPPLE_remap_index }, - { 1982, BindFragDataLocationEXT_remap_index }, - { 26095, GetFragDataLocationEXT_remap_index }, - { 11518, GetUniformuivEXT_remap_index }, - { 34609, GetVertexAttribIivEXT_remap_index }, - { 29818, GetVertexAttribIuivEXT_remap_index }, - { 12937, Uniform1uiEXT_remap_index }, - { 29732, Uniform1uivEXT_remap_index }, - { 23835, Uniform2uiEXT_remap_index }, - { 4796, Uniform2uivEXT_remap_index }, - { 31135, Uniform3uiEXT_remap_index }, - { 15708, Uniform3uivEXT_remap_index }, - { 3880, Uniform4uiEXT_remap_index }, - { 9434, Uniform4uivEXT_remap_index }, - { 19604, VertexAttribI1iEXT_remap_index }, - { 5638, VertexAttribI1ivEXT_remap_index }, - { 2760, VertexAttribI1uiEXT_remap_index }, - { 13728, VertexAttribI1uivEXT_remap_index }, + { 2934, UniformMatrix4fvARB_remap_index }, + { 27262, UseProgramObjectARB_remap_index }, + { 15942, ValidateProgramARB_remap_index }, + { 22998, BindAttribLocationARB_remap_index }, + { 5495, GetActiveAttribARB_remap_index }, + { 17770, GetAttribLocationARB_remap_index }, + { 31461, DrawBuffersARB_remap_index }, + { 31294, ClampColorARB_remap_index }, + { 19252, DrawArraysInstancedARB_remap_index }, + { 7212, DrawElementsInstancedARB_remap_index }, + { 14118, RenderbufferStorageMultisample_remap_index }, + { 14589, FramebufferTextureARB_remap_index }, + { 27698, FramebufferTextureFaceARB_remap_index }, + { 25974, ProgramParameteriARB_remap_index }, + { 6732, VertexAttribDivisorARB_remap_index }, + { 20814, FlushMappedBufferRange_remap_index }, + { 29763, MapBufferRange_remap_index }, + { 29670, TexBufferARB_remap_index }, + { 17570, BindVertexArray_remap_index }, + { 15746, GenVertexArrays_remap_index }, + { 32341, CopyBufferSubData_remap_index }, + { 33293, ClientWaitSync_remap_index }, + { 2853, DeleteSync_remap_index }, + { 7929, FenceSync_remap_index }, + { 16313, GetInteger64v_remap_index }, + { 24403, GetSynciv_remap_index }, + { 31400, IsSync_remap_index }, + { 10136, WaitSync_remap_index }, + { 4159, DrawElementsBaseVertex_remap_index }, + { 19900, DrawElementsInstancedBaseVertex_remap_index }, + { 32653, DrawRangeElementsBaseVertex_remap_index }, + { 28330, MultiDrawElementsBaseVertex_remap_index }, + { 17836, BlendEquationSeparateiARB_remap_index }, + { 19070, BlendEquationiARB_remap_index }, + { 13527, BlendFuncSeparateiARB_remap_index }, + { 10611, BlendFunciARB_remap_index }, + { 25235, BindFragDataLocationIndexed_remap_index }, + { 23335, GetFragDataIndex_remap_index }, + { 8904, BindSampler_remap_index }, + { 4535, DeleteSamplers_remap_index }, + { 21187, GenSamplers_remap_index }, + { 31332, GetSamplerParameterIiv_remap_index }, + { 20708, GetSamplerParameterIuiv_remap_index }, + { 5327, GetSamplerParameterfv_remap_index }, + { 27419, GetSamplerParameteriv_remap_index }, + { 15291, IsSampler_remap_index }, + { 17523, SamplerParameterIiv_remap_index }, + { 32692, SamplerParameterIuiv_remap_index }, + { 24076, SamplerParameterf_remap_index }, + { 17697, SamplerParameterfv_remap_index }, + { 24051, SamplerParameteri_remap_index }, + { 19446, SamplerParameteriv_remap_index }, + { 20270, ColorP3ui_remap_index }, + { 32940, ColorP3uiv_remap_index }, + { 22699, ColorP4ui_remap_index }, + { 4302, ColorP4uiv_remap_index }, + { 26961, MultiTexCoordP1ui_remap_index }, + { 13501, MultiTexCoordP1uiv_remap_index }, + { 1719, MultiTexCoordP2ui_remap_index }, + { 32113, MultiTexCoordP2uiv_remap_index }, + { 14903, MultiTexCoordP3ui_remap_index }, + { 11203, MultiTexCoordP3uiv_remap_index }, + { 23620, MultiTexCoordP4ui_remap_index }, + { 4021, MultiTexCoordP4uiv_remap_index }, + { 31759, NormalP3ui_remap_index }, + { 20446, NormalP3uiv_remap_index }, + { 26664, SecondaryColorP3ui_remap_index }, + { 20464, SecondaryColorP3uiv_remap_index }, + { 2834, TexCoordP1ui_remap_index }, + { 2601, TexCoordP1uiv_remap_index }, + { 15822, TexCoordP2ui_remap_index }, + { 216, TexCoordP2uiv_remap_index }, + { 6439, TexCoordP3ui_remap_index }, + { 24004, TexCoordP3uiv_remap_index }, + { 2017, TexCoordP4ui_remap_index }, + { 5899, TexCoordP4uiv_remap_index }, + { 10654, VertexAttribP1ui_remap_index }, + { 15090, VertexAttribP1uiv_remap_index }, + { 31776, VertexAttribP2ui_remap_index }, + { 5691, VertexAttribP2uiv_remap_index }, + { 3494, VertexAttribP3ui_remap_index }, + { 21205, VertexAttribP3uiv_remap_index }, + { 15116, VertexAttribP4ui_remap_index }, + { 17098, VertexAttribP4uiv_remap_index }, + { 5433, VertexP2ui_remap_index }, + { 16668, VertexP2uiv_remap_index }, + { 2481, VertexP3ui_remap_index }, + { 17618, VertexP3uiv_remap_index }, + { 10164, VertexP4ui_remap_index }, + { 3476, VertexP4uiv_remap_index }, + { 5717, BindTransformFeedback_remap_index }, + { 3568, DeleteTransformFeedbacks_remap_index }, + { 7184, DrawTransformFeedback_remap_index }, + { 10372, GenTransformFeedbacks_remap_index }, + { 30179, IsTransformFeedback_remap_index }, + { 27891, PauseTransformFeedback_remap_index }, + { 6200, ResumeTransformFeedback_remap_index }, + { 23318, ClearDepthf_remap_index }, + { 7488, DepthRangef_remap_index }, + { 15558, GetShaderPrecisionFormat_remap_index }, + { 10824, ReleaseShaderCompiler_remap_index }, + { 11820, ShaderBinary_remap_index }, + { 1463, DebugMessageCallbackARB_remap_index }, + { 10530, DebugMessageControlARB_remap_index }, + { 34854, DebugMessageInsertARB_remap_index }, + { 3032, GetDebugMessageLogARB_remap_index }, + { 985, GetGraphicsResetStatusARB_remap_index }, + { 26539, GetnColorTableARB_remap_index }, + { 8673, GetnCompressedTexImageARB_remap_index }, + { 4251, GetnConvolutionFilterARB_remap_index }, + { 16884, GetnHistogramARB_remap_index }, + { 25298, GetnMapdvARB_remap_index }, + { 23798, GetnMapfvARB_remap_index }, + { 2340, GetnMapivARB_remap_index }, + { 18418, GetnMinmaxARB_remap_index }, + { 4923, GetnPixelMapfvARB_remap_index }, + { 20585, GetnPixelMapuivARB_remap_index }, + { 3221, GetnPixelMapusvARB_remap_index }, + { 1385, GetnPolygonStippleARB_remap_index }, + { 22783, GetnSeparableFilterARB_remap_index }, + { 34785, GetnTexImageARB_remap_index }, + { 19875, GetnUniformdvARB_remap_index }, + { 5024, GetnUniformfvARB_remap_index }, + { 10679, GetnUniformivARB_remap_index }, + { 24252, GetnUniformuivARB_remap_index }, + { 3135, ReadnPixelsARB_remap_index }, + { 1272, TexStorage1D_remap_index }, + { 4813, TexStorage2D_remap_index }, + { 30785, TexStorage3D_remap_index }, + { 4948, TextureStorage1DEXT_remap_index }, + { 30566, TextureStorage2DEXT_remap_index }, + { 30360, TextureStorage3DEXT_remap_index }, + { 6068, PolygonOffsetEXT_remap_index }, + { 25025, GetPixelTexGenParameterfvSGIS_remap_index }, + { 4873, GetPixelTexGenParameterivSGIS_remap_index }, + { 24758, PixelTexGenParameterfSGIS_remap_index }, + { 644, PixelTexGenParameterfvSGIS_remap_index }, + { 13626, PixelTexGenParameteriSGIS_remap_index }, + { 14763, PixelTexGenParameterivSGIS_remap_index }, + { 19571, SampleMaskSGIS_remap_index }, + { 21540, SamplePatternSGIS_remap_index }, + { 28240, ColorPointerEXT_remap_index }, + { 18864, EdgeFlagPointerEXT_remap_index }, + { 6805, IndexPointerEXT_remap_index }, + { 6885, NormalPointerEXT_remap_index }, + { 16952, TexCoordPointerEXT_remap_index }, + { 7718, VertexPointerEXT_remap_index }, + { 3935, PointParameterfEXT_remap_index }, + { 8569, PointParameterfvEXT_remap_index }, + { 34169, LockArraysEXT_remap_index }, + { 16006, UnlockArraysEXT_remap_index }, + { 1293, SecondaryColor3bEXT_remap_index }, + { 8762, SecondaryColor3bvEXT_remap_index }, + { 11330, SecondaryColor3dEXT_remap_index }, + { 27468, SecondaryColor3dvEXT_remap_index }, + { 30045, SecondaryColor3fEXT_remap_index }, + { 19608, SecondaryColor3fvEXT_remap_index }, + { 490, SecondaryColor3iEXT_remap_index }, + { 17288, SecondaryColor3ivEXT_remap_index }, + { 10912, SecondaryColor3sEXT_remap_index }, + { 32957, SecondaryColor3svEXT_remap_index }, + { 29162, SecondaryColor3ubEXT_remap_index }, + { 22889, SecondaryColor3ubvEXT_remap_index }, + { 13868, SecondaryColor3uiEXT_remap_index }, + { 24645, SecondaryColor3uivEXT_remap_index }, + { 27748, SecondaryColor3usEXT_remap_index }, + { 13941, SecondaryColor3usvEXT_remap_index }, + { 12689, SecondaryColorPointerEXT_remap_index }, + { 27562, MultiDrawArraysEXT_remap_index }, + { 22528, MultiDrawElementsEXT_remap_index }, + { 22739, FogCoordPointerEXT_remap_index }, + { 5075, FogCoorddEXT_remap_index }, + { 33570, FogCoorddvEXT_remap_index }, + { 5192, FogCoordfEXT_remap_index }, + { 29085, FogCoordfvEXT_remap_index }, + { 12789, PixelTexGenSGIX_remap_index }, + { 29690, BlendFuncSeparateEXT_remap_index }, + { 7630, FlushVertexArrayRangeNV_remap_index }, + { 6017, VertexArrayRangeNV_remap_index }, + { 30110, CombinerInputNV_remap_index }, + { 2283, CombinerOutputNV_remap_index }, + { 33110, CombinerParameterfNV_remap_index }, + { 5871, CombinerParameterfvNV_remap_index }, + { 24101, CombinerParameteriNV_remap_index }, + { 34585, CombinerParameterivNV_remap_index }, + { 8006, FinalCombinerInputNV_remap_index }, + { 1680, GetCombinerInputParameterfvNV_remap_index }, + { 34422, GetCombinerInputParameterivNV_remap_index }, + { 14864, GetCombinerOutputParameterfvNV_remap_index }, + { 14692, GetCombinerOutputParameterivNV_remap_index }, + { 7392, GetFinalCombinerInputParameterfvNV_remap_index }, + { 26606, GetFinalCombinerInputParameterivNV_remap_index }, + { 13479, ResizeBuffersMESA_remap_index }, + { 12015, WindowPos2dMESA_remap_index }, + { 1065, WindowPos2dvMESA_remap_index }, + { 35502, WindowPos2fMESA_remap_index }, + { 8707, WindowPos2fvMESA_remap_index }, + { 19518, WindowPos2iMESA_remap_index }, + { 22013, WindowPos2ivMESA_remap_index }, + { 22627, WindowPos2sMESA_remap_index }, + { 6474, WindowPos2svMESA_remap_index }, + { 8498, WindowPos3dMESA_remap_index }, + { 15035, WindowPos3dvMESA_remap_index }, + { 536, WindowPos3fMESA_remap_index }, + { 16067, WindowPos3fvMESA_remap_index }, + { 25867, WindowPos3iMESA_remap_index }, + { 32286, WindowPos3ivMESA_remap_index }, + { 20333, WindowPos3sMESA_remap_index }, + { 33826, WindowPos3svMESA_remap_index }, + { 11966, WindowPos4dMESA_remap_index }, + { 18294, WindowPos4dvMESA_remap_index }, + { 14994, WindowPos4fMESA_remap_index }, + { 32847, WindowPos4fvMESA_remap_index }, + { 32439, WindowPos4iMESA_remap_index }, + { 13318, WindowPos4ivMESA_remap_index }, + { 20561, WindowPos4sMESA_remap_index }, + { 3519, WindowPos4svMESA_remap_index }, + { 14731, MultiModeDrawArraysIBM_remap_index }, + { 30969, MultiModeDrawElementsIBM_remap_index }, + { 13093, DeleteFencesNV_remap_index }, + { 29957, FinishFenceNV_remap_index }, + { 4083, GenFencesNV_remap_index }, + { 18274, GetFenceivNV_remap_index }, + { 8975, IsFenceNV_remap_index }, + { 14619, SetFenceNV_remap_index }, + { 4612, TestFenceNV_remap_index }, + { 33797, AreProgramsResidentNV_remap_index }, + { 33152, BindProgramNV_remap_index }, + { 27831, DeleteProgramsNV_remap_index }, + { 23107, ExecuteProgramNV_remap_index }, + { 35395, GenProgramsNV_remap_index }, + { 25130, GetProgramParameterdvNV_remap_index }, + { 11392, GetProgramParameterfvNV_remap_index }, + { 28214, GetProgramStringNV_remap_index }, + { 26244, GetProgramivNV_remap_index }, + { 25421, GetTrackMatrixivNV_remap_index }, + { 28008, GetVertexAttribPointervNV_remap_index }, + { 11007, GetVertexAttribdvNV_remap_index }, + { 10031, GetVertexAttribfvNV_remap_index }, + { 19821, GetVertexAttribivNV_remap_index }, + { 20844, IsProgramNV_remap_index }, + { 10114, LoadProgramNV_remap_index }, + { 29786, ProgramParameters4dvNV_remap_index }, + { 26174, ProgramParameters4fvNV_remap_index }, + { 22317, RequestResidentProgramsNV_remap_index }, + { 32631, TrackMatrixNV_remap_index }, + { 34399, VertexAttrib1dNV_remap_index }, + { 14530, VertexAttrib1dvNV_remap_index }, + { 30422, VertexAttrib1fNV_remap_index }, + { 2640, VertexAttrib1fvNV_remap_index }, + { 32904, VertexAttrib1sNV_remap_index }, + { 16140, VertexAttrib1svNV_remap_index }, + { 5383, VertexAttrib2dNV_remap_index }, + { 14423, VertexAttrib2dvNV_remap_index }, + { 21772, VertexAttrib2fNV_remap_index }, + { 13989, VertexAttrib2fvNV_remap_index }, + { 6686, VertexAttrib2sNV_remap_index }, + { 20387, VertexAttrib2svNV_remap_index }, + { 12163, VertexAttrib3dNV_remap_index }, + { 34047, VertexAttrib3dvNV_remap_index }, + { 11178, VertexAttrib3fNV_remap_index }, + { 26566, VertexAttrib3fvNV_remap_index }, + { 23874, VertexAttrib3sNV_remap_index }, + { 25448, VertexAttrib3svNV_remap_index }, + { 30943, VertexAttrib4dNV_remap_index }, + { 35432, VertexAttrib4dvNV_remap_index }, + { 5811, VertexAttrib4fNV_remap_index }, + { 10181, VertexAttrib4fvNV_remap_index }, + { 28709, VertexAttrib4sNV_remap_index }, + { 1493, VertexAttrib4svNV_remap_index }, + { 5558, VertexAttrib4ubNV_remap_index }, + { 798, VertexAttrib4ubvNV_remap_index }, + { 23287, VertexAttribPointerNV_remap_index }, + { 2455, VertexAttribs1dvNV_remap_index }, + { 28096, VertexAttribs1fvNV_remap_index }, + { 35232, VertexAttribs1svNV_remap_index }, + { 11229, VertexAttribs2dvNV_remap_index }, + { 27223, VertexAttribs2fvNV_remap_index }, + { 18890, VertexAttribs2svNV_remap_index }, + { 5919, VertexAttribs3dvNV_remap_index }, + { 2314, VertexAttribs3fvNV_remap_index }, + { 32008, VertexAttribs3svNV_remap_index }, + { 28799, VertexAttribs4dvNV_remap_index }, + { 5991, VertexAttribs4fvNV_remap_index }, + { 35019, VertexAttribs4svNV_remap_index }, + { 31714, VertexAttribs4ubvNV_remap_index }, + { 28869, GetTexBumpParameterfvATI_remap_index }, + { 35273, GetTexBumpParameterivATI_remap_index }, + { 20015, TexBumpParameterfvATI_remap_index }, + { 22188, TexBumpParameterivATI_remap_index }, + { 16704, AlphaFragmentOp1ATI_remap_index }, + { 27514, AlphaFragmentOp2ATI_remap_index }, + { 26482, AlphaFragmentOp3ATI_remap_index }, + { 31935, BeginFragmentShaderATI_remap_index }, + { 33351, BindFragmentShaderATI_remap_index }, + { 25577, ColorFragmentOp1ATI_remap_index }, + { 4779, ColorFragmentOp2ATI_remap_index }, + { 33692, ColorFragmentOp3ATI_remap_index }, + { 6157, DeleteFragmentShaderATI_remap_index }, + { 35456, EndFragmentShaderATI_remap_index }, + { 34613, GenFragmentShadersATI_remap_index }, + { 27377, PassTexCoordATI_remap_index }, + { 7698, SampleMapATI_remap_index }, + { 28980, SetFragmentShaderConstantATI_remap_index }, + { 383, PointParameteriNV_remap_index }, + { 15247, PointParameterivNV_remap_index }, + { 30759, ActiveStencilFaceEXT_remap_index }, + { 29426, BindVertexArrayAPPLE_remap_index }, + { 2981, DeleteVertexArraysAPPLE_remap_index }, + { 19357, GenVertexArraysAPPLE_remap_index }, + { 25195, IsVertexArrayAPPLE_remap_index }, + { 839, GetProgramNamedParameterdvNV_remap_index }, + { 3898, GetProgramNamedParameterfvNV_remap_index }, + { 28900, ProgramNamedParameter4dNV_remap_index }, + { 15621, ProgramNamedParameter4dvNV_remap_index }, + { 9647, ProgramNamedParameter4fNV_remap_index }, + { 12654, ProgramNamedParameter4fvNV_remap_index }, + { 18205, PrimitiveRestartIndexNV_remap_index }, + { 32824, PrimitiveRestartNV_remap_index }, + { 26153, DepthBoundsEXT_remap_index }, + { 1164, BlendEquationSeparateEXT_remap_index }, + { 15841, BindFramebufferEXT_remap_index }, + { 27607, BindRenderbufferEXT_remap_index }, + { 10428, CheckFramebufferStatusEXT_remap_index }, + { 24446, DeleteFramebuffersEXT_remap_index }, + { 33949, DeleteRenderbuffersEXT_remap_index }, + { 14447, FramebufferRenderbufferEXT_remap_index }, + { 14636, FramebufferTexture1DEXT_remap_index }, + { 12448, FramebufferTexture2DEXT_remap_index }, + { 12068, FramebufferTexture3DEXT_remap_index }, + { 25061, GenFramebuffersEXT_remap_index }, + { 18755, GenRenderbuffersEXT_remap_index }, + { 7434, GenerateMipmapEXT_remap_index }, + { 23403, GetFramebufferAttachmentParameterivEXT_remap_index }, + { 34519, GetRenderbufferParameterivEXT_remap_index }, + { 22068, IsFramebufferEXT_remap_index }, + { 35355, IsRenderbufferEXT_remap_index }, + { 8922, RenderbufferStorageEXT_remap_index }, + { 715, BlitFramebufferEXT_remap_index }, + { 15407, BufferParameteriAPPLE_remap_index }, + { 20876, FlushMappedBufferRangeAPPLE_remap_index }, + { 1963, BindFragDataLocationEXT_remap_index }, + { 26266, GetFragDataLocationEXT_remap_index }, + { 11507, GetUniformuivEXT_remap_index }, + { 34693, GetVertexAttribIivEXT_remap_index }, + { 4629, GetVertexAttribIuivEXT_remap_index }, + { 12926, Uniform1uiEXT_remap_index }, + { 29871, Uniform1uivEXT_remap_index }, + { 23970, Uniform2uiEXT_remap_index }, + { 4743, Uniform2uivEXT_remap_index }, + { 31222, Uniform3uiEXT_remap_index }, + { 15768, Uniform3uivEXT_remap_index }, + { 3822, Uniform4uiEXT_remap_index }, + { 9423, Uniform4uivEXT_remap_index }, + { 19736, VertexAttribI1iEXT_remap_index }, + { 5585, VertexAttribI1ivEXT_remap_index }, + { 2741, VertexAttribI1uiEXT_remap_index }, + { 13717, VertexAttribI1uivEXT_remap_index }, { 81, VertexAttribI2iEXT_remap_index }, - { 25518, VertexAttribI2ivEXT_remap_index }, - { 5998, VertexAttribI2uiEXT_remap_index }, - { 5290, VertexAttribI2uivEXT_remap_index }, - { 28330, VertexAttribI3iEXT_remap_index }, - { 26745, VertexAttribI3ivEXT_remap_index }, - { 3734, VertexAttribI3uiEXT_remap_index }, - { 32415, VertexAttribI3uivEXT_remap_index }, - { 23544, VertexAttribI4bvEXT_remap_index }, - { 15640, VertexAttribI4iEXT_remap_index }, - { 34067, VertexAttribI4ivEXT_remap_index }, - { 14361, VertexAttribI4svEXT_remap_index }, - { 4309, VertexAttribI4ubvEXT_remap_index }, - { 17291, VertexAttribI4uiEXT_remap_index }, - { 6144, VertexAttribI4uivEXT_remap_index }, - { 12242, VertexAttribI4usvEXT_remap_index }, - { 19827, VertexAttribIPointerEXT_remap_index }, - { 3349, FramebufferTextureLayerEXT_remap_index }, - { 17663, ColorMaskIndexedEXT_remap_index }, - { 20279, DisableIndexedEXT_remap_index }, - { 28375, EnableIndexedEXT_remap_index }, - { 23203, GetBooleanIndexedvEXT_remap_index }, - { 11853, GetIntegerIndexedvEXT_remap_index }, - { 24387, IsEnabledIndexedEXT_remap_index }, - { 24287, ClearColorIiEXT_remap_index }, - { 3830, ClearColorIuiEXT_remap_index }, - { 10715, GetTexParameterIivEXT_remap_index }, - { 6645, GetTexParameterIuivEXT_remap_index }, - { 3305, TexParameterIivEXT_remap_index }, - { 28197, TexParameterIuivEXT_remap_index }, - { 5158, BeginConditionalRenderNV_remap_index }, - { 27156, EndConditionalRenderNV_remap_index }, - { 10069, BeginTransformFeedbackEXT_remap_index }, - { 20358, BindBufferBaseEXT_remap_index }, - { 20173, BindBufferOffsetEXT_remap_index }, - { 13154, BindBufferRangeEXT_remap_index }, - { 15262, EndTransformFeedbackEXT_remap_index }, - { 11716, GetTransformFeedbackVaryingEXT_remap_index }, - { 22241, TransformFeedbackVaryingsEXT_remap_index }, - { 31528, ProvokingVertexEXT_remap_index }, - { 11664, GetTexParameterPointervAPPLE_remap_index }, - { 5700, TextureRangeAPPLE_remap_index }, - { 12531, GetObjectParameterivAPPLE_remap_index }, - { 21363, ObjectPurgeableAPPLE_remap_index }, - { 6420, ObjectUnpurgeableAPPLE_remap_index }, - { 18445, ActiveProgramEXT_remap_index }, - { 18416, CreateShaderProgramEXT_remap_index }, - { 30427, UseShaderProgramEXT_remap_index }, - { 17616, TextureBarrierNV_remap_index }, - { 30721, StencilFuncSeparateATI_remap_index }, - { 6333, ProgramEnvParameters4fvEXT_remap_index }, - { 18310, ProgramLocalParameters4fvEXT_remap_index }, - { 15115, GetQueryObjecti64vEXT_remap_index }, - { 11266, GetQueryObjectui64vEXT_remap_index }, - { 25475, EGLImageTargetRenderbufferStorageOES_remap_index }, - { 13043, EGLImageTargetTexture2DOES_remap_index }, + { 25689, VertexAttribI2ivEXT_remap_index }, + { 5945, VertexAttribI2uiEXT_remap_index }, + { 5237, VertexAttribI2uivEXT_remap_index }, + { 28501, VertexAttribI3iEXT_remap_index }, + { 26916, VertexAttribI3ivEXT_remap_index }, + { 3676, VertexAttribI3uiEXT_remap_index }, + { 32527, VertexAttribI3uivEXT_remap_index }, + { 23679, VertexAttribI4bvEXT_remap_index }, + { 15700, VertexAttribI4iEXT_remap_index }, + { 34218, VertexAttribI4ivEXT_remap_index }, + { 14350, VertexAttribI4svEXT_remap_index }, + { 17723, VertexAttribI4ubvEXT_remap_index }, + { 17351, VertexAttribI4uiEXT_remap_index }, + { 6091, VertexAttribI4uivEXT_remap_index }, + { 12231, VertexAttribI4usvEXT_remap_index }, + { 19959, VertexAttribIPointerEXT_remap_index }, + { 3291, FramebufferTextureLayerEXT_remap_index }, + { 6367, ColorMaskIndexedEXT_remap_index }, + { 20411, DisableIndexedEXT_remap_index }, + { 28546, EnableIndexedEXT_remap_index }, + { 23358, GetBooleanIndexedvEXT_remap_index }, + { 11842, GetIntegerIndexedvEXT_remap_index }, + { 24522, IsEnabledIndexedEXT_remap_index }, + { 24422, ClearColorIiEXT_remap_index }, + { 3772, ClearColorIuiEXT_remap_index }, + { 10704, GetTexParameterIivEXT_remap_index }, + { 6634, GetTexParameterIuivEXT_remap_index }, + { 3247, TexParameterIivEXT_remap_index }, + { 28368, TexParameterIuivEXT_remap_index }, + { 5105, BeginConditionalRenderNV_remap_index }, + { 27327, EndConditionalRenderNV_remap_index }, + { 10058, BeginTransformFeedbackEXT_remap_index }, + { 20490, BindBufferBaseEXT_remap_index }, + { 20305, BindBufferOffsetEXT_remap_index }, + { 13143, BindBufferRangeEXT_remap_index }, + { 15322, EndTransformFeedbackEXT_remap_index }, + { 11705, GetTransformFeedbackVaryingEXT_remap_index }, + { 22373, TransformFeedbackVaryingsEXT_remap_index }, + { 31615, ProvokingVertexEXT_remap_index }, + { 11653, GetTexParameterPointervAPPLE_remap_index }, + { 5647, TextureRangeAPPLE_remap_index }, + { 12520, GetObjectParameterivAPPLE_remap_index }, + { 21495, ObjectPurgeableAPPLE_remap_index }, + { 6409, ObjectUnpurgeableAPPLE_remap_index }, + { 18577, ActiveProgramEXT_remap_index }, + { 18548, CreateShaderProgramEXT_remap_index }, + { 30514, UseShaderProgramEXT_remap_index }, + { 17676, TextureBarrierNV_remap_index }, + { 30808, StencilFuncSeparateATI_remap_index }, + { 6280, ProgramEnvParameters4fvEXT_remap_index }, + { 18442, ProgramLocalParameters4fvEXT_remap_index }, + { 15175, GetQueryObjecti64vEXT_remap_index }, + { 11255, GetQueryObjectui64vEXT_remap_index }, + { 25646, EGLImageTargetRenderbufferStorageOES_remap_index }, + { 13032, 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 */ - { 2918, _gloffset_BlendColor }, + { 2899, _gloffset_BlendColor }, /* from GL_EXT_blend_minmax */ - { 12136, _gloffset_BlendEquation }, + { 12125, _gloffset_BlendEquation }, /* from GL_EXT_color_subtable */ - { 18184, _gloffset_ColorSubTable }, - { 33730, _gloffset_CopyColorSubTable }, + { 18316, _gloffset_ColorSubTable }, + { 33881, _gloffset_CopyColorSubTable }, /* from GL_EXT_convolution */ - { 296, _gloffset_ConvolutionFilter1D }, - { 2698, _gloffset_CopyConvolutionFilter1D }, - { 4576, _gloffset_GetConvolutionParameteriv }, - { 9282, _gloffset_ConvolutionFilter2D }, - { 9484, _gloffset_ConvolutionParameteriv }, - { 9944, _gloffset_ConvolutionParameterfv }, - { 22084, _gloffset_GetSeparableFilter }, - { 25750, _gloffset_SeparableFilter2D }, - { 26638, _gloffset_ConvolutionParameteri }, - { 26831, _gloffset_ConvolutionParameterf }, - { 28564, _gloffset_GetConvolutionParameterfv }, - { 29453, _gloffset_GetConvolutionFilter }, - { 32111, _gloffset_CopyConvolutionFilter2D }, + { 277, _gloffset_ConvolutionFilter1D }, + { 2679, _gloffset_CopyConvolutionFilter1D }, + { 4471, _gloffset_GetConvolutionParameteriv }, + { 9271, _gloffset_ConvolutionFilter2D }, + { 9473, _gloffset_ConvolutionParameteriv }, + { 9933, _gloffset_ConvolutionParameterfv }, + { 22216, _gloffset_GetSeparableFilter }, + { 25921, _gloffset_SeparableFilter2D }, + { 26809, _gloffset_ConvolutionParameteri }, + { 27002, _gloffset_ConvolutionParameterf }, + { 28735, _gloffset_GetConvolutionParameterfv }, + { 29592, _gloffset_GetConvolutionFilter }, + { 32223, _gloffset_CopyConvolutionFilter2D }, /* from GL_EXT_copy_texture */ - { 16140, _gloffset_CopyTexSubImage3D }, - { 17871, _gloffset_CopyTexImage2D }, - { 26221, _gloffset_CopyTexImage1D }, - { 29134, _gloffset_CopyTexSubImage2D }, - { 31723, _gloffset_CopyTexSubImage1D }, + { 16200, _gloffset_CopyTexSubImage3D }, + { 18003, _gloffset_CopyTexImage2D }, + { 26392, _gloffset_CopyTexImage1D }, + { 29273, _gloffset_CopyTexSubImage2D }, + { 31835, _gloffset_CopyTexSubImage1D }, /* from GL_EXT_draw_range_elements */ - { 10298, _gloffset_DrawRangeElements }, + { 10287, _gloffset_DrawRangeElements }, /* from GL_EXT_histogram */ - { 895, _gloffset_Histogram }, - { 3916, _gloffset_ResetHistogram }, - { 10861, _gloffset_GetMinmax }, - { 16474, _gloffset_GetHistogramParameterfv }, - { 26146, _gloffset_GetMinmaxParameteriv }, - { 28454, _gloffset_ResetMinmax }, - { 29350, _gloffset_GetHistogramParameteriv }, - { 30632, _gloffset_GetHistogram }, - { 33355, _gloffset_Minmax }, - { 35043, _gloffset_GetMinmaxParameterfv }, + { 876, _gloffset_Histogram }, + { 3858, _gloffset_ResetHistogram }, + { 10850, _gloffset_GetMinmax }, + { 16534, _gloffset_GetHistogramParameterfv }, + { 26317, _gloffset_GetMinmaxParameteriv }, + { 28625, _gloffset_ResetMinmax }, + { 29489, _gloffset_GetHistogramParameteriv }, + { 30719, _gloffset_GetHistogram }, + { 33467, _gloffset_Minmax }, + { 35102, _gloffset_GetMinmaxParameterfv }, /* from GL_EXT_paletted_texture */ - { 9144, _gloffset_ColorTable }, - { 16320, _gloffset_GetColorTable }, - { 24673, _gloffset_GetColorTableParameterfv }, - { 26887, _gloffset_GetColorTableParameteriv }, + { 9133, _gloffset_ColorTable }, + { 16380, _gloffset_GetColorTable }, + { 24808, _gloffset_GetColorTableParameterfv }, + { 27058, _gloffset_GetColorTableParameteriv }, /* from GL_EXT_subtexture */ - { 7855, _gloffset_TexSubImage1D }, - { 11591, _gloffset_TexSubImage2D }, + { 7844, _gloffset_TexSubImage1D }, + { 11580, _gloffset_TexSubImage2D }, /* from GL_EXT_texture3D */ - { 1941, _gloffset_TexImage3D }, - { 24442, _gloffset_TexSubImage3D }, + { 1922, _gloffset_TexImage3D }, + { 24577, _gloffset_TexSubImage3D }, /* from GL_EXT_texture_object */ - { 3684, _gloffset_PrioritizeTextures }, - { 8304, _gloffset_AreTexturesResident }, - { 14565, _gloffset_GenTextures }, - { 16851, _gloffset_DeleteTextures }, - { 21025, _gloffset_IsTexture }, - { 31788, _gloffset_BindTexture }, + { 3626, _gloffset_PrioritizeTextures }, + { 8293, _gloffset_AreTexturesResident }, + { 14554, _gloffset_GenTextures }, + { 16911, _gloffset_DeleteTextures }, + { 21157, _gloffset_IsTexture }, + { 31900, _gloffset_BindTexture }, /* from GL_EXT_vertex_array */ - { 25922, _gloffset_ArrayElement }, - { 32943, _gloffset_GetPointerv }, - { 34556, _gloffset_DrawArrays }, + { 26093, _gloffset_ArrayElement }, + { 33055, _gloffset_GetPointerv }, + { 34640, _gloffset_DrawArrays }, /* from GL_SGI_color_table */ - { 8422, _gloffset_ColorTableParameteriv }, - { 9144, _gloffset_ColorTable }, - { 16320, _gloffset_GetColorTable }, - { 16430, _gloffset_CopyColorTable }, - { 20886, _gloffset_ColorTableParameterfv }, - { 24673, _gloffset_GetColorTableParameterfv }, - { 26887, _gloffset_GetColorTableParameteriv }, + { 8411, _gloffset_ColorTableParameteriv }, + { 9133, _gloffset_ColorTable }, + { 16380, _gloffset_GetColorTable }, + { 16490, _gloffset_CopyColorTable }, + { 21018, _gloffset_ColorTableParameterfv }, + { 24808, _gloffset_GetColorTableParameterfv }, + { 27058, _gloffset_GetColorTableParameteriv }, /* from GL_VERSION_1_3 */ - { 464, _gloffset_MultiTexCoord3sARB }, - { 696, _gloffset_ActiveTextureARB }, - { 4734, _gloffset_MultiTexCoord1fvARB }, - { 6921, _gloffset_MultiTexCoord3dARB }, - { 6966, _gloffset_MultiTexCoord2iARB }, - { 7090, _gloffset_MultiTexCoord2svARB }, - { 9100, _gloffset_MultiTexCoord2fARB }, - { 11296, _gloffset_MultiTexCoord3fvARB }, - { 11898, _gloffset_MultiTexCoord4sARB }, - { 12579, _gloffset_MultiTexCoord2dvARB }, - { 12986, _gloffset_MultiTexCoord1svARB }, - { 13351, _gloffset_MultiTexCoord3svARB }, - { 13412, _gloffset_MultiTexCoord4iARB }, - { 14269, _gloffset_MultiTexCoord3iARB }, - { 15144, _gloffset_MultiTexCoord1dARB }, - { 15376, _gloffset_MultiTexCoord3dvARB }, - { 16692, _gloffset_MultiTexCoord3ivARB }, - { 16737, _gloffset_MultiTexCoord2sARB }, - { 18241, _gloffset_MultiTexCoord4ivARB }, - { 20526, _gloffset_ClientActiveTextureARB }, - { 22931, _gloffset_MultiTexCoord2dARB }, - { 23368, _gloffset_MultiTexCoord4dvARB }, - { 23790, _gloffset_MultiTexCoord4fvARB }, - { 24814, _gloffset_MultiTexCoord3fARB }, - { 27481, _gloffset_MultiTexCoord4dARB }, - { 27747, _gloffset_MultiTexCoord1sARB }, - { 27951, _gloffset_MultiTexCoord1dvARB }, - { 28978, _gloffset_MultiTexCoord1ivARB }, - { 29071, _gloffset_MultiTexCoord2ivARB }, - { 29410, _gloffset_MultiTexCoord1iARB }, - { 30930, _gloffset_MultiTexCoord4svARB }, - { 31570, _gloffset_MultiTexCoord1fARB }, - { 31850, _gloffset_MultiTexCoord4fARB }, - { 34390, _gloffset_MultiTexCoord2fvARB }, + { 445, _gloffset_MultiTexCoord3sARB }, + { 677, _gloffset_ActiveTextureARB }, + { 4681, _gloffset_MultiTexCoord1fvARB }, + { 6910, _gloffset_MultiTexCoord3dARB }, + { 6955, _gloffset_MultiTexCoord2iARB }, + { 7079, _gloffset_MultiTexCoord2svARB }, + { 9089, _gloffset_MultiTexCoord2fARB }, + { 11285, _gloffset_MultiTexCoord3fvARB }, + { 11887, _gloffset_MultiTexCoord4sARB }, + { 12568, _gloffset_MultiTexCoord2dvARB }, + { 12975, _gloffset_MultiTexCoord1svARB }, + { 13340, _gloffset_MultiTexCoord3svARB }, + { 13401, _gloffset_MultiTexCoord4iARB }, + { 14258, _gloffset_MultiTexCoord3iARB }, + { 15204, _gloffset_MultiTexCoord1dARB }, + { 15436, _gloffset_MultiTexCoord3dvARB }, + { 16752, _gloffset_MultiTexCoord3ivARB }, + { 16797, _gloffset_MultiTexCoord2sARB }, + { 18373, _gloffset_MultiTexCoord4ivARB }, + { 20658, _gloffset_ClientActiveTextureARB }, + { 23063, _gloffset_MultiTexCoord2dARB }, + { 23523, _gloffset_MultiTexCoord4dvARB }, + { 23925, _gloffset_MultiTexCoord4fvARB }, + { 24949, _gloffset_MultiTexCoord3fARB }, + { 27652, _gloffset_MultiTexCoord4dARB }, + { 27918, _gloffset_MultiTexCoord1sARB }, + { 28122, _gloffset_MultiTexCoord1dvARB }, + { 29117, _gloffset_MultiTexCoord1ivARB }, + { 29210, _gloffset_MultiTexCoord2ivARB }, + { 29549, _gloffset_MultiTexCoord1iARB }, + { 31017, _gloffset_MultiTexCoord4svARB }, + { 31657, _gloffset_MultiTexCoord1fARB }, + { 31962, _gloffset_MultiTexCoord4fARB }, + { 34474, _gloffset_MultiTexCoord2fvARB }, { -1, -1 } }; -- 2.30.2