GL_EXT_paletted_texture functions should alias GL_SGI_color_table functions.

The functions for GL_EXT_paletted_texture that do not share GLX
protocol with GL_ARB_imaging are supposed to alias the similar
functions from GL_SGI_color_table.  They didn't.  This patch corrects
this problem and enables GLX protocol for both extensions.

Since this removes 3 entries from the dispatch table, this change
creates a lot of changes in the generated files.
This commit is contained in:
Ian Romanick 2006-08-24 21:42:38 +00:00
parent bf83e652f6
commit a5f2206077
17 changed files with 1980 additions and 2084 deletions

View File

@ -226,6 +226,7 @@ static const struct extension_info known_gl_extensions[] = {
{ GL(OES_read_format), VER(0,0), Y, N, N, N },
{ GL(OES_compressed_paletted_texture),VER(0,0), Y, N, N, N },
{ GL(SGI_color_matrix), VER(0,0), Y, N, N, N },
{ GL(SGI_color_table), VER(0,0), Y, N, N, N },
{ GL(SGI_texture_color_table), VER(0,0), Y, N, N, N },
{ GL(SGIS_generate_mipmap), VER(1,4), Y, N, N, N },
{ GL(SGIS_multisample), VER(0,0), Y, N, N, N },

View File

@ -180,6 +180,7 @@ enum {
GL_OES_compressed_paletted_texture_bit,
GL_OES_read_format_bit,
GL_SGI_color_matrix_bit,
GL_SGI_color_table_bit,
GL_SGI_texture_color_table_bit,
GL_SGIS_generate_mipmap_bit,
GL_SGIS_multisample_bit,

View File

@ -6765,6 +6765,61 @@ __indirect_glDrawBuffersARB(GLsizei n, const GLenum * bufs)
}
}
#define X_GLvop_GetColorTableParameterfvSGI 4099
void
__indirect_glGetColorTableParameterfvSGI(GLenum target, GLenum pname, GLfloat * params)
{
__GLXcontext * const gc = __glXGetCurrentContext();
Display * const dpy = gc->currentDpy;
const GLuint cmdlen = 8;
if (__builtin_expect(dpy != NULL, 1)) {
GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetColorTableParameterfvSGI, cmdlen);
(void) memcpy((void *)(pc + 0), (void *)(&target), 4);
(void) memcpy((void *)(pc + 4), (void *)(&pname), 4);
(void) __glXReadReply(dpy, 4, params, GL_FALSE);
UnlockDisplay(dpy); SyncHandle();
}
return;
}
#define X_GLvop_GetColorTableParameterivSGI 4100
void
__indirect_glGetColorTableParameterivSGI(GLenum target, GLenum pname, GLint * params)
{
__GLXcontext * const gc = __glXGetCurrentContext();
Display * const dpy = gc->currentDpy;
const GLuint cmdlen = 8;
if (__builtin_expect(dpy != NULL, 1)) {
GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetColorTableParameterivSGI, cmdlen);
(void) memcpy((void *)(pc + 0), (void *)(&target), 4);
(void) memcpy((void *)(pc + 4), (void *)(&pname), 4);
(void) __glXReadReply(dpy, 4, params, GL_FALSE);
UnlockDisplay(dpy); SyncHandle();
}
return;
}
#define X_GLvop_GetColorTableSGI 4098
void
__indirect_glGetColorTableSGI(GLenum target, GLenum format, GLenum type, GLvoid * table)
{
__GLXcontext * const gc = __glXGetCurrentContext();
const __GLXattribute * const state = gc->client_state_private;
Display * const dpy = gc->currentDpy;
const GLuint cmdlen = 16;
if (__builtin_expect(dpy != NULL, 1)) {
GLubyte const * pc = __glXSetupVendorRequest(gc, X_GLXVendorPrivateWithReply, X_GLvop_GetColorTableSGI, cmdlen);
(void) memcpy((void *)(pc + 0), (void *)(&target), 4);
(void) memcpy((void *)(pc + 4), (void *)(&format), 4);
(void) memcpy((void *)(pc + 8), (void *)(&type), 4);
*(int32_t *)(pc + 12) = 0;
* (int8_t *)(pc + 12) = state->storePack.swapEndian;
__glXReadPixelReply(dpy, gc, 1, 0, 0, 0, format, type, table, GL_TRUE);
UnlockDisplay(dpy); SyncHandle();
}
return;
}
#define X_GLvop_AreTexturesResidentEXT 11
GLboolean
__indirect_glAreTexturesResidentEXT(GLsizei n, const GLuint * textures, GLboolean * residences)

View File

@ -555,6 +555,9 @@ extern HIDDEN void __indirect_glGetQueryObjectuivARB(GLuint id, GLenum pname, GL
extern HIDDEN void __indirect_glGetQueryivARB(GLenum target, GLenum pname, GLint * params);
extern HIDDEN GLboolean __indirect_glIsQueryARB(GLuint id);
extern HIDDEN void __indirect_glDrawBuffersARB(GLsizei n, const GLenum * bufs);
extern HIDDEN void __indirect_glGetColorTableParameterfvSGI(GLenum target, GLenum pname, GLfloat * params);
extern HIDDEN void __indirect_glGetColorTableParameterivSGI(GLenum target, GLenum pname, GLint * params);
extern HIDDEN void __indirect_glGetColorTableSGI(GLenum target, GLenum format, GLenum type, GLvoid * table);
extern HIDDEN GLboolean __indirect_glAreTexturesResidentEXT(GLsizei n, const GLuint * textures, GLboolean * residences);
extern HIDDEN void __indirect_glGenTexturesEXT(GLsizei n, GLuint * textures);
extern HIDDEN GLboolean __indirect_glIsTextureEXT(GLuint texture);

View File

@ -588,6 +588,12 @@ __GLapi * __glXNewIndirectAPI( void )
glAPI->DrawBuffersARB = __indirect_glDrawBuffersARB;
/* 14. GL_SGI_color_table */
glAPI->GetColorTableParameterfvSGI = __indirect_glGetColorTableParameterfvSGI;
glAPI->GetColorTableParameterivSGI = __indirect_glGetColorTableParameterivSGI;
glAPI->GetColorTableSGI = __indirect_glGetColorTableSGI;
/* 20. GL_EXT_texture_object */
glAPI->AreTexturesResidentEXT = __indirect_glAreTexturesResidentEXT;
@ -635,16 +641,16 @@ __GLapi * __glXNewIndirectAPI( void )
/* 148. GL_EXT_multi_draw_arrays */
glAPI->MultiDrawElementsEXT = __indirect_glMultiDrawElementsEXT;
glAPI->MultiDrawArraysEXT = __indirect_glMultiDrawArraysEXT;
glAPI->MultiDrawElementsEXT = __indirect_glMultiDrawElementsEXT;
/* 149. GL_EXT_fog_coord */
glAPI->FogCoordPointerEXT = __indirect_glFogCoordPointerEXT;
glAPI->FogCoorddEXT = __indirect_glFogCoorddEXT;
glAPI->FogCoorddvEXT = __indirect_glFogCoorddvEXT;
glAPI->FogCoordfEXT = __indirect_glFogCoordfEXT;
glAPI->FogCoordfvEXT = __indirect_glFogCoordfvEXT;
glAPI->FogCoordPointerEXT = __indirect_glFogCoordPointerEXT;
glAPI->FogCoorddEXT = __indirect_glFogCoorddEXT;
/* 173. GL_EXT_blend_func_separate */
@ -652,9 +658,6 @@ __GLapi * __glXNewIndirectAPI( void )
/* 197. GL_MESA_window_pos */
glAPI->WindowPos3ivMESA = __indirect_glWindowPos3ivMESA;
glAPI->WindowPos3sMESA = __indirect_glWindowPos3sMESA;
glAPI->WindowPos3svMESA = __indirect_glWindowPos3svMESA;
glAPI->WindowPos2dMESA = __indirect_glWindowPos2dMESA;
glAPI->WindowPos2dvMESA = __indirect_glWindowPos2dvMESA;
glAPI->WindowPos2fMESA = __indirect_glWindowPos2fMESA;
@ -668,6 +671,9 @@ __GLapi * __glXNewIndirectAPI( void )
glAPI->WindowPos3fMESA = __indirect_glWindowPos3fMESA;
glAPI->WindowPos3fvMESA = __indirect_glWindowPos3fvMESA;
glAPI->WindowPos3iMESA = __indirect_glWindowPos3iMESA;
glAPI->WindowPos3ivMESA = __indirect_glWindowPos3ivMESA;
glAPI->WindowPos3sMESA = __indirect_glWindowPos3sMESA;
glAPI->WindowPos3svMESA = __indirect_glWindowPos3svMESA;
/* 233. GL_NV_vertex_program */
@ -738,8 +744,8 @@ __GLapi * __glXNewIndirectAPI( void )
/* 262. GL_NV_point_sprite */
glAPI->PointParameteriNV = __indirect_glPointParameteriNV;
glAPI->PointParameterivNV = __indirect_glPointParameterivNV;
glAPI->PointParameteriNV = __indirect_glPointParameteriNV;
/* 268. GL_EXT_stencil_two_side */
@ -756,9 +762,6 @@ __GLapi * __glXNewIndirectAPI( void )
/* 310. GL_EXT_framebuffer_object */
glAPI->GetRenderbufferParameterivEXT = __indirect_glGetRenderbufferParameterivEXT;
glAPI->IsFramebufferEXT = __indirect_glIsFramebufferEXT;
glAPI->IsRenderbufferEXT = __indirect_glIsRenderbufferEXT;
glAPI->RenderbufferStorageEXT = __indirect_glRenderbufferStorageEXT;
glAPI->BindFramebufferEXT = __indirect_glBindFramebufferEXT;
glAPI->BindRenderbufferEXT = __indirect_glBindRenderbufferEXT;
@ -773,6 +776,9 @@ __GLapi * __glXNewIndirectAPI( void )
glAPI->GenRenderbuffersEXT = __indirect_glGenRenderbuffersEXT;
glAPI->GenerateMipmapEXT = __indirect_glGenerateMipmapEXT;
glAPI->GetFramebufferAttachmentParameterivEXT = __indirect_glGetFramebufferAttachmentParameterivEXT;
glAPI->GetRenderbufferParameterivEXT = __indirect_glGetRenderbufferParameterivEXT;
glAPI->IsFramebufferEXT = __indirect_glIsFramebufferEXT;
glAPI->IsRenderbufferEXT = __indirect_glIsRenderbufferEXT;
return glAPI;
}

View File

@ -132,10 +132,11 @@ static const char VertexAttrib4ubvNV_names[] =
"";
#endif
#if defined(need_GL_SGI_color_table)
#if defined(need_GL_SGI_color_table) || defined(need_GL_EXT_paletted_texture)
static const char GetColorTableParameterfvSGI_names[] =
"iip\0" /* Parameter signature */
"glGetColorTableParameterfvSGI\0"
"glGetColorTableParameterfvEXT\0"
"";
#endif
@ -177,13 +178,6 @@ static const char ReplacementCodeuiColor3fVertex3fvSUN_names[] =
"";
#endif
#if defined(need_GL_EXT_paletted_texture)
static const char GetColorTableParameterivEXT_names[] =
"iip\0" /* Parameter signature */
"glGetColorTableParameterivEXT\0"
"";
#endif
#if defined(need_GL_EXT_blend_equation_separate) || defined(need_GL_ATI_blend_equation_separate)
static const char BlendEquationSeparateEXT_names[] =
"ii\0" /* Parameter signature */
@ -1153,10 +1147,10 @@ static const char FragmentMaterialfSGIX_names[] =
"";
#endif
#if defined(need_GL_EXT_paletted_texture)
static const char GetColorTableEXT_names[] =
"iiip\0" /* Parameter signature */
"glGetColorTableEXT\0"
#if defined(need_GL_SUN_vertex)
static const char TexCoord2fNormal3fVertex3fSUN_names[] =
"ffffffff\0" /* Parameter signature */
"glTexCoord2fNormal3fVertex3fSUN\0"
"";
#endif
@ -2546,13 +2540,6 @@ static const char CompressedTexSubImage1DARB_names[] =
"";
#endif
#if defined(need_GL_SUN_vertex)
static const char TexCoord2fNormal3fVertex3fSUN_names[] =
"ffffffff\0" /* Parameter signature */
"glTexCoord2fNormal3fVertex3fSUN\0"
"";
#endif
#if defined(need_GL_NV_vertex_program)
static const char GetVertexAttribivNV_names[] =
"iip\0" /* Parameter signature */
@ -3011,10 +2998,11 @@ static const char LightEnviSGIX_names[] =
"";
#endif
#if defined(need_GL_SGI_color_table)
#if defined(need_GL_SGI_color_table) || defined(need_GL_EXT_paletted_texture)
static const char GetColorTableParameterivSGI_names[] =
"iip\0" /* Parameter signature */
"glGetColorTableParameterivSGI\0"
"glGetColorTableParameterivEXT\0"
"";
#endif
@ -3581,10 +3569,11 @@ static const char MultiTexCoord4dARB_names[] =
"";
#endif
#if defined(need_GL_SGI_color_table)
#if defined(need_GL_SGI_color_table) || defined(need_GL_EXT_paletted_texture)
static const char GetColorTableSGI_names[] =
"iiip\0" /* Parameter signature */
"glGetColorTableSGI\0"
"glGetColorTableEXT\0"
"";
#endif
@ -3983,13 +3972,6 @@ static const char ActiveStencilFaceEXT_names[] =
"";
#endif
#if defined(need_GL_EXT_paletted_texture)
static const char GetColorTableParameterfvEXT_names[] =
"iip\0" /* Parameter signature */
"glGetColorTableParameterfvEXT\0"
"";
#endif
#if defined(need_GL_ARB_shader_objects)
static const char GetShaderSourceARB_names[] =
"iipp\0" /* Parameter signature */
@ -5197,10 +5179,10 @@ static const struct dri_extension_function GL_EXT_multisample_functions[] = {
#if defined(need_GL_EXT_paletted_texture)
static const struct dri_extension_function GL_EXT_paletted_texture_functions[] = {
{ GetColorTableParameterivEXT_names, GetColorTableParameterivEXT_remap_index, -1 },
{ GetColorTableEXT_names, GetColorTableEXT_remap_index, -1 },
{ GetColorTableParameterfvSGI_names, GetColorTableParameterfvSGI_remap_index, -1 },
{ ColorTable_names, -1, 339 },
{ GetColorTableParameterfvEXT_names, GetColorTableParameterfvEXT_remap_index, -1 },
{ GetColorTableParameterivSGI_names, GetColorTableParameterivSGI_remap_index, -1 },
{ GetColorTableSGI_names, GetColorTableSGI_remap_index, -1 },
{ NULL, 0, 0 }
};
#endif
@ -5851,6 +5833,7 @@ static const struct dri_extension_function GL_SUN_vertex_functions[] = {
{ TexCoord2fNormal3fVertex3fvSUN_names, TexCoord2fNormal3fVertex3fvSUN_remap_index, -1 },
{ ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN_names, ReplacementCodeuiTexCoord2fNormal3fVertex3fSUN_remap_index, -1 },
{ ReplacementCodeuiTexCoord2fVertex3fSUN_names, ReplacementCodeuiTexCoord2fVertex3fSUN_remap_index, -1 },
{ TexCoord2fNormal3fVertex3fSUN_names, TexCoord2fNormal3fVertex3fSUN_remap_index, -1 },
{ Color3fVertex3fSUN_names, Color3fVertex3fSUN_remap_index, -1 },
{ ReplacementCodeuiNormal3fVertex3fvSUN_names, ReplacementCodeuiNormal3fVertex3fvSUN_remap_index, -1 },
{ Color3fVertex3fvSUN_names, Color3fVertex3fvSUN_remap_index, -1 },
@ -5863,7 +5846,6 @@ static const struct dri_extension_function GL_SUN_vertex_functions[] = {
{ Color4ubVertex2fvSUN_names, Color4ubVertex2fvSUN_remap_index, -1 },
{ Normal3fVertex3fSUN_names, Normal3fVertex3fSUN_remap_index, -1 },
{ ReplacementCodeuiColor4fNormal3fVertex3fSUN_names, ReplacementCodeuiColor4fNormal3fVertex3fSUN_remap_index, -1 },
{ TexCoord2fNormal3fVertex3fSUN_names, TexCoord2fNormal3fVertex3fSUN_remap_index, -1 },
{ TexCoord2fVertex3fvSUN_names, TexCoord2fVertex3fvSUN_remap_index, -1 },
{ Color4ubVertex2fSUN_names, Color4ubVertex2fSUN_remap_index, -1 },
{ ReplacementCodeuiColor4ubVertex3fSUN_names, ReplacementCodeuiColor4ubVertex3fSUN_remap_index, -1 },

View File

@ -1783,15 +1783,6 @@
#define CALL_PointParameterfvEXT(disp, parameters) (*((disp)->PointParameterfvEXT)) parameters
#define GET_PointParameterfvEXT(disp) ((disp)->PointParameterfvEXT)
#define SET_PointParameterfvEXT(disp, fn) ((disp)->PointParameterfvEXT = fn)
#define CALL_GetColorTableEXT(disp, parameters) (*((disp)->GetColorTableEXT)) parameters
#define GET_GetColorTableEXT(disp) ((disp)->GetColorTableEXT)
#define SET_GetColorTableEXT(disp, fn) ((disp)->GetColorTableEXT = fn)
#define CALL_GetColorTableParameterfvEXT(disp, parameters) (*((disp)->GetColorTableParameterfvEXT)) parameters
#define GET_GetColorTableParameterfvEXT(disp) ((disp)->GetColorTableParameterfvEXT)
#define SET_GetColorTableParameterfvEXT(disp, fn) ((disp)->GetColorTableParameterfvEXT = fn)
#define CALL_GetColorTableParameterivEXT(disp, parameters) (*((disp)->GetColorTableParameterivEXT)) parameters
#define GET_GetColorTableParameterivEXT(disp) ((disp)->GetColorTableParameterivEXT)
#define SET_GetColorTableParameterivEXT(disp, fn) ((disp)->GetColorTableParameterivEXT = fn)
#define CALL_LockArraysEXT(disp, parameters) (*((disp)->LockArraysEXT)) parameters
#define GET_LockArraysEXT(disp) ((disp)->LockArraysEXT)
#define SET_LockArraysEXT(disp, fn) ((disp)->LockArraysEXT = fn)
@ -2386,7 +2377,7 @@
#else
#define driDispatchRemapTable_size 367
#define driDispatchRemapTable_size 364
extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define StencilFuncSeparate_remap_index 0
@ -2556,206 +2547,203 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define VertexPointerEXT_remap_index 164
#define PointParameterfEXT_remap_index 165
#define PointParameterfvEXT_remap_index 166
#define GetColorTableEXT_remap_index 167
#define GetColorTableParameterfvEXT_remap_index 168
#define GetColorTableParameterivEXT_remap_index 169
#define LockArraysEXT_remap_index 170
#define UnlockArraysEXT_remap_index 171
#define CullParameterdvEXT_remap_index 172
#define CullParameterfvEXT_remap_index 173
#define SecondaryColor3bEXT_remap_index 174
#define SecondaryColor3bvEXT_remap_index 175
#define SecondaryColor3dEXT_remap_index 176
#define SecondaryColor3dvEXT_remap_index 177
#define SecondaryColor3fEXT_remap_index 178
#define SecondaryColor3fvEXT_remap_index 179
#define SecondaryColor3iEXT_remap_index 180
#define SecondaryColor3ivEXT_remap_index 181
#define SecondaryColor3sEXT_remap_index 182
#define SecondaryColor3svEXT_remap_index 183
#define SecondaryColor3ubEXT_remap_index 184
#define SecondaryColor3ubvEXT_remap_index 185
#define SecondaryColor3uiEXT_remap_index 186
#define SecondaryColor3uivEXT_remap_index 187
#define SecondaryColor3usEXT_remap_index 188
#define SecondaryColor3usvEXT_remap_index 189
#define SecondaryColorPointerEXT_remap_index 190
#define MultiDrawArraysEXT_remap_index 191
#define MultiDrawElementsEXT_remap_index 192
#define FogCoordPointerEXT_remap_index 193
#define FogCoorddEXT_remap_index 194
#define FogCoorddvEXT_remap_index 195
#define FogCoordfEXT_remap_index 196
#define FogCoordfvEXT_remap_index 197
#define PixelTexGenSGIX_remap_index 198
#define BlendFuncSeparateEXT_remap_index 199
#define VertexWeightPointerEXT_remap_index 200
#define VertexWeightfEXT_remap_index 201
#define VertexWeightfvEXT_remap_index 202
#define FlushVertexArrayRangeNV_remap_index 203
#define VertexArrayRangeNV_remap_index 204
#define CombinerInputNV_remap_index 205
#define CombinerOutputNV_remap_index 206
#define CombinerParameterfNV_remap_index 207
#define CombinerParameterfvNV_remap_index 208
#define CombinerParameteriNV_remap_index 209
#define CombinerParameterivNV_remap_index 210
#define FinalCombinerInputNV_remap_index 211
#define GetCombinerInputParameterfvNV_remap_index 212
#define GetCombinerInputParameterivNV_remap_index 213
#define GetCombinerOutputParameterfvNV_remap_index 214
#define GetCombinerOutputParameterivNV_remap_index 215
#define GetFinalCombinerInputParameterfvNV_remap_index 216
#define GetFinalCombinerInputParameterivNV_remap_index 217
#define ResizeBuffersMESA_remap_index 218
#define WindowPos2dMESA_remap_index 219
#define WindowPos2dvMESA_remap_index 220
#define WindowPos2fMESA_remap_index 221
#define WindowPos2fvMESA_remap_index 222
#define WindowPos2iMESA_remap_index 223
#define WindowPos2ivMESA_remap_index 224
#define WindowPos2sMESA_remap_index 225
#define WindowPos2svMESA_remap_index 226
#define WindowPos3dMESA_remap_index 227
#define WindowPos3dvMESA_remap_index 228
#define WindowPos3fMESA_remap_index 229
#define WindowPos3fvMESA_remap_index 230
#define WindowPos3iMESA_remap_index 231
#define WindowPos3ivMESA_remap_index 232
#define WindowPos3sMESA_remap_index 233
#define WindowPos3svMESA_remap_index 234
#define WindowPos4dMESA_remap_index 235
#define WindowPos4dvMESA_remap_index 236
#define WindowPos4fMESA_remap_index 237
#define WindowPos4fvMESA_remap_index 238
#define WindowPos4iMESA_remap_index 239
#define WindowPos4ivMESA_remap_index 240
#define WindowPos4sMESA_remap_index 241
#define WindowPos4svMESA_remap_index 242
#define MultiModeDrawArraysIBM_remap_index 243
#define MultiModeDrawElementsIBM_remap_index 244
#define DeleteFencesNV_remap_index 245
#define FinishFenceNV_remap_index 246
#define GenFencesNV_remap_index 247
#define GetFenceivNV_remap_index 248
#define IsFenceNV_remap_index 249
#define SetFenceNV_remap_index 250
#define TestFenceNV_remap_index 251
#define AreProgramsResidentNV_remap_index 252
#define BindProgramNV_remap_index 253
#define DeleteProgramsNV_remap_index 254
#define ExecuteProgramNV_remap_index 255
#define GenProgramsNV_remap_index 256
#define GetProgramParameterdvNV_remap_index 257
#define GetProgramParameterfvNV_remap_index 258
#define GetProgramStringNV_remap_index 259
#define GetProgramivNV_remap_index 260
#define GetTrackMatrixivNV_remap_index 261
#define GetVertexAttribPointervNV_remap_index 262
#define GetVertexAttribdvNV_remap_index 263
#define GetVertexAttribfvNV_remap_index 264
#define GetVertexAttribivNV_remap_index 265
#define IsProgramNV_remap_index 266
#define LoadProgramNV_remap_index 267
#define ProgramParameter4dNV_remap_index 268
#define ProgramParameter4dvNV_remap_index 269
#define ProgramParameter4fNV_remap_index 270
#define ProgramParameter4fvNV_remap_index 271
#define ProgramParameters4dvNV_remap_index 272
#define ProgramParameters4fvNV_remap_index 273
#define RequestResidentProgramsNV_remap_index 274
#define TrackMatrixNV_remap_index 275
#define VertexAttrib1dNV_remap_index 276
#define VertexAttrib1dvNV_remap_index 277
#define VertexAttrib1fNV_remap_index 278
#define VertexAttrib1fvNV_remap_index 279
#define VertexAttrib1sNV_remap_index 280
#define VertexAttrib1svNV_remap_index 281
#define VertexAttrib2dNV_remap_index 282
#define VertexAttrib2dvNV_remap_index 283
#define VertexAttrib2fNV_remap_index 284
#define VertexAttrib2fvNV_remap_index 285
#define VertexAttrib2sNV_remap_index 286
#define VertexAttrib2svNV_remap_index 287
#define VertexAttrib3dNV_remap_index 288
#define VertexAttrib3dvNV_remap_index 289
#define VertexAttrib3fNV_remap_index 290
#define VertexAttrib3fvNV_remap_index 291
#define VertexAttrib3sNV_remap_index 292
#define VertexAttrib3svNV_remap_index 293
#define VertexAttrib4dNV_remap_index 294
#define VertexAttrib4dvNV_remap_index 295
#define VertexAttrib4fNV_remap_index 296
#define VertexAttrib4fvNV_remap_index 297
#define VertexAttrib4sNV_remap_index 298
#define VertexAttrib4svNV_remap_index 299
#define VertexAttrib4ubNV_remap_index 300
#define VertexAttrib4ubvNV_remap_index 301
#define VertexAttribPointerNV_remap_index 302
#define VertexAttribs1dvNV_remap_index 303
#define VertexAttribs1fvNV_remap_index 304
#define VertexAttribs1svNV_remap_index 305
#define VertexAttribs2dvNV_remap_index 306
#define VertexAttribs2fvNV_remap_index 307
#define VertexAttribs2svNV_remap_index 308
#define VertexAttribs3dvNV_remap_index 309
#define VertexAttribs3fvNV_remap_index 310
#define VertexAttribs3svNV_remap_index 311
#define VertexAttribs4dvNV_remap_index 312
#define VertexAttribs4fvNV_remap_index 313
#define VertexAttribs4svNV_remap_index 314
#define VertexAttribs4ubvNV_remap_index 315
#define AlphaFragmentOp1ATI_remap_index 316
#define AlphaFragmentOp2ATI_remap_index 317
#define AlphaFragmentOp3ATI_remap_index 318
#define BeginFragmentShaderATI_remap_index 319
#define BindFragmentShaderATI_remap_index 320
#define ColorFragmentOp1ATI_remap_index 321
#define ColorFragmentOp2ATI_remap_index 322
#define ColorFragmentOp3ATI_remap_index 323
#define DeleteFragmentShaderATI_remap_index 324
#define EndFragmentShaderATI_remap_index 325
#define GenFragmentShadersATI_remap_index 326
#define PassTexCoordATI_remap_index 327
#define SampleMapATI_remap_index 328
#define SetFragmentShaderConstantATI_remap_index 329
#define PointParameteriNV_remap_index 330
#define PointParameterivNV_remap_index 331
#define ActiveStencilFaceEXT_remap_index 332
#define BindVertexArrayAPPLE_remap_index 333
#define DeleteVertexArraysAPPLE_remap_index 334
#define GenVertexArraysAPPLE_remap_index 335
#define IsVertexArrayAPPLE_remap_index 336
#define GetProgramNamedParameterdvNV_remap_index 337
#define GetProgramNamedParameterfvNV_remap_index 338
#define ProgramNamedParameter4dNV_remap_index 339
#define ProgramNamedParameter4dvNV_remap_index 340
#define ProgramNamedParameter4fNV_remap_index 341
#define ProgramNamedParameter4fvNV_remap_index 342
#define DepthBoundsEXT_remap_index 343
#define BlendEquationSeparateEXT_remap_index 344
#define BindFramebufferEXT_remap_index 345
#define BindRenderbufferEXT_remap_index 346
#define CheckFramebufferStatusEXT_remap_index 347
#define DeleteFramebuffersEXT_remap_index 348
#define DeleteRenderbuffersEXT_remap_index 349
#define FramebufferRenderbufferEXT_remap_index 350
#define FramebufferTexture1DEXT_remap_index 351
#define FramebufferTexture2DEXT_remap_index 352
#define FramebufferTexture3DEXT_remap_index 353
#define GenFramebuffersEXT_remap_index 354
#define GenRenderbuffersEXT_remap_index 355
#define GenerateMipmapEXT_remap_index 356
#define GetFramebufferAttachmentParameterivEXT_remap_index 357
#define GetQueryObjecti64vEXT_remap_index 358
#define GetQueryObjectui64vEXT_remap_index 359
#define GetRenderbufferParameterivEXT_remap_index 360
#define IsFramebufferEXT_remap_index 361
#define IsRenderbufferEXT_remap_index 362
#define RenderbufferStorageEXT_remap_index 363
#define BlitFramebufferEXT_remap_index 364
#define ProgramEnvParameters4fvEXT_remap_index 365
#define ProgramLocalParameters4fvEXT_remap_index 366
#define LockArraysEXT_remap_index 167
#define UnlockArraysEXT_remap_index 168
#define CullParameterdvEXT_remap_index 169
#define CullParameterfvEXT_remap_index 170
#define SecondaryColor3bEXT_remap_index 171
#define SecondaryColor3bvEXT_remap_index 172
#define SecondaryColor3dEXT_remap_index 173
#define SecondaryColor3dvEXT_remap_index 174
#define SecondaryColor3fEXT_remap_index 175
#define SecondaryColor3fvEXT_remap_index 176
#define SecondaryColor3iEXT_remap_index 177
#define SecondaryColor3ivEXT_remap_index 178
#define SecondaryColor3sEXT_remap_index 179
#define SecondaryColor3svEXT_remap_index 180
#define SecondaryColor3ubEXT_remap_index 181
#define SecondaryColor3ubvEXT_remap_index 182
#define SecondaryColor3uiEXT_remap_index 183
#define SecondaryColor3uivEXT_remap_index 184
#define SecondaryColor3usEXT_remap_index 185
#define SecondaryColor3usvEXT_remap_index 186
#define SecondaryColorPointerEXT_remap_index 187
#define MultiDrawArraysEXT_remap_index 188
#define MultiDrawElementsEXT_remap_index 189
#define FogCoordPointerEXT_remap_index 190
#define FogCoorddEXT_remap_index 191
#define FogCoorddvEXT_remap_index 192
#define FogCoordfEXT_remap_index 193
#define FogCoordfvEXT_remap_index 194
#define PixelTexGenSGIX_remap_index 195
#define BlendFuncSeparateEXT_remap_index 196
#define VertexWeightPointerEXT_remap_index 197
#define VertexWeightfEXT_remap_index 198
#define VertexWeightfvEXT_remap_index 199
#define FlushVertexArrayRangeNV_remap_index 200
#define VertexArrayRangeNV_remap_index 201
#define CombinerInputNV_remap_index 202
#define CombinerOutputNV_remap_index 203
#define CombinerParameterfNV_remap_index 204
#define CombinerParameterfvNV_remap_index 205
#define CombinerParameteriNV_remap_index 206
#define CombinerParameterivNV_remap_index 207
#define FinalCombinerInputNV_remap_index 208
#define GetCombinerInputParameterfvNV_remap_index 209
#define GetCombinerInputParameterivNV_remap_index 210
#define GetCombinerOutputParameterfvNV_remap_index 211
#define GetCombinerOutputParameterivNV_remap_index 212
#define GetFinalCombinerInputParameterfvNV_remap_index 213
#define GetFinalCombinerInputParameterivNV_remap_index 214
#define ResizeBuffersMESA_remap_index 215
#define WindowPos2dMESA_remap_index 216
#define WindowPos2dvMESA_remap_index 217
#define WindowPos2fMESA_remap_index 218
#define WindowPos2fvMESA_remap_index 219
#define WindowPos2iMESA_remap_index 220
#define WindowPos2ivMESA_remap_index 221
#define WindowPos2sMESA_remap_index 222
#define WindowPos2svMESA_remap_index 223
#define WindowPos3dMESA_remap_index 224
#define WindowPos3dvMESA_remap_index 225
#define WindowPos3fMESA_remap_index 226
#define WindowPos3fvMESA_remap_index 227
#define WindowPos3iMESA_remap_index 228
#define WindowPos3ivMESA_remap_index 229
#define WindowPos3sMESA_remap_index 230
#define WindowPos3svMESA_remap_index 231
#define WindowPos4dMESA_remap_index 232
#define WindowPos4dvMESA_remap_index 233
#define WindowPos4fMESA_remap_index 234
#define WindowPos4fvMESA_remap_index 235
#define WindowPos4iMESA_remap_index 236
#define WindowPos4ivMESA_remap_index 237
#define WindowPos4sMESA_remap_index 238
#define WindowPos4svMESA_remap_index 239
#define MultiModeDrawArraysIBM_remap_index 240
#define MultiModeDrawElementsIBM_remap_index 241
#define DeleteFencesNV_remap_index 242
#define FinishFenceNV_remap_index 243
#define GenFencesNV_remap_index 244
#define GetFenceivNV_remap_index 245
#define IsFenceNV_remap_index 246
#define SetFenceNV_remap_index 247
#define TestFenceNV_remap_index 248
#define AreProgramsResidentNV_remap_index 249
#define BindProgramNV_remap_index 250
#define DeleteProgramsNV_remap_index 251
#define ExecuteProgramNV_remap_index 252
#define GenProgramsNV_remap_index 253
#define GetProgramParameterdvNV_remap_index 254
#define GetProgramParameterfvNV_remap_index 255
#define GetProgramStringNV_remap_index 256
#define GetProgramivNV_remap_index 257
#define GetTrackMatrixivNV_remap_index 258
#define GetVertexAttribPointervNV_remap_index 259
#define GetVertexAttribdvNV_remap_index 260
#define GetVertexAttribfvNV_remap_index 261
#define GetVertexAttribivNV_remap_index 262
#define IsProgramNV_remap_index 263
#define LoadProgramNV_remap_index 264
#define ProgramParameter4dNV_remap_index 265
#define ProgramParameter4dvNV_remap_index 266
#define ProgramParameter4fNV_remap_index 267
#define ProgramParameter4fvNV_remap_index 268
#define ProgramParameters4dvNV_remap_index 269
#define ProgramParameters4fvNV_remap_index 270
#define RequestResidentProgramsNV_remap_index 271
#define TrackMatrixNV_remap_index 272
#define VertexAttrib1dNV_remap_index 273
#define VertexAttrib1dvNV_remap_index 274
#define VertexAttrib1fNV_remap_index 275
#define VertexAttrib1fvNV_remap_index 276
#define VertexAttrib1sNV_remap_index 277
#define VertexAttrib1svNV_remap_index 278
#define VertexAttrib2dNV_remap_index 279
#define VertexAttrib2dvNV_remap_index 280
#define VertexAttrib2fNV_remap_index 281
#define VertexAttrib2fvNV_remap_index 282
#define VertexAttrib2sNV_remap_index 283
#define VertexAttrib2svNV_remap_index 284
#define VertexAttrib3dNV_remap_index 285
#define VertexAttrib3dvNV_remap_index 286
#define VertexAttrib3fNV_remap_index 287
#define VertexAttrib3fvNV_remap_index 288
#define VertexAttrib3sNV_remap_index 289
#define VertexAttrib3svNV_remap_index 290
#define VertexAttrib4dNV_remap_index 291
#define VertexAttrib4dvNV_remap_index 292
#define VertexAttrib4fNV_remap_index 293
#define VertexAttrib4fvNV_remap_index 294
#define VertexAttrib4sNV_remap_index 295
#define VertexAttrib4svNV_remap_index 296
#define VertexAttrib4ubNV_remap_index 297
#define VertexAttrib4ubvNV_remap_index 298
#define VertexAttribPointerNV_remap_index 299
#define VertexAttribs1dvNV_remap_index 300
#define VertexAttribs1fvNV_remap_index 301
#define VertexAttribs1svNV_remap_index 302
#define VertexAttribs2dvNV_remap_index 303
#define VertexAttribs2fvNV_remap_index 304
#define VertexAttribs2svNV_remap_index 305
#define VertexAttribs3dvNV_remap_index 306
#define VertexAttribs3fvNV_remap_index 307
#define VertexAttribs3svNV_remap_index 308
#define VertexAttribs4dvNV_remap_index 309
#define VertexAttribs4fvNV_remap_index 310
#define VertexAttribs4svNV_remap_index 311
#define VertexAttribs4ubvNV_remap_index 312
#define AlphaFragmentOp1ATI_remap_index 313
#define AlphaFragmentOp2ATI_remap_index 314
#define AlphaFragmentOp3ATI_remap_index 315
#define BeginFragmentShaderATI_remap_index 316
#define BindFragmentShaderATI_remap_index 317
#define ColorFragmentOp1ATI_remap_index 318
#define ColorFragmentOp2ATI_remap_index 319
#define ColorFragmentOp3ATI_remap_index 320
#define DeleteFragmentShaderATI_remap_index 321
#define EndFragmentShaderATI_remap_index 322
#define GenFragmentShadersATI_remap_index 323
#define PassTexCoordATI_remap_index 324
#define SampleMapATI_remap_index 325
#define SetFragmentShaderConstantATI_remap_index 326
#define PointParameteriNV_remap_index 327
#define PointParameterivNV_remap_index 328
#define ActiveStencilFaceEXT_remap_index 329
#define BindVertexArrayAPPLE_remap_index 330
#define DeleteVertexArraysAPPLE_remap_index 331
#define GenVertexArraysAPPLE_remap_index 332
#define IsVertexArrayAPPLE_remap_index 333
#define GetProgramNamedParameterdvNV_remap_index 334
#define GetProgramNamedParameterfvNV_remap_index 335
#define ProgramNamedParameter4dNV_remap_index 336
#define ProgramNamedParameter4dvNV_remap_index 337
#define ProgramNamedParameter4fNV_remap_index 338
#define ProgramNamedParameter4fvNV_remap_index 339
#define DepthBoundsEXT_remap_index 340
#define BlendEquationSeparateEXT_remap_index 341
#define BindFramebufferEXT_remap_index 342
#define BindRenderbufferEXT_remap_index 343
#define CheckFramebufferStatusEXT_remap_index 344
#define DeleteFramebuffersEXT_remap_index 345
#define DeleteRenderbuffersEXT_remap_index 346
#define FramebufferRenderbufferEXT_remap_index 347
#define FramebufferTexture1DEXT_remap_index 348
#define FramebufferTexture2DEXT_remap_index 349
#define FramebufferTexture3DEXT_remap_index 350
#define GenFramebuffersEXT_remap_index 351
#define GenRenderbuffersEXT_remap_index 352
#define GenerateMipmapEXT_remap_index 353
#define GetFramebufferAttachmentParameterivEXT_remap_index 354
#define GetQueryObjecti64vEXT_remap_index 355
#define GetQueryObjectui64vEXT_remap_index 356
#define GetRenderbufferParameterivEXT_remap_index 357
#define IsFramebufferEXT_remap_index 358
#define IsRenderbufferEXT_remap_index 359
#define RenderbufferStorageEXT_remap_index 360
#define BlitFramebufferEXT_remap_index 361
#define ProgramEnvParameters4fvEXT_remap_index 362
#define ProgramLocalParameters4fvEXT_remap_index 363
#define CALL_StencilFuncSeparate(disp, parameters) CALL_by_offset(disp, (void (GLAPIENTRYP)(GLenum, GLenum, GLint, GLuint)), driDispatchRemapTable[StencilFuncSeparate_remap_index], parameters)
#define GET_StencilFuncSeparate(disp) GET_by_offset(disp, driDispatchRemapTable[StencilFuncSeparate_remap_index])
@ -3258,15 +3246,6 @@ extern int driDispatchRemapTable[ driDispatchRemapTable_size ];
#define CALL_PointParameterfvEXT(disp, parameters) CALL_by_offset(disp, (void (GLAPIENTRYP)(GLenum, const GLfloat *)), driDispatchRemapTable[PointParameterfvEXT_remap_index], parameters)
#define GET_PointParameterfvEXT(disp) GET_by_offset(disp, driDispatchRemapTable[PointParameterfvEXT_remap_index])
#define SET_PointParameterfvEXT(disp, fn) SET_by_offset(disp, driDispatchRemapTable[PointParameterfvEXT_remap_index], fn)
#define CALL_GetColorTableEXT(disp, parameters) CALL_by_offset(disp, (void (GLAPIENTRYP)(GLenum, GLenum, GLenum, GLvoid *)), driDispatchRemapTable[GetColorTableEXT_remap_index], parameters)
#define GET_GetColorTableEXT(disp) GET_by_offset(disp, driDispatchRemapTable[GetColorTableEXT_remap_index])
#define SET_GetColorTableEXT(disp, fn) SET_by_offset(disp, driDispatchRemapTable[GetColorTableEXT_remap_index], fn)
#define CALL_GetColorTableParameterfvEXT(disp, parameters) CALL_by_offset(disp, (void (GLAPIENTRYP)(GLenum, GLenum, GLfloat *)), driDispatchRemapTable[GetColorTableParameterfvEXT_remap_index], parameters)
#define GET_GetColorTableParameterfvEXT(disp) GET_by_offset(disp, driDispatchRemapTable[GetColorTableParameterfvEXT_remap_index])
#define SET_GetColorTableParameterfvEXT(disp, fn) SET_by_offset(disp, driDispatchRemapTable[GetColorTableParameterfvEXT_remap_index], fn)
#define CALL_GetColorTableParameterivEXT(disp, parameters) CALL_by_offset(disp, (void (GLAPIENTRYP)(GLenum, GLenum, GLint *)), driDispatchRemapTable[GetColorTableParameterivEXT_remap_index], parameters)
#define GET_GetColorTableParameterivEXT(disp) GET_by_offset(disp, driDispatchRemapTable[GetColorTableParameterivEXT_remap_index])
#define SET_GetColorTableParameterivEXT(disp, fn) SET_by_offset(disp, driDispatchRemapTable[GetColorTableParameterivEXT_remap_index], fn)
#define CALL_LockArraysEXT(disp, parameters) CALL_by_offset(disp, (void (GLAPIENTRYP)(GLint, GLsizei)), driDispatchRemapTable[LockArraysEXT_remap_index], parameters)
#define GET_LockArraysEXT(disp) GET_by_offset(disp, driDispatchRemapTable[LockArraysEXT_remap_index])
#define SET_LockArraysEXT(disp, fn) SET_by_offset(disp, driDispatchRemapTable[LockArraysEXT_remap_index], fn)

View File

@ -7763,22 +7763,22 @@
<param name="target" type="GLenum"/>
<param name="format" type="GLenum"/>
<param name="type" type="GLenum"/>
<param name="table" type="GLvoid *" output="true"/>
<glx vendorpriv="4098" handcode="true" ignore="true"/>
<param name="table" type="GLvoid *" output="true" img_width="width" img_format="format" img_type="type"/>
<glx vendorpriv="4098" dimensions_in_reply="true"/>
</function>
<function name="GetColorTableParameterfvSGI" offset="assign">
<param name="target" type="GLenum"/>
<param name="pname" type="GLenum"/>
<param name="params" type="GLfloat *" output="true" variable_param="pname"/>
<glx vendorpriv="4099" ignore="true"/>
<glx vendorpriv="4099"/>
</function>
<function name="GetColorTableParameterivSGI" offset="assign">
<param name="target" type="GLenum"/>
<param name="pname" type="GLenum"/>
<param name="params" type="GLint *" output="true" variable_param="pname"/>
<glx vendorpriv="4100" ignore="true"/>
<glx vendorpriv="4100"/>
</function>
</category>
@ -8419,26 +8419,23 @@
<param name="table" type="const GLvoid *"/>
</function>
<function name="GetColorTableEXT" offset="assign">
<function name="GetColorTableEXT" alias="GetColorTableSGI">
<param name="target" type="GLenum"/>
<param name="format" type="GLenum"/>
<param name="type" type="GLenum"/>
<param name="data" type="GLvoid *" output="true"/>
<glx ignore="true"/>
<param name="table" type="GLvoid *" output="true"/>
</function>
<function name="GetColorTableParameterivEXT" offset="assign">
<function name="GetColorTableParameterivEXT" alias="GetColorTableParameterivSGI">
<param name="target" type="GLenum"/>
<param name="pname" type="GLenum"/>
<param name="params" type="GLint *" output="true" variable_param="pname"/>
<glx ignore="true"/>
</function>
<function name="GetColorTableParameterfvEXT" offset="assign">
<function name="GetColorTableParameterfvEXT" alias="GetColorTableParameterfvSGI">
<param name="target" type="GLenum"/>
<param name="pname" type="GLenum"/>
<param name="params" type="GLfloat *" output="true" variable_param="pname"/>
<glx ignore="true"/>
</function>
</category>

View File

@ -607,207 +607,204 @@
#define _gloffset_VertexPointerEXT 572
#define _gloffset_PointParameterfEXT 573
#define _gloffset_PointParameterfvEXT 574
#define _gloffset_GetColorTableEXT 575
#define _gloffset_GetColorTableParameterfvEXT 576
#define _gloffset_GetColorTableParameterivEXT 577
#define _gloffset_LockArraysEXT 578
#define _gloffset_UnlockArraysEXT 579
#define _gloffset_CullParameterdvEXT 580
#define _gloffset_CullParameterfvEXT 581
#define _gloffset_SecondaryColor3bEXT 582
#define _gloffset_SecondaryColor3bvEXT 583
#define _gloffset_SecondaryColor3dEXT 584
#define _gloffset_SecondaryColor3dvEXT 585
#define _gloffset_SecondaryColor3fEXT 586
#define _gloffset_SecondaryColor3fvEXT 587
#define _gloffset_SecondaryColor3iEXT 588
#define _gloffset_SecondaryColor3ivEXT 589
#define _gloffset_SecondaryColor3sEXT 590
#define _gloffset_SecondaryColor3svEXT 591
#define _gloffset_SecondaryColor3ubEXT 592
#define _gloffset_SecondaryColor3ubvEXT 593
#define _gloffset_SecondaryColor3uiEXT 594
#define _gloffset_SecondaryColor3uivEXT 595
#define _gloffset_SecondaryColor3usEXT 596
#define _gloffset_SecondaryColor3usvEXT 597
#define _gloffset_SecondaryColorPointerEXT 598
#define _gloffset_MultiDrawArraysEXT 599
#define _gloffset_MultiDrawElementsEXT 600
#define _gloffset_FogCoordPointerEXT 601
#define _gloffset_FogCoorddEXT 602
#define _gloffset_FogCoorddvEXT 603
#define _gloffset_FogCoordfEXT 604
#define _gloffset_FogCoordfvEXT 605
#define _gloffset_PixelTexGenSGIX 606
#define _gloffset_BlendFuncSeparateEXT 607
#define _gloffset_VertexWeightPointerEXT 608
#define _gloffset_VertexWeightfEXT 609
#define _gloffset_VertexWeightfvEXT 610
#define _gloffset_FlushVertexArrayRangeNV 611
#define _gloffset_VertexArrayRangeNV 612
#define _gloffset_CombinerInputNV 613
#define _gloffset_CombinerOutputNV 614
#define _gloffset_CombinerParameterfNV 615
#define _gloffset_CombinerParameterfvNV 616
#define _gloffset_CombinerParameteriNV 617
#define _gloffset_CombinerParameterivNV 618
#define _gloffset_FinalCombinerInputNV 619
#define _gloffset_GetCombinerInputParameterfvNV 620
#define _gloffset_GetCombinerInputParameterivNV 621
#define _gloffset_GetCombinerOutputParameterfvNV 622
#define _gloffset_GetCombinerOutputParameterivNV 623
#define _gloffset_GetFinalCombinerInputParameterfvNV 624
#define _gloffset_GetFinalCombinerInputParameterivNV 625
#define _gloffset_ResizeBuffersMESA 626
#define _gloffset_WindowPos2dMESA 627
#define _gloffset_WindowPos2dvMESA 628
#define _gloffset_WindowPos2fMESA 629
#define _gloffset_WindowPos2fvMESA 630
#define _gloffset_WindowPos2iMESA 631
#define _gloffset_WindowPos2ivMESA 632
#define _gloffset_WindowPos2sMESA 633
#define _gloffset_WindowPos2svMESA 634
#define _gloffset_WindowPos3dMESA 635
#define _gloffset_WindowPos3dvMESA 636
#define _gloffset_WindowPos3fMESA 637
#define _gloffset_WindowPos3fvMESA 638
#define _gloffset_WindowPos3iMESA 639
#define _gloffset_WindowPos3ivMESA 640
#define _gloffset_WindowPos3sMESA 641
#define _gloffset_WindowPos3svMESA 642
#define _gloffset_WindowPos4dMESA 643
#define _gloffset_WindowPos4dvMESA 644
#define _gloffset_WindowPos4fMESA 645
#define _gloffset_WindowPos4fvMESA 646
#define _gloffset_WindowPos4iMESA 647
#define _gloffset_WindowPos4ivMESA 648
#define _gloffset_WindowPos4sMESA 649
#define _gloffset_WindowPos4svMESA 650
#define _gloffset_MultiModeDrawArraysIBM 651
#define _gloffset_MultiModeDrawElementsIBM 652
#define _gloffset_DeleteFencesNV 653
#define _gloffset_FinishFenceNV 654
#define _gloffset_GenFencesNV 655
#define _gloffset_GetFenceivNV 656
#define _gloffset_IsFenceNV 657
#define _gloffset_SetFenceNV 658
#define _gloffset_TestFenceNV 659
#define _gloffset_AreProgramsResidentNV 660
#define _gloffset_BindProgramNV 661
#define _gloffset_DeleteProgramsNV 662
#define _gloffset_ExecuteProgramNV 663
#define _gloffset_GenProgramsNV 664
#define _gloffset_GetProgramParameterdvNV 665
#define _gloffset_GetProgramParameterfvNV 666
#define _gloffset_GetProgramStringNV 667
#define _gloffset_GetProgramivNV 668
#define _gloffset_GetTrackMatrixivNV 669
#define _gloffset_GetVertexAttribPointervNV 670
#define _gloffset_GetVertexAttribdvNV 671
#define _gloffset_GetVertexAttribfvNV 672
#define _gloffset_GetVertexAttribivNV 673
#define _gloffset_IsProgramNV 674
#define _gloffset_LoadProgramNV 675
#define _gloffset_ProgramParameter4dNV 676
#define _gloffset_ProgramParameter4dvNV 677
#define _gloffset_ProgramParameter4fNV 678
#define _gloffset_ProgramParameter4fvNV 679
#define _gloffset_ProgramParameters4dvNV 680
#define _gloffset_ProgramParameters4fvNV 681
#define _gloffset_RequestResidentProgramsNV 682
#define _gloffset_TrackMatrixNV 683
#define _gloffset_VertexAttrib1dNV 684
#define _gloffset_VertexAttrib1dvNV 685
#define _gloffset_VertexAttrib1fNV 686
#define _gloffset_VertexAttrib1fvNV 687
#define _gloffset_VertexAttrib1sNV 688
#define _gloffset_VertexAttrib1svNV 689
#define _gloffset_VertexAttrib2dNV 690
#define _gloffset_VertexAttrib2dvNV 691
#define _gloffset_VertexAttrib2fNV 692
#define _gloffset_VertexAttrib2fvNV 693
#define _gloffset_VertexAttrib2sNV 694
#define _gloffset_VertexAttrib2svNV 695
#define _gloffset_VertexAttrib3dNV 696
#define _gloffset_VertexAttrib3dvNV 697
#define _gloffset_VertexAttrib3fNV 698
#define _gloffset_VertexAttrib3fvNV 699
#define _gloffset_VertexAttrib3sNV 700
#define _gloffset_VertexAttrib3svNV 701
#define _gloffset_VertexAttrib4dNV 702
#define _gloffset_VertexAttrib4dvNV 703
#define _gloffset_VertexAttrib4fNV 704
#define _gloffset_VertexAttrib4fvNV 705
#define _gloffset_VertexAttrib4sNV 706
#define _gloffset_VertexAttrib4svNV 707
#define _gloffset_VertexAttrib4ubNV 708
#define _gloffset_VertexAttrib4ubvNV 709
#define _gloffset_VertexAttribPointerNV 710
#define _gloffset_VertexAttribs1dvNV 711
#define _gloffset_VertexAttribs1fvNV 712
#define _gloffset_VertexAttribs1svNV 713
#define _gloffset_VertexAttribs2dvNV 714
#define _gloffset_VertexAttribs2fvNV 715
#define _gloffset_VertexAttribs2svNV 716
#define _gloffset_VertexAttribs3dvNV 717
#define _gloffset_VertexAttribs3fvNV 718
#define _gloffset_VertexAttribs3svNV 719
#define _gloffset_VertexAttribs4dvNV 720
#define _gloffset_VertexAttribs4fvNV 721
#define _gloffset_VertexAttribs4svNV 722
#define _gloffset_VertexAttribs4ubvNV 723
#define _gloffset_AlphaFragmentOp1ATI 724
#define _gloffset_AlphaFragmentOp2ATI 725
#define _gloffset_AlphaFragmentOp3ATI 726
#define _gloffset_BeginFragmentShaderATI 727
#define _gloffset_BindFragmentShaderATI 728
#define _gloffset_ColorFragmentOp1ATI 729
#define _gloffset_ColorFragmentOp2ATI 730
#define _gloffset_ColorFragmentOp3ATI 731
#define _gloffset_DeleteFragmentShaderATI 732
#define _gloffset_EndFragmentShaderATI 733
#define _gloffset_GenFragmentShadersATI 734
#define _gloffset_PassTexCoordATI 735
#define _gloffset_SampleMapATI 736
#define _gloffset_SetFragmentShaderConstantATI 737
#define _gloffset_PointParameteriNV 738
#define _gloffset_PointParameterivNV 739
#define _gloffset_ActiveStencilFaceEXT 740
#define _gloffset_BindVertexArrayAPPLE 741
#define _gloffset_DeleteVertexArraysAPPLE 742
#define _gloffset_GenVertexArraysAPPLE 743
#define _gloffset_IsVertexArrayAPPLE 744
#define _gloffset_GetProgramNamedParameterdvNV 745
#define _gloffset_GetProgramNamedParameterfvNV 746
#define _gloffset_ProgramNamedParameter4dNV 747
#define _gloffset_ProgramNamedParameter4dvNV 748
#define _gloffset_ProgramNamedParameter4fNV 749
#define _gloffset_ProgramNamedParameter4fvNV 750
#define _gloffset_DepthBoundsEXT 751
#define _gloffset_BlendEquationSeparateEXT 752
#define _gloffset_BindFramebufferEXT 753
#define _gloffset_BindRenderbufferEXT 754
#define _gloffset_CheckFramebufferStatusEXT 755
#define _gloffset_DeleteFramebuffersEXT 756
#define _gloffset_DeleteRenderbuffersEXT 757
#define _gloffset_FramebufferRenderbufferEXT 758
#define _gloffset_FramebufferTexture1DEXT 759
#define _gloffset_FramebufferTexture2DEXT 760
#define _gloffset_FramebufferTexture3DEXT 761
#define _gloffset_GenFramebuffersEXT 762
#define _gloffset_GenRenderbuffersEXT 763
#define _gloffset_GenerateMipmapEXT 764
#define _gloffset_GetFramebufferAttachmentParameterivEXT 765
#define _gloffset_GetQueryObjecti64vEXT 766
#define _gloffset_GetQueryObjectui64vEXT 767
#define _gloffset_GetRenderbufferParameterivEXT 768
#define _gloffset_IsFramebufferEXT 769
#define _gloffset_IsRenderbufferEXT 770
#define _gloffset_RenderbufferStorageEXT 771
#define _gloffset_BlitFramebufferEXT 772
#define _gloffset_ProgramEnvParameters4fvEXT 773
#define _gloffset_ProgramLocalParameters4fvEXT 774
#define _gloffset_FIRST_DYNAMIC 775
#define _gloffset_LockArraysEXT 575
#define _gloffset_UnlockArraysEXT 576
#define _gloffset_CullParameterdvEXT 577
#define _gloffset_CullParameterfvEXT 578
#define _gloffset_SecondaryColor3bEXT 579
#define _gloffset_SecondaryColor3bvEXT 580
#define _gloffset_SecondaryColor3dEXT 581
#define _gloffset_SecondaryColor3dvEXT 582
#define _gloffset_SecondaryColor3fEXT 583
#define _gloffset_SecondaryColor3fvEXT 584
#define _gloffset_SecondaryColor3iEXT 585
#define _gloffset_SecondaryColor3ivEXT 586
#define _gloffset_SecondaryColor3sEXT 587
#define _gloffset_SecondaryColor3svEXT 588
#define _gloffset_SecondaryColor3ubEXT 589
#define _gloffset_SecondaryColor3ubvEXT 590
#define _gloffset_SecondaryColor3uiEXT 591
#define _gloffset_SecondaryColor3uivEXT 592
#define _gloffset_SecondaryColor3usEXT 593
#define _gloffset_SecondaryColor3usvEXT 594
#define _gloffset_SecondaryColorPointerEXT 595
#define _gloffset_MultiDrawArraysEXT 596
#define _gloffset_MultiDrawElementsEXT 597
#define _gloffset_FogCoordPointerEXT 598
#define _gloffset_FogCoorddEXT 599
#define _gloffset_FogCoorddvEXT 600
#define _gloffset_FogCoordfEXT 601
#define _gloffset_FogCoordfvEXT 602
#define _gloffset_PixelTexGenSGIX 603
#define _gloffset_BlendFuncSeparateEXT 604
#define _gloffset_VertexWeightPointerEXT 605
#define _gloffset_VertexWeightfEXT 606
#define _gloffset_VertexWeightfvEXT 607
#define _gloffset_FlushVertexArrayRangeNV 608
#define _gloffset_VertexArrayRangeNV 609
#define _gloffset_CombinerInputNV 610
#define _gloffset_CombinerOutputNV 611
#define _gloffset_CombinerParameterfNV 612
#define _gloffset_CombinerParameterfvNV 613
#define _gloffset_CombinerParameteriNV 614
#define _gloffset_CombinerParameterivNV 615
#define _gloffset_FinalCombinerInputNV 616
#define _gloffset_GetCombinerInputParameterfvNV 617
#define _gloffset_GetCombinerInputParameterivNV 618
#define _gloffset_GetCombinerOutputParameterfvNV 619
#define _gloffset_GetCombinerOutputParameterivNV 620
#define _gloffset_GetFinalCombinerInputParameterfvNV 621
#define _gloffset_GetFinalCombinerInputParameterivNV 622
#define _gloffset_ResizeBuffersMESA 623
#define _gloffset_WindowPos2dMESA 624
#define _gloffset_WindowPos2dvMESA 625
#define _gloffset_WindowPos2fMESA 626
#define _gloffset_WindowPos2fvMESA 627
#define _gloffset_WindowPos2iMESA 628
#define _gloffset_WindowPos2ivMESA 629
#define _gloffset_WindowPos2sMESA 630
#define _gloffset_WindowPos2svMESA 631
#define _gloffset_WindowPos3dMESA 632
#define _gloffset_WindowPos3dvMESA 633
#define _gloffset_WindowPos3fMESA 634
#define _gloffset_WindowPos3fvMESA 635
#define _gloffset_WindowPos3iMESA 636
#define _gloffset_WindowPos3ivMESA 637
#define _gloffset_WindowPos3sMESA 638
#define _gloffset_WindowPos3svMESA 639
#define _gloffset_WindowPos4dMESA 640
#define _gloffset_WindowPos4dvMESA 641
#define _gloffset_WindowPos4fMESA 642
#define _gloffset_WindowPos4fvMESA 643
#define _gloffset_WindowPos4iMESA 644
#define _gloffset_WindowPos4ivMESA 645
#define _gloffset_WindowPos4sMESA 646
#define _gloffset_WindowPos4svMESA 647
#define _gloffset_MultiModeDrawArraysIBM 648
#define _gloffset_MultiModeDrawElementsIBM 649
#define _gloffset_DeleteFencesNV 650
#define _gloffset_FinishFenceNV 651
#define _gloffset_GenFencesNV 652
#define _gloffset_GetFenceivNV 653
#define _gloffset_IsFenceNV 654
#define _gloffset_SetFenceNV 655
#define _gloffset_TestFenceNV 656
#define _gloffset_AreProgramsResidentNV 657
#define _gloffset_BindProgramNV 658
#define _gloffset_DeleteProgramsNV 659
#define _gloffset_ExecuteProgramNV 660
#define _gloffset_GenProgramsNV 661
#define _gloffset_GetProgramParameterdvNV 662
#define _gloffset_GetProgramParameterfvNV 663
#define _gloffset_GetProgramStringNV 664
#define _gloffset_GetProgramivNV 665
#define _gloffset_GetTrackMatrixivNV 666
#define _gloffset_GetVertexAttribPointervNV 667
#define _gloffset_GetVertexAttribdvNV 668
#define _gloffset_GetVertexAttribfvNV 669
#define _gloffset_GetVertexAttribivNV 670
#define _gloffset_IsProgramNV 671
#define _gloffset_LoadProgramNV 672
#define _gloffset_ProgramParameter4dNV 673
#define _gloffset_ProgramParameter4dvNV 674
#define _gloffset_ProgramParameter4fNV 675
#define _gloffset_ProgramParameter4fvNV 676
#define _gloffset_ProgramParameters4dvNV 677
#define _gloffset_ProgramParameters4fvNV 678
#define _gloffset_RequestResidentProgramsNV 679
#define _gloffset_TrackMatrixNV 680
#define _gloffset_VertexAttrib1dNV 681
#define _gloffset_VertexAttrib1dvNV 682
#define _gloffset_VertexAttrib1fNV 683
#define _gloffset_VertexAttrib1fvNV 684
#define _gloffset_VertexAttrib1sNV 685
#define _gloffset_VertexAttrib1svNV 686
#define _gloffset_VertexAttrib2dNV 687
#define _gloffset_VertexAttrib2dvNV 688
#define _gloffset_VertexAttrib2fNV 689
#define _gloffset_VertexAttrib2fvNV 690
#define _gloffset_VertexAttrib2sNV 691
#define _gloffset_VertexAttrib2svNV 692
#define _gloffset_VertexAttrib3dNV 693
#define _gloffset_VertexAttrib3dvNV 694
#define _gloffset_VertexAttrib3fNV 695
#define _gloffset_VertexAttrib3fvNV 696
#define _gloffset_VertexAttrib3sNV 697
#define _gloffset_VertexAttrib3svNV 698
#define _gloffset_VertexAttrib4dNV 699
#define _gloffset_VertexAttrib4dvNV 700
#define _gloffset_VertexAttrib4fNV 701
#define _gloffset_VertexAttrib4fvNV 702
#define _gloffset_VertexAttrib4sNV 703
#define _gloffset_VertexAttrib4svNV 704
#define _gloffset_VertexAttrib4ubNV 705
#define _gloffset_VertexAttrib4ubvNV 706
#define _gloffset_VertexAttribPointerNV 707
#define _gloffset_VertexAttribs1dvNV 708
#define _gloffset_VertexAttribs1fvNV 709
#define _gloffset_VertexAttribs1svNV 710
#define _gloffset_VertexAttribs2dvNV 711
#define _gloffset_VertexAttribs2fvNV 712
#define _gloffset_VertexAttribs2svNV 713
#define _gloffset_VertexAttribs3dvNV 714
#define _gloffset_VertexAttribs3fvNV 715
#define _gloffset_VertexAttribs3svNV 716
#define _gloffset_VertexAttribs4dvNV 717
#define _gloffset_VertexAttribs4fvNV 718
#define _gloffset_VertexAttribs4svNV 719
#define _gloffset_VertexAttribs4ubvNV 720
#define _gloffset_AlphaFragmentOp1ATI 721
#define _gloffset_AlphaFragmentOp2ATI 722
#define _gloffset_AlphaFragmentOp3ATI 723
#define _gloffset_BeginFragmentShaderATI 724
#define _gloffset_BindFragmentShaderATI 725
#define _gloffset_ColorFragmentOp1ATI 726
#define _gloffset_ColorFragmentOp2ATI 727
#define _gloffset_ColorFragmentOp3ATI 728
#define _gloffset_DeleteFragmentShaderATI 729
#define _gloffset_EndFragmentShaderATI 730
#define _gloffset_GenFragmentShadersATI 731
#define _gloffset_PassTexCoordATI 732
#define _gloffset_SampleMapATI 733
#define _gloffset_SetFragmentShaderConstantATI 734
#define _gloffset_PointParameteriNV 735
#define _gloffset_PointParameterivNV 736
#define _gloffset_ActiveStencilFaceEXT 737
#define _gloffset_BindVertexArrayAPPLE 738
#define _gloffset_DeleteVertexArraysAPPLE 739
#define _gloffset_GenVertexArraysAPPLE 740
#define _gloffset_IsVertexArrayAPPLE 741
#define _gloffset_GetProgramNamedParameterdvNV 742
#define _gloffset_GetProgramNamedParameterfvNV 743
#define _gloffset_ProgramNamedParameter4dNV 744
#define _gloffset_ProgramNamedParameter4dvNV 745
#define _gloffset_ProgramNamedParameter4fNV 746
#define _gloffset_ProgramNamedParameter4fvNV 747
#define _gloffset_DepthBoundsEXT 748
#define _gloffset_BlendEquationSeparateEXT 749
#define _gloffset_BindFramebufferEXT 750
#define _gloffset_BindRenderbufferEXT 751
#define _gloffset_CheckFramebufferStatusEXT 752
#define _gloffset_DeleteFramebuffersEXT 753
#define _gloffset_DeleteRenderbuffersEXT 754
#define _gloffset_FramebufferRenderbufferEXT 755
#define _gloffset_FramebufferTexture1DEXT 756
#define _gloffset_FramebufferTexture2DEXT 757
#define _gloffset_FramebufferTexture3DEXT 758
#define _gloffset_GenFramebuffersEXT 759
#define _gloffset_GenRenderbuffersEXT 760
#define _gloffset_GenerateMipmapEXT 761
#define _gloffset_GetFramebufferAttachmentParameterivEXT 762
#define _gloffset_GetQueryObjecti64vEXT 763
#define _gloffset_GetQueryObjectui64vEXT 764
#define _gloffset_GetRenderbufferParameterivEXT 765
#define _gloffset_IsFramebufferEXT 766
#define _gloffset_IsRenderbufferEXT 767
#define _gloffset_RenderbufferStorageEXT 768
#define _gloffset_BlitFramebufferEXT 769
#define _gloffset_ProgramEnvParameters4fvEXT 770
#define _gloffset_ProgramLocalParameters4fvEXT 771
#define _gloffset_FIRST_DYNAMIC 772
#else
@ -978,9 +975,6 @@
#define _gloffset_VertexPointerEXT driDispatchRemapTable[VertexPointerEXT_remap_index]
#define _gloffset_PointParameterfEXT driDispatchRemapTable[PointParameterfEXT_remap_index]
#define _gloffset_PointParameterfvEXT driDispatchRemapTable[PointParameterfvEXT_remap_index]
#define _gloffset_GetColorTableEXT driDispatchRemapTable[GetColorTableEXT_remap_index]
#define _gloffset_GetColorTableParameterfvEXT driDispatchRemapTable[GetColorTableParameterfvEXT_remap_index]
#define _gloffset_GetColorTableParameterivEXT driDispatchRemapTable[GetColorTableParameterivEXT_remap_index]
#define _gloffset_LockArraysEXT driDispatchRemapTable[LockArraysEXT_remap_index]
#define _gloffset_UnlockArraysEXT driDispatchRemapTable[UnlockArraysEXT_remap_index]
#define _gloffset_CullParameterdvEXT driDispatchRemapTable[CullParameterdvEXT_remap_index]

View File

@ -612,206 +612,203 @@ struct _glapi_table
void (GLAPIENTRYP VertexPointerEXT)(GLint size, GLenum type, GLsizei stride, GLsizei count, const GLvoid * pointer); /* 572 */
void (GLAPIENTRYP PointParameterfEXT)(GLenum pname, GLfloat param); /* 573 */
void (GLAPIENTRYP PointParameterfvEXT)(GLenum pname, const GLfloat * params); /* 574 */
void (GLAPIENTRYP GetColorTableEXT)(GLenum target, GLenum format, GLenum type, GLvoid * data); /* 575 */
void (GLAPIENTRYP GetColorTableParameterfvEXT)(GLenum target, GLenum pname, GLfloat * params); /* 576 */
void (GLAPIENTRYP GetColorTableParameterivEXT)(GLenum target, GLenum pname, GLint * params); /* 577 */
void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 578 */
void (GLAPIENTRYP UnlockArraysEXT)(void); /* 579 */
void (GLAPIENTRYP CullParameterdvEXT)(GLenum pname, GLdouble * params); /* 580 */
void (GLAPIENTRYP CullParameterfvEXT)(GLenum pname, GLfloat * params); /* 581 */
void (GLAPIENTRYP SecondaryColor3bEXT)(GLbyte red, GLbyte green, GLbyte blue); /* 582 */
void (GLAPIENTRYP SecondaryColor3bvEXT)(const GLbyte * v); /* 583 */
void (GLAPIENTRYP SecondaryColor3dEXT)(GLdouble red, GLdouble green, GLdouble blue); /* 584 */
void (GLAPIENTRYP SecondaryColor3dvEXT)(const GLdouble * v); /* 585 */
void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 586 */
void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 587 */
void (GLAPIENTRYP SecondaryColor3iEXT)(GLint red, GLint green, GLint blue); /* 588 */
void (GLAPIENTRYP SecondaryColor3ivEXT)(const GLint * v); /* 589 */
void (GLAPIENTRYP SecondaryColor3sEXT)(GLshort red, GLshort green, GLshort blue); /* 590 */
void (GLAPIENTRYP SecondaryColor3svEXT)(const GLshort * v); /* 591 */
void (GLAPIENTRYP SecondaryColor3ubEXT)(GLubyte red, GLubyte green, GLubyte blue); /* 592 */
void (GLAPIENTRYP SecondaryColor3ubvEXT)(const GLubyte * v); /* 593 */
void (GLAPIENTRYP SecondaryColor3uiEXT)(GLuint red, GLuint green, GLuint blue); /* 594 */
void (GLAPIENTRYP SecondaryColor3uivEXT)(const GLuint * v); /* 595 */
void (GLAPIENTRYP SecondaryColor3usEXT)(GLushort red, GLushort green, GLushort blue); /* 596 */
void (GLAPIENTRYP SecondaryColor3usvEXT)(const GLushort * v); /* 597 */
void (GLAPIENTRYP SecondaryColorPointerEXT)(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 598 */
void (GLAPIENTRYP MultiDrawArraysEXT)(GLenum mode, GLint * first, GLsizei * count, GLsizei primcount); /* 599 */
void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount); /* 600 */
void (GLAPIENTRYP FogCoordPointerEXT)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 601 */
void (GLAPIENTRYP FogCoorddEXT)(GLdouble coord); /* 602 */
void (GLAPIENTRYP FogCoorddvEXT)(const GLdouble * coord); /* 603 */
void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 604 */
void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 605 */
void (GLAPIENTRYP PixelTexGenSGIX)(GLenum mode); /* 606 */
void (GLAPIENTRYP BlendFuncSeparateEXT)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); /* 607 */
void (GLAPIENTRYP VertexWeightPointerEXT)(GLsizei size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 608 */
void (GLAPIENTRYP VertexWeightfEXT)(GLfloat weight); /* 609 */
void (GLAPIENTRYP VertexWeightfvEXT)(const GLfloat * weight); /* 610 */
void (GLAPIENTRYP FlushVertexArrayRangeNV)(void); /* 611 */
void (GLAPIENTRYP VertexArrayRangeNV)(GLsizei length, const GLvoid * pointer); /* 612 */
void (GLAPIENTRYP CombinerInputNV)(GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 613 */
void (GLAPIENTRYP CombinerOutputNV)(GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); /* 614 */
void (GLAPIENTRYP CombinerParameterfNV)(GLenum pname, GLfloat param); /* 615 */
void (GLAPIENTRYP CombinerParameterfvNV)(GLenum pname, const GLfloat * params); /* 616 */
void (GLAPIENTRYP CombinerParameteriNV)(GLenum pname, GLint param); /* 617 */
void (GLAPIENTRYP CombinerParameterivNV)(GLenum pname, const GLint * params); /* 618 */
void (GLAPIENTRYP FinalCombinerInputNV)(GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 619 */
void (GLAPIENTRYP GetCombinerInputParameterfvNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat * params); /* 620 */
void (GLAPIENTRYP GetCombinerInputParameterivNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint * params); /* 621 */
void (GLAPIENTRYP GetCombinerOutputParameterfvNV)(GLenum stage, GLenum portion, GLenum pname, GLfloat * params); /* 622 */
void (GLAPIENTRYP GetCombinerOutputParameterivNV)(GLenum stage, GLenum portion, GLenum pname, GLint * params); /* 623 */
void (GLAPIENTRYP GetFinalCombinerInputParameterfvNV)(GLenum variable, GLenum pname, GLfloat * params); /* 624 */
void (GLAPIENTRYP GetFinalCombinerInputParameterivNV)(GLenum variable, GLenum pname, GLint * params); /* 625 */
void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 626 */
void (GLAPIENTRYP WindowPos2dMESA)(GLdouble x, GLdouble y); /* 627 */
void (GLAPIENTRYP WindowPos2dvMESA)(const GLdouble * v); /* 628 */
void (GLAPIENTRYP WindowPos2fMESA)(GLfloat x, GLfloat y); /* 629 */
void (GLAPIENTRYP WindowPos2fvMESA)(const GLfloat * v); /* 630 */
void (GLAPIENTRYP WindowPos2iMESA)(GLint x, GLint y); /* 631 */
void (GLAPIENTRYP WindowPos2ivMESA)(const GLint * v); /* 632 */
void (GLAPIENTRYP WindowPos2sMESA)(GLshort x, GLshort y); /* 633 */
void (GLAPIENTRYP WindowPos2svMESA)(const GLshort * v); /* 634 */
void (GLAPIENTRYP WindowPos3dMESA)(GLdouble x, GLdouble y, GLdouble z); /* 635 */
void (GLAPIENTRYP WindowPos3dvMESA)(const GLdouble * v); /* 636 */
void (GLAPIENTRYP WindowPos3fMESA)(GLfloat x, GLfloat y, GLfloat z); /* 637 */
void (GLAPIENTRYP WindowPos3fvMESA)(const GLfloat * v); /* 638 */
void (GLAPIENTRYP WindowPos3iMESA)(GLint x, GLint y, GLint z); /* 639 */
void (GLAPIENTRYP WindowPos3ivMESA)(const GLint * v); /* 640 */
void (GLAPIENTRYP WindowPos3sMESA)(GLshort x, GLshort y, GLshort z); /* 641 */
void (GLAPIENTRYP WindowPos3svMESA)(const GLshort * v); /* 642 */
void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 643 */
void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 644 */
void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 645 */
void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 646 */
void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 647 */
void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 648 */
void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 649 */
void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 650 */
void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 651 */
void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 652 */
void (GLAPIENTRYP DeleteFencesNV)(GLsizei n, const GLuint * fences); /* 653 */
void (GLAPIENTRYP FinishFenceNV)(GLuint fence); /* 654 */
void (GLAPIENTRYP GenFencesNV)(GLsizei n, GLuint * fences); /* 655 */
void (GLAPIENTRYP GetFenceivNV)(GLuint fence, GLenum pname, GLint * params); /* 656 */
GLboolean (GLAPIENTRYP IsFenceNV)(GLuint fence); /* 657 */
void (GLAPIENTRYP SetFenceNV)(GLuint fence, GLenum condition); /* 658 */
GLboolean (GLAPIENTRYP TestFenceNV)(GLuint fence); /* 659 */
GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 660 */
void (GLAPIENTRYP BindProgramNV)(GLenum target, GLuint program); /* 661 */
void (GLAPIENTRYP DeleteProgramsNV)(GLsizei n, const GLuint * programs); /* 662 */
void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 663 */
void (GLAPIENTRYP GenProgramsNV)(GLsizei n, GLuint * programs); /* 664 */
void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 665 */
void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 666 */
void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 667 */
void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 668 */
void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 669 */
void (GLAPIENTRYP GetVertexAttribPointervNV)(GLuint index, GLenum pname, GLvoid ** params); /* 670 */
void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 671 */
void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 672 */
void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 673 */
GLboolean (GLAPIENTRYP IsProgramNV)(GLuint program); /* 674 */
void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 675 */
void (GLAPIENTRYP ProgramParameter4dNV)(GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 676 */
void (GLAPIENTRYP ProgramParameter4dvNV)(GLenum target, GLuint index, const GLdouble * params); /* 677 */
void (GLAPIENTRYP ProgramParameter4fNV)(GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 678 */
void (GLAPIENTRYP ProgramParameter4fvNV)(GLenum target, GLuint index, const GLfloat * params); /* 679 */
void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLuint num, const GLdouble * params); /* 680 */
void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLuint num, const GLfloat * params); /* 681 */
void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 682 */
void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 683 */
void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 684 */
void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 685 */
void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 686 */
void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 687 */
void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 688 */
void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 689 */
void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 690 */
void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 691 */
void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 692 */
void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 693 */
void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 694 */
void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 695 */
void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 696 */
void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 697 */
void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 698 */
void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 699 */
void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 700 */
void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 701 */
void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 702 */
void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 703 */
void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 704 */
void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 705 */
void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 706 */
void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 707 */
void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 708 */
void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 709 */
void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 710 */
void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 711 */
void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 712 */
void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 713 */
void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 714 */
void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 715 */
void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 716 */
void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 717 */
void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 718 */
void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 719 */
void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 720 */
void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 721 */
void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 722 */
void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 723 */
void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 724 */
void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 725 */
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); /* 726 */
void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 727 */
void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 728 */
void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 729 */
void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 730 */
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); /* 731 */
void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 732 */
void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 733 */
GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 734 */
void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 735 */
void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 736 */
void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 737 */
void (GLAPIENTRYP PointParameteriNV)(GLenum pname, GLint param); /* 738 */
void (GLAPIENTRYP PointParameterivNV)(GLenum pname, const GLint * params); /* 739 */
void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 740 */
void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 741 */
void (GLAPIENTRYP DeleteVertexArraysAPPLE)(GLsizei n, const GLuint * arrays); /* 742 */
void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 743 */
GLboolean (GLAPIENTRYP IsVertexArrayAPPLE)(GLuint array); /* 744 */
void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 745 */
void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 746 */
void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 747 */
void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 748 */
void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 749 */
void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 750 */
void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 751 */
void (GLAPIENTRYP BlendEquationSeparateEXT)(GLenum modeRGB, GLenum modeA); /* 752 */
void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 753 */
void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 754 */
GLenum (GLAPIENTRYP CheckFramebufferStatusEXT)(GLenum target); /* 755 */
void (GLAPIENTRYP DeleteFramebuffersEXT)(GLsizei n, const GLuint * framebuffers); /* 756 */
void (GLAPIENTRYP DeleteRenderbuffersEXT)(GLsizei n, const GLuint * renderbuffers); /* 757 */
void (GLAPIENTRYP FramebufferRenderbufferEXT)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); /* 758 */
void (GLAPIENTRYP FramebufferTexture1DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 759 */
void (GLAPIENTRYP FramebufferTexture2DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 760 */
void (GLAPIENTRYP FramebufferTexture3DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); /* 761 */
void (GLAPIENTRYP GenFramebuffersEXT)(GLsizei n, GLuint * framebuffers); /* 762 */
void (GLAPIENTRYP GenRenderbuffersEXT)(GLsizei n, GLuint * renderbuffers); /* 763 */
void (GLAPIENTRYP GenerateMipmapEXT)(GLenum target); /* 764 */
void (GLAPIENTRYP GetFramebufferAttachmentParameterivEXT)(GLenum target, GLenum attachment, GLenum pname, GLint * params); /* 765 */
void (GLAPIENTRYP GetQueryObjecti64vEXT)(GLuint id, GLenum pname, GLint64EXT * params); /* 766 */
void (GLAPIENTRYP GetQueryObjectui64vEXT)(GLuint id, GLenum pname, GLuint64EXT * params); /* 767 */
void (GLAPIENTRYP GetRenderbufferParameterivEXT)(GLenum target, GLenum pname, GLint * params); /* 768 */
GLboolean (GLAPIENTRYP IsFramebufferEXT)(GLuint framebuffer); /* 769 */
GLboolean (GLAPIENTRYP IsRenderbufferEXT)(GLuint renderbuffer); /* 770 */
void (GLAPIENTRYP RenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); /* 771 */
void (GLAPIENTRYP BlitFramebufferEXT)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); /* 772 */
void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 773 */
void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 774 */
void (GLAPIENTRYP LockArraysEXT)(GLint first, GLsizei count); /* 575 */
void (GLAPIENTRYP UnlockArraysEXT)(void); /* 576 */
void (GLAPIENTRYP CullParameterdvEXT)(GLenum pname, GLdouble * params); /* 577 */
void (GLAPIENTRYP CullParameterfvEXT)(GLenum pname, GLfloat * params); /* 578 */
void (GLAPIENTRYP SecondaryColor3bEXT)(GLbyte red, GLbyte green, GLbyte blue); /* 579 */
void (GLAPIENTRYP SecondaryColor3bvEXT)(const GLbyte * v); /* 580 */
void (GLAPIENTRYP SecondaryColor3dEXT)(GLdouble red, GLdouble green, GLdouble blue); /* 581 */
void (GLAPIENTRYP SecondaryColor3dvEXT)(const GLdouble * v); /* 582 */
void (GLAPIENTRYP SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 583 */
void (GLAPIENTRYP SecondaryColor3fvEXT)(const GLfloat * v); /* 584 */
void (GLAPIENTRYP SecondaryColor3iEXT)(GLint red, GLint green, GLint blue); /* 585 */
void (GLAPIENTRYP SecondaryColor3ivEXT)(const GLint * v); /* 586 */
void (GLAPIENTRYP SecondaryColor3sEXT)(GLshort red, GLshort green, GLshort blue); /* 587 */
void (GLAPIENTRYP SecondaryColor3svEXT)(const GLshort * v); /* 588 */
void (GLAPIENTRYP SecondaryColor3ubEXT)(GLubyte red, GLubyte green, GLubyte blue); /* 589 */
void (GLAPIENTRYP SecondaryColor3ubvEXT)(const GLubyte * v); /* 590 */
void (GLAPIENTRYP SecondaryColor3uiEXT)(GLuint red, GLuint green, GLuint blue); /* 591 */
void (GLAPIENTRYP SecondaryColor3uivEXT)(const GLuint * v); /* 592 */
void (GLAPIENTRYP SecondaryColor3usEXT)(GLushort red, GLushort green, GLushort blue); /* 593 */
void (GLAPIENTRYP SecondaryColor3usvEXT)(const GLushort * v); /* 594 */
void (GLAPIENTRYP SecondaryColorPointerEXT)(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 595 */
void (GLAPIENTRYP MultiDrawArraysEXT)(GLenum mode, GLint * first, GLsizei * count, GLsizei primcount); /* 596 */
void (GLAPIENTRYP MultiDrawElementsEXT)(GLenum mode, const GLsizei * count, GLenum type, const GLvoid ** indices, GLsizei primcount); /* 597 */
void (GLAPIENTRYP FogCoordPointerEXT)(GLenum type, GLsizei stride, const GLvoid * pointer); /* 598 */
void (GLAPIENTRYP FogCoorddEXT)(GLdouble coord); /* 599 */
void (GLAPIENTRYP FogCoorddvEXT)(const GLdouble * coord); /* 600 */
void (GLAPIENTRYP FogCoordfEXT)(GLfloat coord); /* 601 */
void (GLAPIENTRYP FogCoordfvEXT)(const GLfloat * coord); /* 602 */
void (GLAPIENTRYP PixelTexGenSGIX)(GLenum mode); /* 603 */
void (GLAPIENTRYP BlendFuncSeparateEXT)(GLenum sfactorRGB, GLenum dfactorRGB, GLenum sfactorAlpha, GLenum dfactorAlpha); /* 604 */
void (GLAPIENTRYP VertexWeightPointerEXT)(GLsizei size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 605 */
void (GLAPIENTRYP VertexWeightfEXT)(GLfloat weight); /* 606 */
void (GLAPIENTRYP VertexWeightfvEXT)(const GLfloat * weight); /* 607 */
void (GLAPIENTRYP FlushVertexArrayRangeNV)(void); /* 608 */
void (GLAPIENTRYP VertexArrayRangeNV)(GLsizei length, const GLvoid * pointer); /* 609 */
void (GLAPIENTRYP CombinerInputNV)(GLenum stage, GLenum portion, GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 610 */
void (GLAPIENTRYP CombinerOutputNV)(GLenum stage, GLenum portion, GLenum abOutput, GLenum cdOutput, GLenum sumOutput, GLenum scale, GLenum bias, GLboolean abDotProduct, GLboolean cdDotProduct, GLboolean muxSum); /* 611 */
void (GLAPIENTRYP CombinerParameterfNV)(GLenum pname, GLfloat param); /* 612 */
void (GLAPIENTRYP CombinerParameterfvNV)(GLenum pname, const GLfloat * params); /* 613 */
void (GLAPIENTRYP CombinerParameteriNV)(GLenum pname, GLint param); /* 614 */
void (GLAPIENTRYP CombinerParameterivNV)(GLenum pname, const GLint * params); /* 615 */
void (GLAPIENTRYP FinalCombinerInputNV)(GLenum variable, GLenum input, GLenum mapping, GLenum componentUsage); /* 616 */
void (GLAPIENTRYP GetCombinerInputParameterfvNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLfloat * params); /* 617 */
void (GLAPIENTRYP GetCombinerInputParameterivNV)(GLenum stage, GLenum portion, GLenum variable, GLenum pname, GLint * params); /* 618 */
void (GLAPIENTRYP GetCombinerOutputParameterfvNV)(GLenum stage, GLenum portion, GLenum pname, GLfloat * params); /* 619 */
void (GLAPIENTRYP GetCombinerOutputParameterivNV)(GLenum stage, GLenum portion, GLenum pname, GLint * params); /* 620 */
void (GLAPIENTRYP GetFinalCombinerInputParameterfvNV)(GLenum variable, GLenum pname, GLfloat * params); /* 621 */
void (GLAPIENTRYP GetFinalCombinerInputParameterivNV)(GLenum variable, GLenum pname, GLint * params); /* 622 */
void (GLAPIENTRYP ResizeBuffersMESA)(void); /* 623 */
void (GLAPIENTRYP WindowPos2dMESA)(GLdouble x, GLdouble y); /* 624 */
void (GLAPIENTRYP WindowPos2dvMESA)(const GLdouble * v); /* 625 */
void (GLAPIENTRYP WindowPos2fMESA)(GLfloat x, GLfloat y); /* 626 */
void (GLAPIENTRYP WindowPos2fvMESA)(const GLfloat * v); /* 627 */
void (GLAPIENTRYP WindowPos2iMESA)(GLint x, GLint y); /* 628 */
void (GLAPIENTRYP WindowPos2ivMESA)(const GLint * v); /* 629 */
void (GLAPIENTRYP WindowPos2sMESA)(GLshort x, GLshort y); /* 630 */
void (GLAPIENTRYP WindowPos2svMESA)(const GLshort * v); /* 631 */
void (GLAPIENTRYP WindowPos3dMESA)(GLdouble x, GLdouble y, GLdouble z); /* 632 */
void (GLAPIENTRYP WindowPos3dvMESA)(const GLdouble * v); /* 633 */
void (GLAPIENTRYP WindowPos3fMESA)(GLfloat x, GLfloat y, GLfloat z); /* 634 */
void (GLAPIENTRYP WindowPos3fvMESA)(const GLfloat * v); /* 635 */
void (GLAPIENTRYP WindowPos3iMESA)(GLint x, GLint y, GLint z); /* 636 */
void (GLAPIENTRYP WindowPos3ivMESA)(const GLint * v); /* 637 */
void (GLAPIENTRYP WindowPos3sMESA)(GLshort x, GLshort y, GLshort z); /* 638 */
void (GLAPIENTRYP WindowPos3svMESA)(const GLshort * v); /* 639 */
void (GLAPIENTRYP WindowPos4dMESA)(GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 640 */
void (GLAPIENTRYP WindowPos4dvMESA)(const GLdouble * v); /* 641 */
void (GLAPIENTRYP WindowPos4fMESA)(GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 642 */
void (GLAPIENTRYP WindowPos4fvMESA)(const GLfloat * v); /* 643 */
void (GLAPIENTRYP WindowPos4iMESA)(GLint x, GLint y, GLint z, GLint w); /* 644 */
void (GLAPIENTRYP WindowPos4ivMESA)(const GLint * v); /* 645 */
void (GLAPIENTRYP WindowPos4sMESA)(GLshort x, GLshort y, GLshort z, GLshort w); /* 646 */
void (GLAPIENTRYP WindowPos4svMESA)(const GLshort * v); /* 647 */
void (GLAPIENTRYP MultiModeDrawArraysIBM)(const GLenum * mode, const GLint * first, const GLsizei * count, GLsizei primcount, GLint modestride); /* 648 */
void (GLAPIENTRYP MultiModeDrawElementsIBM)(const GLenum * mode, const GLsizei * count, GLenum type, const GLvoid * const * indices, GLsizei primcount, GLint modestride); /* 649 */
void (GLAPIENTRYP DeleteFencesNV)(GLsizei n, const GLuint * fences); /* 650 */
void (GLAPIENTRYP FinishFenceNV)(GLuint fence); /* 651 */
void (GLAPIENTRYP GenFencesNV)(GLsizei n, GLuint * fences); /* 652 */
void (GLAPIENTRYP GetFenceivNV)(GLuint fence, GLenum pname, GLint * params); /* 653 */
GLboolean (GLAPIENTRYP IsFenceNV)(GLuint fence); /* 654 */
void (GLAPIENTRYP SetFenceNV)(GLuint fence, GLenum condition); /* 655 */
GLboolean (GLAPIENTRYP TestFenceNV)(GLuint fence); /* 656 */
GLboolean (GLAPIENTRYP AreProgramsResidentNV)(GLsizei n, const GLuint * ids, GLboolean * residences); /* 657 */
void (GLAPIENTRYP BindProgramNV)(GLenum target, GLuint program); /* 658 */
void (GLAPIENTRYP DeleteProgramsNV)(GLsizei n, const GLuint * programs); /* 659 */
void (GLAPIENTRYP ExecuteProgramNV)(GLenum target, GLuint id, const GLfloat * params); /* 660 */
void (GLAPIENTRYP GenProgramsNV)(GLsizei n, GLuint * programs); /* 661 */
void (GLAPIENTRYP GetProgramParameterdvNV)(GLenum target, GLuint index, GLenum pname, GLdouble * params); /* 662 */
void (GLAPIENTRYP GetProgramParameterfvNV)(GLenum target, GLuint index, GLenum pname, GLfloat * params); /* 663 */
void (GLAPIENTRYP GetProgramStringNV)(GLuint id, GLenum pname, GLubyte * program); /* 664 */
void (GLAPIENTRYP GetProgramivNV)(GLuint id, GLenum pname, GLint * params); /* 665 */
void (GLAPIENTRYP GetTrackMatrixivNV)(GLenum target, GLuint address, GLenum pname, GLint * params); /* 666 */
void (GLAPIENTRYP GetVertexAttribPointervNV)(GLuint index, GLenum pname, GLvoid ** params); /* 667 */
void (GLAPIENTRYP GetVertexAttribdvNV)(GLuint index, GLenum pname, GLdouble * params); /* 668 */
void (GLAPIENTRYP GetVertexAttribfvNV)(GLuint index, GLenum pname, GLfloat * params); /* 669 */
void (GLAPIENTRYP GetVertexAttribivNV)(GLuint index, GLenum pname, GLint * params); /* 670 */
GLboolean (GLAPIENTRYP IsProgramNV)(GLuint program); /* 671 */
void (GLAPIENTRYP LoadProgramNV)(GLenum target, GLuint id, GLsizei len, const GLubyte * program); /* 672 */
void (GLAPIENTRYP ProgramParameter4dNV)(GLenum target, GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 673 */
void (GLAPIENTRYP ProgramParameter4dvNV)(GLenum target, GLuint index, const GLdouble * params); /* 674 */
void (GLAPIENTRYP ProgramParameter4fNV)(GLenum target, GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 675 */
void (GLAPIENTRYP ProgramParameter4fvNV)(GLenum target, GLuint index, const GLfloat * params); /* 676 */
void (GLAPIENTRYP ProgramParameters4dvNV)(GLenum target, GLuint index, GLuint num, const GLdouble * params); /* 677 */
void (GLAPIENTRYP ProgramParameters4fvNV)(GLenum target, GLuint index, GLuint num, const GLfloat * params); /* 678 */
void (GLAPIENTRYP RequestResidentProgramsNV)(GLsizei n, const GLuint * ids); /* 679 */
void (GLAPIENTRYP TrackMatrixNV)(GLenum target, GLuint address, GLenum matrix, GLenum transform); /* 680 */
void (GLAPIENTRYP VertexAttrib1dNV)(GLuint index, GLdouble x); /* 681 */
void (GLAPIENTRYP VertexAttrib1dvNV)(GLuint index, const GLdouble * v); /* 682 */
void (GLAPIENTRYP VertexAttrib1fNV)(GLuint index, GLfloat x); /* 683 */
void (GLAPIENTRYP VertexAttrib1fvNV)(GLuint index, const GLfloat * v); /* 684 */
void (GLAPIENTRYP VertexAttrib1sNV)(GLuint index, GLshort x); /* 685 */
void (GLAPIENTRYP VertexAttrib1svNV)(GLuint index, const GLshort * v); /* 686 */
void (GLAPIENTRYP VertexAttrib2dNV)(GLuint index, GLdouble x, GLdouble y); /* 687 */
void (GLAPIENTRYP VertexAttrib2dvNV)(GLuint index, const GLdouble * v); /* 688 */
void (GLAPIENTRYP VertexAttrib2fNV)(GLuint index, GLfloat x, GLfloat y); /* 689 */
void (GLAPIENTRYP VertexAttrib2fvNV)(GLuint index, const GLfloat * v); /* 690 */
void (GLAPIENTRYP VertexAttrib2sNV)(GLuint index, GLshort x, GLshort y); /* 691 */
void (GLAPIENTRYP VertexAttrib2svNV)(GLuint index, const GLshort * v); /* 692 */
void (GLAPIENTRYP VertexAttrib3dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z); /* 693 */
void (GLAPIENTRYP VertexAttrib3dvNV)(GLuint index, const GLdouble * v); /* 694 */
void (GLAPIENTRYP VertexAttrib3fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z); /* 695 */
void (GLAPIENTRYP VertexAttrib3fvNV)(GLuint index, const GLfloat * v); /* 696 */
void (GLAPIENTRYP VertexAttrib3sNV)(GLuint index, GLshort x, GLshort y, GLshort z); /* 697 */
void (GLAPIENTRYP VertexAttrib3svNV)(GLuint index, const GLshort * v); /* 698 */
void (GLAPIENTRYP VertexAttrib4dNV)(GLuint index, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 699 */
void (GLAPIENTRYP VertexAttrib4dvNV)(GLuint index, const GLdouble * v); /* 700 */
void (GLAPIENTRYP VertexAttrib4fNV)(GLuint index, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 701 */
void (GLAPIENTRYP VertexAttrib4fvNV)(GLuint index, const GLfloat * v); /* 702 */
void (GLAPIENTRYP VertexAttrib4sNV)(GLuint index, GLshort x, GLshort y, GLshort z, GLshort w); /* 703 */
void (GLAPIENTRYP VertexAttrib4svNV)(GLuint index, const GLshort * v); /* 704 */
void (GLAPIENTRYP VertexAttrib4ubNV)(GLuint index, GLubyte x, GLubyte y, GLubyte z, GLubyte w); /* 705 */
void (GLAPIENTRYP VertexAttrib4ubvNV)(GLuint index, const GLubyte * v); /* 706 */
void (GLAPIENTRYP VertexAttribPointerNV)(GLuint index, GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 707 */
void (GLAPIENTRYP VertexAttribs1dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 708 */
void (GLAPIENTRYP VertexAttribs1fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 709 */
void (GLAPIENTRYP VertexAttribs1svNV)(GLuint index, GLsizei n, const GLshort * v); /* 710 */
void (GLAPIENTRYP VertexAttribs2dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 711 */
void (GLAPIENTRYP VertexAttribs2fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 712 */
void (GLAPIENTRYP VertexAttribs2svNV)(GLuint index, GLsizei n, const GLshort * v); /* 713 */
void (GLAPIENTRYP VertexAttribs3dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 714 */
void (GLAPIENTRYP VertexAttribs3fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 715 */
void (GLAPIENTRYP VertexAttribs3svNV)(GLuint index, GLsizei n, const GLshort * v); /* 716 */
void (GLAPIENTRYP VertexAttribs4dvNV)(GLuint index, GLsizei n, const GLdouble * v); /* 717 */
void (GLAPIENTRYP VertexAttribs4fvNV)(GLuint index, GLsizei n, const GLfloat * v); /* 718 */
void (GLAPIENTRYP VertexAttribs4svNV)(GLuint index, GLsizei n, const GLshort * v); /* 719 */
void (GLAPIENTRYP VertexAttribs4ubvNV)(GLuint index, GLsizei n, const GLubyte * v); /* 720 */
void (GLAPIENTRYP AlphaFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 721 */
void (GLAPIENTRYP AlphaFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 722 */
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); /* 723 */
void (GLAPIENTRYP BeginFragmentShaderATI)(void); /* 724 */
void (GLAPIENTRYP BindFragmentShaderATI)(GLuint id); /* 725 */
void (GLAPIENTRYP ColorFragmentOp1ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod); /* 726 */
void (GLAPIENTRYP ColorFragmentOp2ATI)(GLenum op, GLuint dst, GLuint dstMask, GLuint dstMod, GLuint arg1, GLuint arg1Rep, GLuint arg1Mod, GLuint arg2, GLuint arg2Rep, GLuint arg2Mod); /* 727 */
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); /* 728 */
void (GLAPIENTRYP DeleteFragmentShaderATI)(GLuint id); /* 729 */
void (GLAPIENTRYP EndFragmentShaderATI)(void); /* 730 */
GLuint (GLAPIENTRYP GenFragmentShadersATI)(GLuint range); /* 731 */
void (GLAPIENTRYP PassTexCoordATI)(GLuint dst, GLuint coord, GLenum swizzle); /* 732 */
void (GLAPIENTRYP SampleMapATI)(GLuint dst, GLuint interp, GLenum swizzle); /* 733 */
void (GLAPIENTRYP SetFragmentShaderConstantATI)(GLuint dst, const GLfloat * value); /* 734 */
void (GLAPIENTRYP PointParameteriNV)(GLenum pname, GLint param); /* 735 */
void (GLAPIENTRYP PointParameterivNV)(GLenum pname, const GLint * params); /* 736 */
void (GLAPIENTRYP ActiveStencilFaceEXT)(GLenum face); /* 737 */
void (GLAPIENTRYP BindVertexArrayAPPLE)(GLuint array); /* 738 */
void (GLAPIENTRYP DeleteVertexArraysAPPLE)(GLsizei n, const GLuint * arrays); /* 739 */
void (GLAPIENTRYP GenVertexArraysAPPLE)(GLsizei n, GLuint * arrays); /* 740 */
GLboolean (GLAPIENTRYP IsVertexArrayAPPLE)(GLuint array); /* 741 */
void (GLAPIENTRYP GetProgramNamedParameterdvNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble * params); /* 742 */
void (GLAPIENTRYP GetProgramNamedParameterfvNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat * params); /* 743 */
void (GLAPIENTRYP ProgramNamedParameter4dNV)(GLuint id, GLsizei len, const GLubyte * name, GLdouble x, GLdouble y, GLdouble z, GLdouble w); /* 744 */
void (GLAPIENTRYP ProgramNamedParameter4dvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLdouble * v); /* 745 */
void (GLAPIENTRYP ProgramNamedParameter4fNV)(GLuint id, GLsizei len, const GLubyte * name, GLfloat x, GLfloat y, GLfloat z, GLfloat w); /* 746 */
void (GLAPIENTRYP ProgramNamedParameter4fvNV)(GLuint id, GLsizei len, const GLubyte * name, const GLfloat * v); /* 747 */
void (GLAPIENTRYP DepthBoundsEXT)(GLclampd zmin, GLclampd zmax); /* 748 */
void (GLAPIENTRYP BlendEquationSeparateEXT)(GLenum modeRGB, GLenum modeA); /* 749 */
void (GLAPIENTRYP BindFramebufferEXT)(GLenum target, GLuint framebuffer); /* 750 */
void (GLAPIENTRYP BindRenderbufferEXT)(GLenum target, GLuint renderbuffer); /* 751 */
GLenum (GLAPIENTRYP CheckFramebufferStatusEXT)(GLenum target); /* 752 */
void (GLAPIENTRYP DeleteFramebuffersEXT)(GLsizei n, const GLuint * framebuffers); /* 753 */
void (GLAPIENTRYP DeleteRenderbuffersEXT)(GLsizei n, const GLuint * renderbuffers); /* 754 */
void (GLAPIENTRYP FramebufferRenderbufferEXT)(GLenum target, GLenum attachment, GLenum renderbuffertarget, GLuint renderbuffer); /* 755 */
void (GLAPIENTRYP FramebufferTexture1DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 756 */
void (GLAPIENTRYP FramebufferTexture2DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level); /* 757 */
void (GLAPIENTRYP FramebufferTexture3DEXT)(GLenum target, GLenum attachment, GLenum textarget, GLuint texture, GLint level, GLint zoffset); /* 758 */
void (GLAPIENTRYP GenFramebuffersEXT)(GLsizei n, GLuint * framebuffers); /* 759 */
void (GLAPIENTRYP GenRenderbuffersEXT)(GLsizei n, GLuint * renderbuffers); /* 760 */
void (GLAPIENTRYP GenerateMipmapEXT)(GLenum target); /* 761 */
void (GLAPIENTRYP GetFramebufferAttachmentParameterivEXT)(GLenum target, GLenum attachment, GLenum pname, GLint * params); /* 762 */
void (GLAPIENTRYP GetQueryObjecti64vEXT)(GLuint id, GLenum pname, GLint64EXT * params); /* 763 */
void (GLAPIENTRYP GetQueryObjectui64vEXT)(GLuint id, GLenum pname, GLuint64EXT * params); /* 764 */
void (GLAPIENTRYP GetRenderbufferParameterivEXT)(GLenum target, GLenum pname, GLint * params); /* 765 */
GLboolean (GLAPIENTRYP IsFramebufferEXT)(GLuint framebuffer); /* 766 */
GLboolean (GLAPIENTRYP IsRenderbufferEXT)(GLuint renderbuffer); /* 767 */
void (GLAPIENTRYP RenderbufferStorageEXT)(GLenum target, GLenum internalformat, GLsizei width, GLsizei height); /* 768 */
void (GLAPIENTRYP BlitFramebufferEXT)(GLint srcX0, GLint srcY0, GLint srcX1, GLint srcY1, GLint dstX0, GLint dstY0, GLint dstX1, GLint dstY1, GLbitfield mask, GLenum filter); /* 769 */
void (GLAPIENTRYP ProgramEnvParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 770 */
void (GLAPIENTRYP ProgramLocalParameters4fvEXT)(GLenum target, GLuint index, GLsizei count, const GLfloat * params); /* 771 */
};
#endif /* !defined( _GLAPI_TABLE_H_ ) */

View File

@ -3370,16 +3370,31 @@ KEYWORD1 void KEYWORD2 NAME(GetColorTableParameterfvSGI)(GLenum target, GLenum p
DISPATCH(GetColorTableParameterfvSGI, (target, pname, params), (F, "glGetColorTableParameterfvSGI(0x%x, 0x%x, %p);\n", target, pname, (const void *) params));
}
KEYWORD1 void KEYWORD2 NAME(GetColorTableParameterfvEXT)(GLenum target, GLenum pname, GLfloat * params)
{
DISPATCH(GetColorTableParameterfvSGI, (target, pname, params), (F, "glGetColorTableParameterfvEXT(0x%x, 0x%x, %p);\n", target, pname, (const void *) params));
}
KEYWORD1 void KEYWORD2 NAME(GetColorTableParameterivSGI)(GLenum target, GLenum pname, GLint * params)
{
DISPATCH(GetColorTableParameterivSGI, (target, pname, params), (F, "glGetColorTableParameterivSGI(0x%x, 0x%x, %p);\n", target, pname, (const void *) params));
}
KEYWORD1 void KEYWORD2 NAME(GetColorTableParameterivEXT)(GLenum target, GLenum pname, GLint * params)
{
DISPATCH(GetColorTableParameterivSGI, (target, pname, params), (F, "glGetColorTableParameterivEXT(0x%x, 0x%x, %p);\n", target, pname, (const void *) params));
}
KEYWORD1 void KEYWORD2 NAME(GetColorTableSGI)(GLenum target, GLenum format, GLenum type, GLvoid * table)
{
DISPATCH(GetColorTableSGI, (target, format, type, table), (F, "glGetColorTableSGI(0x%x, 0x%x, 0x%x, %p);\n", target, format, type, (const void *) table));
}
KEYWORD1 void KEYWORD2 NAME(GetColorTableEXT)(GLenum target, GLenum format, GLenum type, GLvoid * table)
{
DISPATCH(GetColorTableSGI, (target, format, type, table), (F, "glGetColorTableEXT(0x%x, 0x%x, 0x%x, %p);\n", target, format, type, (const void *) table));
}
KEYWORD1 void KEYWORD2 NAME(GetPixelTexGenParameterfvSGIS)(GLenum pname, GLfloat * params)
{
DISPATCH(GetPixelTexGenParameterfvSGIS, (pname, params), (F, "glGetPixelTexGenParameterfvSGIS(0x%x, %p);\n", pname, (const void *) params));
@ -3515,21 +3530,6 @@ KEYWORD1 void KEYWORD2 NAME(PointParameterfvSGIS)(GLenum pname, const GLfloat *
DISPATCH(PointParameterfvEXT, (pname, params), (F, "glPointParameterfvSGIS(0x%x, %p);\n", pname, (const void *) params));
}
KEYWORD1 void KEYWORD2 NAME(GetColorTableEXT)(GLenum target, GLenum format, GLenum type, GLvoid * data)
{
DISPATCH(GetColorTableEXT, (target, format, type, data), (F, "glGetColorTableEXT(0x%x, 0x%x, 0x%x, %p);\n", target, format, type, (const void *) data));
}
KEYWORD1 void KEYWORD2 NAME(GetColorTableParameterfvEXT)(GLenum target, GLenum pname, GLfloat * params)
{
DISPATCH(GetColorTableParameterfvEXT, (target, pname, params), (F, "glGetColorTableParameterfvEXT(0x%x, 0x%x, %p);\n", target, pname, (const void *) params));
}
KEYWORD1 void KEYWORD2 NAME(GetColorTableParameterivEXT)(GLenum target, GLenum pname, GLint * params)
{
DISPATCH(GetColorTableParameterivEXT, (target, pname, params), (F, "glGetColorTableParameterivEXT(0x%x, 0x%x, %p);\n", target, pname, (const void *) params));
}
KEYWORD1 void KEYWORD2 NAME(LockArraysEXT)(GLint first, GLsizei count)
{
DISPATCH(LockArraysEXT, (first, count), (F, "glLockArraysEXT(%d, %d);\n", first, count));
@ -4670,30 +4670,30 @@ KEYWORD1 void KEYWORD2 NAME(ActiveStencilFaceEXT)(GLenum face)
DISPATCH(ActiveStencilFaceEXT, (face), (F, "glActiveStencilFaceEXT(0x%x);\n", face));
}
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_741)(GLuint array);
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_738)(GLuint array);
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_741)(GLuint array)
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_738)(GLuint array)
{
DISPATCH(BindVertexArrayAPPLE, (array), (F, "glBindVertexArrayAPPLE(%d);\n", array));
}
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_742)(GLsizei n, const GLuint * arrays);
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_739)(GLsizei n, const GLuint * arrays);
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_742)(GLsizei n, const GLuint * arrays)
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_739)(GLsizei n, const GLuint * arrays)
{
DISPATCH(DeleteVertexArraysAPPLE, (n, arrays), (F, "glDeleteVertexArraysAPPLE(%d, %p);\n", n, (const void *) arrays));
}
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_743)(GLsizei n, GLuint * arrays);
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_740)(GLsizei n, GLuint * arrays);
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_743)(GLsizei n, GLuint * arrays)
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_740)(GLsizei n, GLuint * arrays)
{
DISPATCH(GenVertexArraysAPPLE, (n, arrays), (F, "glGenVertexArraysAPPLE(%d, %p);\n", n, (const void *) arrays));
}
KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_744)(GLuint array);
KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_741)(GLuint array);
KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_744)(GLuint array)
KEYWORD1_ALT GLboolean KEYWORD2 NAME(_dispatch_stub_741)(GLuint array)
{
RETURN_DISPATCH(IsVertexArrayAPPLE, (array), (F, "glIsVertexArrayAPPLE(%d);\n", array));
}
@ -4843,16 +4843,16 @@ KEYWORD1 void KEYWORD2 NAME(BlitFramebufferEXT)(GLint srcX0, GLint srcY0, GLint
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_773)(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_770)(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_773)(GLenum target, GLuint index, GLsizei count, const GLfloat * params)
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_770)(GLenum target, GLuint index, GLsizei count, const GLfloat * params)
{
DISPATCH(ProgramEnvParameters4fvEXT, (target, index, count, params), (F, "glProgramEnvParameters4fvEXT(0x%x, %d, %d, %p);\n", target, index, count, (const void *) params));
}
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_774)(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_771)(GLenum target, GLuint index, GLsizei count, const GLfloat * params);
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_774)(GLenum target, GLuint index, GLsizei count, const GLfloat * params)
KEYWORD1_ALT void KEYWORD2 NAME(_dispatch_stub_771)(GLenum target, GLuint index, GLsizei count, const GLfloat * params)
{
DISPATCH(ProgramLocalParameters4fvEXT, (target, index, count, params), (F, "glProgramLocalParameters4fvEXT(0x%x, %d, %d, %p);\n", target, index, count, (const void *) params));
}
@ -5446,9 +5446,6 @@ static _glapi_proc DISPATCH_TABLE_NAME[] = {
TABLE_ENTRY(VertexPointerEXT),
TABLE_ENTRY(PointParameterfEXT),
TABLE_ENTRY(PointParameterfvEXT),
TABLE_ENTRY(GetColorTableEXT),
TABLE_ENTRY(GetColorTableParameterfvEXT),
TABLE_ENTRY(GetColorTableParameterivEXT),
TABLE_ENTRY(LockArraysEXT),
TABLE_ENTRY(UnlockArraysEXT),
TABLE_ENTRY(CullParameterdvEXT),
@ -5612,10 +5609,10 @@ static _glapi_proc DISPATCH_TABLE_NAME[] = {
TABLE_ENTRY(PointParameteriNV),
TABLE_ENTRY(PointParameterivNV),
TABLE_ENTRY(ActiveStencilFaceEXT),
TABLE_ENTRY(_dispatch_stub_738),
TABLE_ENTRY(_dispatch_stub_739),
TABLE_ENTRY(_dispatch_stub_740),
TABLE_ENTRY(_dispatch_stub_741),
TABLE_ENTRY(_dispatch_stub_742),
TABLE_ENTRY(_dispatch_stub_743),
TABLE_ENTRY(_dispatch_stub_744),
TABLE_ENTRY(GetProgramNamedParameterdvNV),
TABLE_ENTRY(GetProgramNamedParameterfvNV),
TABLE_ENTRY(ProgramNamedParameter4dNV),
@ -5644,8 +5641,8 @@ static _glapi_proc DISPATCH_TABLE_NAME[] = {
TABLE_ENTRY(IsRenderbufferEXT),
TABLE_ENTRY(RenderbufferStorageEXT),
TABLE_ENTRY(BlitFramebufferEXT),
TABLE_ENTRY(_dispatch_stub_773),
TABLE_ENTRY(_dispatch_stub_774),
TABLE_ENTRY(_dispatch_stub_770),
TABLE_ENTRY(_dispatch_stub_771),
/* A whole bunch of no-op functions. These might be called
* when someone tries to call a dynamically-registered
* extension function without a current rendering context.
@ -5863,6 +5860,9 @@ static _glapi_proc UNUSED_TABLE_NAME[] = {
TABLE_ENTRY(GetQueryiv),
TABLE_ENTRY(IsQuery),
TABLE_ENTRY(DrawBuffersATI),
TABLE_ENTRY(GetColorTableParameterfvEXT),
TABLE_ENTRY(GetColorTableParameterivEXT),
TABLE_ENTRY(GetColorTableEXT),
TABLE_ENTRY(SampleMaskEXT),
TABLE_ENTRY(SamplePatternEXT),
TABLE_ENTRY(PointParameterf),

View File

@ -621,9 +621,6 @@ static const char gl_string_table[] =
"glVertexPointerEXT\0"
"glPointParameterfEXT\0"
"glPointParameterfvEXT\0"
"glGetColorTableEXT\0"
"glGetColorTableParameterfvEXT\0"
"glGetColorTableParameterivEXT\0"
"glLockArraysEXT\0"
"glUnlockArraysEXT\0"
"glCullParameterdvEXT\0"
@ -925,6 +922,9 @@ static const char gl_string_table[] =
"glGetQueryiv\0"
"glIsQuery\0"
"glDrawBuffersATI\0"
"glGetColorTableParameterfvEXT\0"
"glGetColorTableParameterivEXT\0"
"glGetColorTableEXT\0"
"glSampleMaskEXT\0"
"glSamplePatternEXT\0"
"glPointParameterf\0"
@ -1003,12 +1003,12 @@ static const char gl_string_table[] =
/* FIXME: Having these (incorrect) prototypes here is ugly. */
#ifdef NEED_FUNCTION_POINTER
extern void gl_dispatch_stub_738(void);
extern void gl_dispatch_stub_739(void);
extern void gl_dispatch_stub_740(void);
extern void gl_dispatch_stub_741(void);
extern void gl_dispatch_stub_742(void);
extern void gl_dispatch_stub_743(void);
extern void gl_dispatch_stub_744(void);
extern void gl_dispatch_stub_773(void);
extern void gl_dispatch_stub_774(void);
extern void gl_dispatch_stub_770(void);
extern void gl_dispatch_stub_771(void);
#endif /* NEED_FUNCTION_POINTER */
static const glprocs_table_t static_functions[] = {
@ -1587,310 +1587,310 @@ static const glprocs_table_t static_functions[] = {
NAME_FUNC_OFFSET( 9343, glVertexPointerEXT, _gloffset_VertexPointerEXT ),
NAME_FUNC_OFFSET( 9362, glPointParameterfEXT, _gloffset_PointParameterfEXT ),
NAME_FUNC_OFFSET( 9383, glPointParameterfvEXT, _gloffset_PointParameterfvEXT ),
NAME_FUNC_OFFSET( 9405, glGetColorTableEXT, _gloffset_GetColorTableEXT ),
NAME_FUNC_OFFSET( 9424, glGetColorTableParameterfvEXT, _gloffset_GetColorTableParameterfvEXT ),
NAME_FUNC_OFFSET( 9454, glGetColorTableParameterivEXT, _gloffset_GetColorTableParameterivEXT ),
NAME_FUNC_OFFSET( 9484, glLockArraysEXT, _gloffset_LockArraysEXT ),
NAME_FUNC_OFFSET( 9500, glUnlockArraysEXT, _gloffset_UnlockArraysEXT ),
NAME_FUNC_OFFSET( 9518, glCullParameterdvEXT, _gloffset_CullParameterdvEXT ),
NAME_FUNC_OFFSET( 9539, glCullParameterfvEXT, _gloffset_CullParameterfvEXT ),
NAME_FUNC_OFFSET( 9560, glSecondaryColor3bEXT, _gloffset_SecondaryColor3bEXT ),
NAME_FUNC_OFFSET( 9582, glSecondaryColor3bvEXT, _gloffset_SecondaryColor3bvEXT ),
NAME_FUNC_OFFSET( 9605, glSecondaryColor3dEXT, _gloffset_SecondaryColor3dEXT ),
NAME_FUNC_OFFSET( 9627, glSecondaryColor3dvEXT, _gloffset_SecondaryColor3dvEXT ),
NAME_FUNC_OFFSET( 9650, glSecondaryColor3fEXT, _gloffset_SecondaryColor3fEXT ),
NAME_FUNC_OFFSET( 9672, glSecondaryColor3fvEXT, _gloffset_SecondaryColor3fvEXT ),
NAME_FUNC_OFFSET( 9695, glSecondaryColor3iEXT, _gloffset_SecondaryColor3iEXT ),
NAME_FUNC_OFFSET( 9717, glSecondaryColor3ivEXT, _gloffset_SecondaryColor3ivEXT ),
NAME_FUNC_OFFSET( 9740, glSecondaryColor3sEXT, _gloffset_SecondaryColor3sEXT ),
NAME_FUNC_OFFSET( 9762, glSecondaryColor3svEXT, _gloffset_SecondaryColor3svEXT ),
NAME_FUNC_OFFSET( 9785, glSecondaryColor3ubEXT, _gloffset_SecondaryColor3ubEXT ),
NAME_FUNC_OFFSET( 9808, glSecondaryColor3ubvEXT, _gloffset_SecondaryColor3ubvEXT ),
NAME_FUNC_OFFSET( 9832, glSecondaryColor3uiEXT, _gloffset_SecondaryColor3uiEXT ),
NAME_FUNC_OFFSET( 9855, glSecondaryColor3uivEXT, _gloffset_SecondaryColor3uivEXT ),
NAME_FUNC_OFFSET( 9879, glSecondaryColor3usEXT, _gloffset_SecondaryColor3usEXT ),
NAME_FUNC_OFFSET( 9902, glSecondaryColor3usvEXT, _gloffset_SecondaryColor3usvEXT ),
NAME_FUNC_OFFSET( 9926, glSecondaryColorPointerEXT, _gloffset_SecondaryColorPointerEXT ),
NAME_FUNC_OFFSET( 9953, glMultiDrawArraysEXT, _gloffset_MultiDrawArraysEXT ),
NAME_FUNC_OFFSET( 9974, glMultiDrawElementsEXT, _gloffset_MultiDrawElementsEXT ),
NAME_FUNC_OFFSET( 9997, glFogCoordPointerEXT, _gloffset_FogCoordPointerEXT ),
NAME_FUNC_OFFSET( 10018, glFogCoorddEXT, _gloffset_FogCoorddEXT ),
NAME_FUNC_OFFSET( 10033, glFogCoorddvEXT, _gloffset_FogCoorddvEXT ),
NAME_FUNC_OFFSET( 10049, glFogCoordfEXT, _gloffset_FogCoordfEXT ),
NAME_FUNC_OFFSET( 10064, glFogCoordfvEXT, _gloffset_FogCoordfvEXT ),
NAME_FUNC_OFFSET( 10080, glPixelTexGenSGIX, _gloffset_PixelTexGenSGIX ),
NAME_FUNC_OFFSET( 10098, glBlendFuncSeparateEXT, _gloffset_BlendFuncSeparateEXT ),
NAME_FUNC_OFFSET( 10121, glVertexWeightPointerEXT, _gloffset_VertexWeightPointerEXT ),
NAME_FUNC_OFFSET( 10146, glVertexWeightfEXT, _gloffset_VertexWeightfEXT ),
NAME_FUNC_OFFSET( 10165, glVertexWeightfvEXT, _gloffset_VertexWeightfvEXT ),
NAME_FUNC_OFFSET( 10185, glFlushVertexArrayRangeNV, _gloffset_FlushVertexArrayRangeNV ),
NAME_FUNC_OFFSET( 10211, glVertexArrayRangeNV, _gloffset_VertexArrayRangeNV ),
NAME_FUNC_OFFSET( 10232, glCombinerInputNV, _gloffset_CombinerInputNV ),
NAME_FUNC_OFFSET( 10250, glCombinerOutputNV, _gloffset_CombinerOutputNV ),
NAME_FUNC_OFFSET( 10269, glCombinerParameterfNV, _gloffset_CombinerParameterfNV ),
NAME_FUNC_OFFSET( 10292, glCombinerParameterfvNV, _gloffset_CombinerParameterfvNV ),
NAME_FUNC_OFFSET( 10316, glCombinerParameteriNV, _gloffset_CombinerParameteriNV ),
NAME_FUNC_OFFSET( 10339, glCombinerParameterivNV, _gloffset_CombinerParameterivNV ),
NAME_FUNC_OFFSET( 10363, glFinalCombinerInputNV, _gloffset_FinalCombinerInputNV ),
NAME_FUNC_OFFSET( 10386, glGetCombinerInputParameterfvNV, _gloffset_GetCombinerInputParameterfvNV ),
NAME_FUNC_OFFSET( 10418, glGetCombinerInputParameterivNV, _gloffset_GetCombinerInputParameterivNV ),
NAME_FUNC_OFFSET( 10450, glGetCombinerOutputParameterfvNV, _gloffset_GetCombinerOutputParameterfvNV ),
NAME_FUNC_OFFSET( 10483, glGetCombinerOutputParameterivNV, _gloffset_GetCombinerOutputParameterivNV ),
NAME_FUNC_OFFSET( 10516, glGetFinalCombinerInputParameterfvNV, _gloffset_GetFinalCombinerInputParameterfvNV ),
NAME_FUNC_OFFSET( 10553, glGetFinalCombinerInputParameterivNV, _gloffset_GetFinalCombinerInputParameterivNV ),
NAME_FUNC_OFFSET( 10590, glResizeBuffersMESA, _gloffset_ResizeBuffersMESA ),
NAME_FUNC_OFFSET( 10610, glWindowPos2dMESA, _gloffset_WindowPos2dMESA ),
NAME_FUNC_OFFSET( 10628, glWindowPos2dvMESA, _gloffset_WindowPos2dvMESA ),
NAME_FUNC_OFFSET( 10647, glWindowPos2fMESA, _gloffset_WindowPos2fMESA ),
NAME_FUNC_OFFSET( 10665, glWindowPos2fvMESA, _gloffset_WindowPos2fvMESA ),
NAME_FUNC_OFFSET( 10684, glWindowPos2iMESA, _gloffset_WindowPos2iMESA ),
NAME_FUNC_OFFSET( 10702, glWindowPos2ivMESA, _gloffset_WindowPos2ivMESA ),
NAME_FUNC_OFFSET( 10721, glWindowPos2sMESA, _gloffset_WindowPos2sMESA ),
NAME_FUNC_OFFSET( 10739, glWindowPos2svMESA, _gloffset_WindowPos2svMESA ),
NAME_FUNC_OFFSET( 10758, glWindowPos3dMESA, _gloffset_WindowPos3dMESA ),
NAME_FUNC_OFFSET( 10776, glWindowPos3dvMESA, _gloffset_WindowPos3dvMESA ),
NAME_FUNC_OFFSET( 10795, glWindowPos3fMESA, _gloffset_WindowPos3fMESA ),
NAME_FUNC_OFFSET( 10813, glWindowPos3fvMESA, _gloffset_WindowPos3fvMESA ),
NAME_FUNC_OFFSET( 10832, glWindowPos3iMESA, _gloffset_WindowPos3iMESA ),
NAME_FUNC_OFFSET( 10850, glWindowPos3ivMESA, _gloffset_WindowPos3ivMESA ),
NAME_FUNC_OFFSET( 10869, glWindowPos3sMESA, _gloffset_WindowPos3sMESA ),
NAME_FUNC_OFFSET( 10887, glWindowPos3svMESA, _gloffset_WindowPos3svMESA ),
NAME_FUNC_OFFSET( 10906, glWindowPos4dMESA, _gloffset_WindowPos4dMESA ),
NAME_FUNC_OFFSET( 10924, glWindowPos4dvMESA, _gloffset_WindowPos4dvMESA ),
NAME_FUNC_OFFSET( 10943, glWindowPos4fMESA, _gloffset_WindowPos4fMESA ),
NAME_FUNC_OFFSET( 10961, glWindowPos4fvMESA, _gloffset_WindowPos4fvMESA ),
NAME_FUNC_OFFSET( 10980, glWindowPos4iMESA, _gloffset_WindowPos4iMESA ),
NAME_FUNC_OFFSET( 10998, glWindowPos4ivMESA, _gloffset_WindowPos4ivMESA ),
NAME_FUNC_OFFSET( 11017, glWindowPos4sMESA, _gloffset_WindowPos4sMESA ),
NAME_FUNC_OFFSET( 11035, glWindowPos4svMESA, _gloffset_WindowPos4svMESA ),
NAME_FUNC_OFFSET( 11054, glMultiModeDrawArraysIBM, _gloffset_MultiModeDrawArraysIBM ),
NAME_FUNC_OFFSET( 11079, glMultiModeDrawElementsIBM, _gloffset_MultiModeDrawElementsIBM ),
NAME_FUNC_OFFSET( 11106, glDeleteFencesNV, _gloffset_DeleteFencesNV ),
NAME_FUNC_OFFSET( 11123, glFinishFenceNV, _gloffset_FinishFenceNV ),
NAME_FUNC_OFFSET( 11139, glGenFencesNV, _gloffset_GenFencesNV ),
NAME_FUNC_OFFSET( 11153, glGetFenceivNV, _gloffset_GetFenceivNV ),
NAME_FUNC_OFFSET( 11168, glIsFenceNV, _gloffset_IsFenceNV ),
NAME_FUNC_OFFSET( 11180, glSetFenceNV, _gloffset_SetFenceNV ),
NAME_FUNC_OFFSET( 11193, glTestFenceNV, _gloffset_TestFenceNV ),
NAME_FUNC_OFFSET( 11207, glAreProgramsResidentNV, _gloffset_AreProgramsResidentNV ),
NAME_FUNC_OFFSET( 11231, glBindProgramNV, _gloffset_BindProgramNV ),
NAME_FUNC_OFFSET( 11247, glDeleteProgramsNV, _gloffset_DeleteProgramsNV ),
NAME_FUNC_OFFSET( 11266, glExecuteProgramNV, _gloffset_ExecuteProgramNV ),
NAME_FUNC_OFFSET( 11285, glGenProgramsNV, _gloffset_GenProgramsNV ),
NAME_FUNC_OFFSET( 11301, glGetProgramParameterdvNV, _gloffset_GetProgramParameterdvNV ),
NAME_FUNC_OFFSET( 11327, glGetProgramParameterfvNV, _gloffset_GetProgramParameterfvNV ),
NAME_FUNC_OFFSET( 11353, glGetProgramStringNV, _gloffset_GetProgramStringNV ),
NAME_FUNC_OFFSET( 11374, glGetProgramivNV, _gloffset_GetProgramivNV ),
NAME_FUNC_OFFSET( 11391, glGetTrackMatrixivNV, _gloffset_GetTrackMatrixivNV ),
NAME_FUNC_OFFSET( 11412, glGetVertexAttribPointervNV, _gloffset_GetVertexAttribPointervNV ),
NAME_FUNC_OFFSET( 11440, glGetVertexAttribdvNV, _gloffset_GetVertexAttribdvNV ),
NAME_FUNC_OFFSET( 11462, glGetVertexAttribfvNV, _gloffset_GetVertexAttribfvNV ),
NAME_FUNC_OFFSET( 11484, glGetVertexAttribivNV, _gloffset_GetVertexAttribivNV ),
NAME_FUNC_OFFSET( 11506, glIsProgramNV, _gloffset_IsProgramNV ),
NAME_FUNC_OFFSET( 11520, glLoadProgramNV, _gloffset_LoadProgramNV ),
NAME_FUNC_OFFSET( 11536, glProgramParameter4dNV, _gloffset_ProgramParameter4dNV ),
NAME_FUNC_OFFSET( 11559, glProgramParameter4dvNV, _gloffset_ProgramParameter4dvNV ),
NAME_FUNC_OFFSET( 11583, glProgramParameter4fNV, _gloffset_ProgramParameter4fNV ),
NAME_FUNC_OFFSET( 11606, glProgramParameter4fvNV, _gloffset_ProgramParameter4fvNV ),
NAME_FUNC_OFFSET( 11630, glProgramParameters4dvNV, _gloffset_ProgramParameters4dvNV ),
NAME_FUNC_OFFSET( 11655, glProgramParameters4fvNV, _gloffset_ProgramParameters4fvNV ),
NAME_FUNC_OFFSET( 11680, glRequestResidentProgramsNV, _gloffset_RequestResidentProgramsNV ),
NAME_FUNC_OFFSET( 11708, glTrackMatrixNV, _gloffset_TrackMatrixNV ),
NAME_FUNC_OFFSET( 11724, glVertexAttrib1dNV, _gloffset_VertexAttrib1dNV ),
NAME_FUNC_OFFSET( 11743, glVertexAttrib1dvNV, _gloffset_VertexAttrib1dvNV ),
NAME_FUNC_OFFSET( 11763, glVertexAttrib1fNV, _gloffset_VertexAttrib1fNV ),
NAME_FUNC_OFFSET( 11782, glVertexAttrib1fvNV, _gloffset_VertexAttrib1fvNV ),
NAME_FUNC_OFFSET( 11802, glVertexAttrib1sNV, _gloffset_VertexAttrib1sNV ),
NAME_FUNC_OFFSET( 11821, glVertexAttrib1svNV, _gloffset_VertexAttrib1svNV ),
NAME_FUNC_OFFSET( 11841, glVertexAttrib2dNV, _gloffset_VertexAttrib2dNV ),
NAME_FUNC_OFFSET( 11860, glVertexAttrib2dvNV, _gloffset_VertexAttrib2dvNV ),
NAME_FUNC_OFFSET( 11880, glVertexAttrib2fNV, _gloffset_VertexAttrib2fNV ),
NAME_FUNC_OFFSET( 11899, glVertexAttrib2fvNV, _gloffset_VertexAttrib2fvNV ),
NAME_FUNC_OFFSET( 11919, glVertexAttrib2sNV, _gloffset_VertexAttrib2sNV ),
NAME_FUNC_OFFSET( 11938, glVertexAttrib2svNV, _gloffset_VertexAttrib2svNV ),
NAME_FUNC_OFFSET( 11958, glVertexAttrib3dNV, _gloffset_VertexAttrib3dNV ),
NAME_FUNC_OFFSET( 11977, glVertexAttrib3dvNV, _gloffset_VertexAttrib3dvNV ),
NAME_FUNC_OFFSET( 11997, glVertexAttrib3fNV, _gloffset_VertexAttrib3fNV ),
NAME_FUNC_OFFSET( 12016, glVertexAttrib3fvNV, _gloffset_VertexAttrib3fvNV ),
NAME_FUNC_OFFSET( 12036, glVertexAttrib3sNV, _gloffset_VertexAttrib3sNV ),
NAME_FUNC_OFFSET( 12055, glVertexAttrib3svNV, _gloffset_VertexAttrib3svNV ),
NAME_FUNC_OFFSET( 12075, glVertexAttrib4dNV, _gloffset_VertexAttrib4dNV ),
NAME_FUNC_OFFSET( 12094, glVertexAttrib4dvNV, _gloffset_VertexAttrib4dvNV ),
NAME_FUNC_OFFSET( 12114, glVertexAttrib4fNV, _gloffset_VertexAttrib4fNV ),
NAME_FUNC_OFFSET( 12133, glVertexAttrib4fvNV, _gloffset_VertexAttrib4fvNV ),
NAME_FUNC_OFFSET( 12153, glVertexAttrib4sNV, _gloffset_VertexAttrib4sNV ),
NAME_FUNC_OFFSET( 12172, glVertexAttrib4svNV, _gloffset_VertexAttrib4svNV ),
NAME_FUNC_OFFSET( 12192, glVertexAttrib4ubNV, _gloffset_VertexAttrib4ubNV ),
NAME_FUNC_OFFSET( 12212, glVertexAttrib4ubvNV, _gloffset_VertexAttrib4ubvNV ),
NAME_FUNC_OFFSET( 12233, glVertexAttribPointerNV, _gloffset_VertexAttribPointerNV ),
NAME_FUNC_OFFSET( 12257, glVertexAttribs1dvNV, _gloffset_VertexAttribs1dvNV ),
NAME_FUNC_OFFSET( 12278, glVertexAttribs1fvNV, _gloffset_VertexAttribs1fvNV ),
NAME_FUNC_OFFSET( 12299, glVertexAttribs1svNV, _gloffset_VertexAttribs1svNV ),
NAME_FUNC_OFFSET( 12320, glVertexAttribs2dvNV, _gloffset_VertexAttribs2dvNV ),
NAME_FUNC_OFFSET( 12341, glVertexAttribs2fvNV, _gloffset_VertexAttribs2fvNV ),
NAME_FUNC_OFFSET( 12362, glVertexAttribs2svNV, _gloffset_VertexAttribs2svNV ),
NAME_FUNC_OFFSET( 12383, glVertexAttribs3dvNV, _gloffset_VertexAttribs3dvNV ),
NAME_FUNC_OFFSET( 12404, glVertexAttribs3fvNV, _gloffset_VertexAttribs3fvNV ),
NAME_FUNC_OFFSET( 12425, glVertexAttribs3svNV, _gloffset_VertexAttribs3svNV ),
NAME_FUNC_OFFSET( 12446, glVertexAttribs4dvNV, _gloffset_VertexAttribs4dvNV ),
NAME_FUNC_OFFSET( 12467, glVertexAttribs4fvNV, _gloffset_VertexAttribs4fvNV ),
NAME_FUNC_OFFSET( 12488, glVertexAttribs4svNV, _gloffset_VertexAttribs4svNV ),
NAME_FUNC_OFFSET( 12509, glVertexAttribs4ubvNV, _gloffset_VertexAttribs4ubvNV ),
NAME_FUNC_OFFSET( 12531, glAlphaFragmentOp1ATI, _gloffset_AlphaFragmentOp1ATI ),
NAME_FUNC_OFFSET( 12553, glAlphaFragmentOp2ATI, _gloffset_AlphaFragmentOp2ATI ),
NAME_FUNC_OFFSET( 12575, glAlphaFragmentOp3ATI, _gloffset_AlphaFragmentOp3ATI ),
NAME_FUNC_OFFSET( 12597, glBeginFragmentShaderATI, _gloffset_BeginFragmentShaderATI ),
NAME_FUNC_OFFSET( 12622, glBindFragmentShaderATI, _gloffset_BindFragmentShaderATI ),
NAME_FUNC_OFFSET( 12646, glColorFragmentOp1ATI, _gloffset_ColorFragmentOp1ATI ),
NAME_FUNC_OFFSET( 12668, glColorFragmentOp2ATI, _gloffset_ColorFragmentOp2ATI ),
NAME_FUNC_OFFSET( 12690, glColorFragmentOp3ATI, _gloffset_ColorFragmentOp3ATI ),
NAME_FUNC_OFFSET( 12712, glDeleteFragmentShaderATI, _gloffset_DeleteFragmentShaderATI ),
NAME_FUNC_OFFSET( 12738, glEndFragmentShaderATI, _gloffset_EndFragmentShaderATI ),
NAME_FUNC_OFFSET( 12761, glGenFragmentShadersATI, _gloffset_GenFragmentShadersATI ),
NAME_FUNC_OFFSET( 12785, glPassTexCoordATI, _gloffset_PassTexCoordATI ),
NAME_FUNC_OFFSET( 12803, glSampleMapATI, _gloffset_SampleMapATI ),
NAME_FUNC_OFFSET( 12818, glSetFragmentShaderConstantATI, _gloffset_SetFragmentShaderConstantATI ),
NAME_FUNC_OFFSET( 12849, glPointParameteriNV, _gloffset_PointParameteriNV ),
NAME_FUNC_OFFSET( 12869, glPointParameterivNV, _gloffset_PointParameterivNV ),
NAME_FUNC_OFFSET( 12890, glActiveStencilFaceEXT, _gloffset_ActiveStencilFaceEXT ),
NAME_FUNC_OFFSET( 12913, gl_dispatch_stub_741, _gloffset_BindVertexArrayAPPLE ),
NAME_FUNC_OFFSET( 12936, gl_dispatch_stub_742, _gloffset_DeleteVertexArraysAPPLE ),
NAME_FUNC_OFFSET( 12962, gl_dispatch_stub_743, _gloffset_GenVertexArraysAPPLE ),
NAME_FUNC_OFFSET( 12985, gl_dispatch_stub_744, _gloffset_IsVertexArrayAPPLE ),
NAME_FUNC_OFFSET( 13006, glGetProgramNamedParameterdvNV, _gloffset_GetProgramNamedParameterdvNV ),
NAME_FUNC_OFFSET( 13037, glGetProgramNamedParameterfvNV, _gloffset_GetProgramNamedParameterfvNV ),
NAME_FUNC_OFFSET( 13068, glProgramNamedParameter4dNV, _gloffset_ProgramNamedParameter4dNV ),
NAME_FUNC_OFFSET( 13096, glProgramNamedParameter4dvNV, _gloffset_ProgramNamedParameter4dvNV ),
NAME_FUNC_OFFSET( 13125, glProgramNamedParameter4fNV, _gloffset_ProgramNamedParameter4fNV ),
NAME_FUNC_OFFSET( 13153, glProgramNamedParameter4fvNV, _gloffset_ProgramNamedParameter4fvNV ),
NAME_FUNC_OFFSET( 13182, glDepthBoundsEXT, _gloffset_DepthBoundsEXT ),
NAME_FUNC_OFFSET( 13199, glBlendEquationSeparateEXT, _gloffset_BlendEquationSeparateEXT ),
NAME_FUNC_OFFSET( 13226, glBindFramebufferEXT, _gloffset_BindFramebufferEXT ),
NAME_FUNC_OFFSET( 13247, glBindRenderbufferEXT, _gloffset_BindRenderbufferEXT ),
NAME_FUNC_OFFSET( 13269, glCheckFramebufferStatusEXT, _gloffset_CheckFramebufferStatusEXT ),
NAME_FUNC_OFFSET( 13297, glDeleteFramebuffersEXT, _gloffset_DeleteFramebuffersEXT ),
NAME_FUNC_OFFSET( 13321, glDeleteRenderbuffersEXT, _gloffset_DeleteRenderbuffersEXT ),
NAME_FUNC_OFFSET( 13346, glFramebufferRenderbufferEXT, _gloffset_FramebufferRenderbufferEXT ),
NAME_FUNC_OFFSET( 13375, glFramebufferTexture1DEXT, _gloffset_FramebufferTexture1DEXT ),
NAME_FUNC_OFFSET( 13401, glFramebufferTexture2DEXT, _gloffset_FramebufferTexture2DEXT ),
NAME_FUNC_OFFSET( 13427, glFramebufferTexture3DEXT, _gloffset_FramebufferTexture3DEXT ),
NAME_FUNC_OFFSET( 13453, glGenFramebuffersEXT, _gloffset_GenFramebuffersEXT ),
NAME_FUNC_OFFSET( 13474, glGenRenderbuffersEXT, _gloffset_GenRenderbuffersEXT ),
NAME_FUNC_OFFSET( 13496, glGenerateMipmapEXT, _gloffset_GenerateMipmapEXT ),
NAME_FUNC_OFFSET( 13516, glGetFramebufferAttachmentParameterivEXT, _gloffset_GetFramebufferAttachmentParameterivEXT ),
NAME_FUNC_OFFSET( 13557, glGetQueryObjecti64vEXT, _gloffset_GetQueryObjecti64vEXT ),
NAME_FUNC_OFFSET( 13581, glGetQueryObjectui64vEXT, _gloffset_GetQueryObjectui64vEXT ),
NAME_FUNC_OFFSET( 13606, glGetRenderbufferParameterivEXT, _gloffset_GetRenderbufferParameterivEXT ),
NAME_FUNC_OFFSET( 13638, glIsFramebufferEXT, _gloffset_IsFramebufferEXT ),
NAME_FUNC_OFFSET( 13657, glIsRenderbufferEXT, _gloffset_IsRenderbufferEXT ),
NAME_FUNC_OFFSET( 13677, glRenderbufferStorageEXT, _gloffset_RenderbufferStorageEXT ),
NAME_FUNC_OFFSET( 13702, glBlitFramebufferEXT, _gloffset_BlitFramebufferEXT ),
NAME_FUNC_OFFSET( 13723, gl_dispatch_stub_773, _gloffset_ProgramEnvParameters4fvEXT ),
NAME_FUNC_OFFSET( 13752, gl_dispatch_stub_774, _gloffset_ProgramLocalParameters4fvEXT ),
NAME_FUNC_OFFSET( 13783, glArrayElementEXT, _gloffset_ArrayElement ),
NAME_FUNC_OFFSET( 13801, glBindTextureEXT, _gloffset_BindTexture ),
NAME_FUNC_OFFSET( 13818, glDrawArraysEXT, _gloffset_DrawArrays ),
NAME_FUNC_OFFSET( 13834, glCopyTexImage1DEXT, _gloffset_CopyTexImage1D ),
NAME_FUNC_OFFSET( 13854, glCopyTexImage2DEXT, _gloffset_CopyTexImage2D ),
NAME_FUNC_OFFSET( 13874, glCopyTexSubImage1DEXT, _gloffset_CopyTexSubImage1D ),
NAME_FUNC_OFFSET( 13897, glCopyTexSubImage2DEXT, _gloffset_CopyTexSubImage2D ),
NAME_FUNC_OFFSET( 13920, glDeleteTexturesEXT, _gloffset_DeleteTextures ),
NAME_FUNC_OFFSET( 13940, glGetPointervEXT, _gloffset_GetPointerv ),
NAME_FUNC_OFFSET( 13957, glPrioritizeTexturesEXT, _gloffset_PrioritizeTextures ),
NAME_FUNC_OFFSET( 13981, glTexSubImage1DEXT, _gloffset_TexSubImage1D ),
NAME_FUNC_OFFSET( 14000, glTexSubImage2DEXT, _gloffset_TexSubImage2D ),
NAME_FUNC_OFFSET( 14019, glBlendColorEXT, _gloffset_BlendColor ),
NAME_FUNC_OFFSET( 14035, glBlendEquationEXT, _gloffset_BlendEquation ),
NAME_FUNC_OFFSET( 14054, glDrawRangeElementsEXT, _gloffset_DrawRangeElements ),
NAME_FUNC_OFFSET( 14077, glColorTableSGI, _gloffset_ColorTable ),
NAME_FUNC_OFFSET( 14093, glColorTableEXT, _gloffset_ColorTable ),
NAME_FUNC_OFFSET( 14109, glColorTableParameterfvSGI, _gloffset_ColorTableParameterfv ),
NAME_FUNC_OFFSET( 14136, glColorTableParameterivSGI, _gloffset_ColorTableParameteriv ),
NAME_FUNC_OFFSET( 14163, glCopyColorTableSGI, _gloffset_CopyColorTable ),
NAME_FUNC_OFFSET( 14183, glColorSubTableEXT, _gloffset_ColorSubTable ),
NAME_FUNC_OFFSET( 14202, glCopyColorSubTableEXT, _gloffset_CopyColorSubTable ),
NAME_FUNC_OFFSET( 14225, glConvolutionFilter1DEXT, _gloffset_ConvolutionFilter1D ),
NAME_FUNC_OFFSET( 14250, glConvolutionFilter2DEXT, _gloffset_ConvolutionFilter2D ),
NAME_FUNC_OFFSET( 14275, glConvolutionParameterfEXT, _gloffset_ConvolutionParameterf ),
NAME_FUNC_OFFSET( 14302, glConvolutionParameterfvEXT, _gloffset_ConvolutionParameterfv ),
NAME_FUNC_OFFSET( 14330, glConvolutionParameteriEXT, _gloffset_ConvolutionParameteri ),
NAME_FUNC_OFFSET( 14357, glConvolutionParameterivEXT, _gloffset_ConvolutionParameteriv ),
NAME_FUNC_OFFSET( 14385, glCopyConvolutionFilter1DEXT, _gloffset_CopyConvolutionFilter1D ),
NAME_FUNC_OFFSET( 14414, glCopyConvolutionFilter2DEXT, _gloffset_CopyConvolutionFilter2D ),
NAME_FUNC_OFFSET( 14443, glSeparableFilter2DEXT, _gloffset_SeparableFilter2D ),
NAME_FUNC_OFFSET( 14466, glHistogramEXT, _gloffset_Histogram ),
NAME_FUNC_OFFSET( 14481, glMinmaxEXT, _gloffset_Minmax ),
NAME_FUNC_OFFSET( 14493, glResetHistogramEXT, _gloffset_ResetHistogram ),
NAME_FUNC_OFFSET( 14513, glResetMinmaxEXT, _gloffset_ResetMinmax ),
NAME_FUNC_OFFSET( 14530, glTexImage3DEXT, _gloffset_TexImage3D ),
NAME_FUNC_OFFSET( 14546, glTexSubImage3DEXT, _gloffset_TexSubImage3D ),
NAME_FUNC_OFFSET( 14565, glCopyTexSubImage3DEXT, _gloffset_CopyTexSubImage3D ),
NAME_FUNC_OFFSET( 14588, glActiveTexture, _gloffset_ActiveTextureARB ),
NAME_FUNC_OFFSET( 14604, glClientActiveTexture, _gloffset_ClientActiveTextureARB ),
NAME_FUNC_OFFSET( 14626, glMultiTexCoord1d, _gloffset_MultiTexCoord1dARB ),
NAME_FUNC_OFFSET( 14644, glMultiTexCoord1dv, _gloffset_MultiTexCoord1dvARB ),
NAME_FUNC_OFFSET( 14663, glMultiTexCoord1f, _gloffset_MultiTexCoord1fARB ),
NAME_FUNC_OFFSET( 14681, glMultiTexCoord1fv, _gloffset_MultiTexCoord1fvARB ),
NAME_FUNC_OFFSET( 14700, glMultiTexCoord1i, _gloffset_MultiTexCoord1iARB ),
NAME_FUNC_OFFSET( 14718, glMultiTexCoord1iv, _gloffset_MultiTexCoord1ivARB ),
NAME_FUNC_OFFSET( 14737, glMultiTexCoord1s, _gloffset_MultiTexCoord1sARB ),
NAME_FUNC_OFFSET( 14755, glMultiTexCoord1sv, _gloffset_MultiTexCoord1svARB ),
NAME_FUNC_OFFSET( 14774, glMultiTexCoord2d, _gloffset_MultiTexCoord2dARB ),
NAME_FUNC_OFFSET( 14792, glMultiTexCoord2dv, _gloffset_MultiTexCoord2dvARB ),
NAME_FUNC_OFFSET( 14811, glMultiTexCoord2f, _gloffset_MultiTexCoord2fARB ),
NAME_FUNC_OFFSET( 14829, glMultiTexCoord2fv, _gloffset_MultiTexCoord2fvARB ),
NAME_FUNC_OFFSET( 14848, glMultiTexCoord2i, _gloffset_MultiTexCoord2iARB ),
NAME_FUNC_OFFSET( 14866, glMultiTexCoord2iv, _gloffset_MultiTexCoord2ivARB ),
NAME_FUNC_OFFSET( 14885, glMultiTexCoord2s, _gloffset_MultiTexCoord2sARB ),
NAME_FUNC_OFFSET( 14903, glMultiTexCoord2sv, _gloffset_MultiTexCoord2svARB ),
NAME_FUNC_OFFSET( 14922, glMultiTexCoord3d, _gloffset_MultiTexCoord3dARB ),
NAME_FUNC_OFFSET( 14940, glMultiTexCoord3dv, _gloffset_MultiTexCoord3dvARB ),
NAME_FUNC_OFFSET( 14959, glMultiTexCoord3f, _gloffset_MultiTexCoord3fARB ),
NAME_FUNC_OFFSET( 14977, glMultiTexCoord3fv, _gloffset_MultiTexCoord3fvARB ),
NAME_FUNC_OFFSET( 14996, glMultiTexCoord3i, _gloffset_MultiTexCoord3iARB ),
NAME_FUNC_OFFSET( 15014, glMultiTexCoord3iv, _gloffset_MultiTexCoord3ivARB ),
NAME_FUNC_OFFSET( 15033, glMultiTexCoord3s, _gloffset_MultiTexCoord3sARB ),
NAME_FUNC_OFFSET( 15051, glMultiTexCoord3sv, _gloffset_MultiTexCoord3svARB ),
NAME_FUNC_OFFSET( 15070, glMultiTexCoord4d, _gloffset_MultiTexCoord4dARB ),
NAME_FUNC_OFFSET( 15088, glMultiTexCoord4dv, _gloffset_MultiTexCoord4dvARB ),
NAME_FUNC_OFFSET( 15107, glMultiTexCoord4f, _gloffset_MultiTexCoord4fARB ),
NAME_FUNC_OFFSET( 15125, glMultiTexCoord4fv, _gloffset_MultiTexCoord4fvARB ),
NAME_FUNC_OFFSET( 15144, glMultiTexCoord4i, _gloffset_MultiTexCoord4iARB ),
NAME_FUNC_OFFSET( 15162, glMultiTexCoord4iv, _gloffset_MultiTexCoord4ivARB ),
NAME_FUNC_OFFSET( 15181, glMultiTexCoord4s, _gloffset_MultiTexCoord4sARB ),
NAME_FUNC_OFFSET( 15199, glMultiTexCoord4sv, _gloffset_MultiTexCoord4svARB ),
NAME_FUNC_OFFSET( 15218, glLoadTransposeMatrixd, _gloffset_LoadTransposeMatrixdARB ),
NAME_FUNC_OFFSET( 15241, glLoadTransposeMatrixf, _gloffset_LoadTransposeMatrixfARB ),
NAME_FUNC_OFFSET( 15264, glMultTransposeMatrixd, _gloffset_MultTransposeMatrixdARB ),
NAME_FUNC_OFFSET( 15287, glMultTransposeMatrixf, _gloffset_MultTransposeMatrixfARB ),
NAME_FUNC_OFFSET( 15310, glSampleCoverage, _gloffset_SampleCoverageARB ),
NAME_FUNC_OFFSET( 15327, glCompressedTexImage1D, _gloffset_CompressedTexImage1DARB ),
NAME_FUNC_OFFSET( 15350, glCompressedTexImage2D, _gloffset_CompressedTexImage2DARB ),
NAME_FUNC_OFFSET( 15373, glCompressedTexImage3D, _gloffset_CompressedTexImage3DARB ),
NAME_FUNC_OFFSET( 15396, glCompressedTexSubImage1D, _gloffset_CompressedTexSubImage1DARB ),
NAME_FUNC_OFFSET( 15422, glCompressedTexSubImage2D, _gloffset_CompressedTexSubImage2DARB ),
NAME_FUNC_OFFSET( 15448, glCompressedTexSubImage3D, _gloffset_CompressedTexSubImage3DARB ),
NAME_FUNC_OFFSET( 15474, glGetCompressedTexImage, _gloffset_GetCompressedTexImageARB ),
NAME_FUNC_OFFSET( 15498, glBindBuffer, _gloffset_BindBufferARB ),
NAME_FUNC_OFFSET( 15511, glBufferData, _gloffset_BufferDataARB ),
NAME_FUNC_OFFSET( 15524, glBufferSubData, _gloffset_BufferSubDataARB ),
NAME_FUNC_OFFSET( 15540, glDeleteBuffers, _gloffset_DeleteBuffersARB ),
NAME_FUNC_OFFSET( 15556, glGenBuffers, _gloffset_GenBuffersARB ),
NAME_FUNC_OFFSET( 15569, glGetBufferParameteriv, _gloffset_GetBufferParameterivARB ),
NAME_FUNC_OFFSET( 15592, glGetBufferPointerv, _gloffset_GetBufferPointervARB ),
NAME_FUNC_OFFSET( 15612, glGetBufferSubData, _gloffset_GetBufferSubDataARB ),
NAME_FUNC_OFFSET( 15631, glIsBuffer, _gloffset_IsBufferARB ),
NAME_FUNC_OFFSET( 15642, glMapBuffer, _gloffset_MapBufferARB ),
NAME_FUNC_OFFSET( 15654, glUnmapBuffer, _gloffset_UnmapBufferARB ),
NAME_FUNC_OFFSET( 15668, glBeginQuery, _gloffset_BeginQueryARB ),
NAME_FUNC_OFFSET( 15681, glDeleteQueries, _gloffset_DeleteQueriesARB ),
NAME_FUNC_OFFSET( 15697, glEndQuery, _gloffset_EndQueryARB ),
NAME_FUNC_OFFSET( 15708, glGenQueries, _gloffset_GenQueriesARB ),
NAME_FUNC_OFFSET( 15721, glGetQueryObjectiv, _gloffset_GetQueryObjectivARB ),
NAME_FUNC_OFFSET( 15740, glGetQueryObjectuiv, _gloffset_GetQueryObjectuivARB ),
NAME_FUNC_OFFSET( 15760, glGetQueryiv, _gloffset_GetQueryivARB ),
NAME_FUNC_OFFSET( 15773, glIsQuery, _gloffset_IsQueryARB ),
NAME_FUNC_OFFSET( 15783, glDrawBuffersATI, _gloffset_DrawBuffersARB ),
NAME_FUNC_OFFSET( 9405, glLockArraysEXT, _gloffset_LockArraysEXT ),
NAME_FUNC_OFFSET( 9421, glUnlockArraysEXT, _gloffset_UnlockArraysEXT ),
NAME_FUNC_OFFSET( 9439, glCullParameterdvEXT, _gloffset_CullParameterdvEXT ),
NAME_FUNC_OFFSET( 9460, glCullParameterfvEXT, _gloffset_CullParameterfvEXT ),
NAME_FUNC_OFFSET( 9481, glSecondaryColor3bEXT, _gloffset_SecondaryColor3bEXT ),
NAME_FUNC_OFFSET( 9503, glSecondaryColor3bvEXT, _gloffset_SecondaryColor3bvEXT ),
NAME_FUNC_OFFSET( 9526, glSecondaryColor3dEXT, _gloffset_SecondaryColor3dEXT ),
NAME_FUNC_OFFSET( 9548, glSecondaryColor3dvEXT, _gloffset_SecondaryColor3dvEXT ),
NAME_FUNC_OFFSET( 9571, glSecondaryColor3fEXT, _gloffset_SecondaryColor3fEXT ),
NAME_FUNC_OFFSET( 9593, glSecondaryColor3fvEXT, _gloffset_SecondaryColor3fvEXT ),
NAME_FUNC_OFFSET( 9616, glSecondaryColor3iEXT, _gloffset_SecondaryColor3iEXT ),
NAME_FUNC_OFFSET( 9638, glSecondaryColor3ivEXT, _gloffset_SecondaryColor3ivEXT ),
NAME_FUNC_OFFSET( 9661, glSecondaryColor3sEXT, _gloffset_SecondaryColor3sEXT ),
NAME_FUNC_OFFSET( 9683, glSecondaryColor3svEXT, _gloffset_SecondaryColor3svEXT ),
NAME_FUNC_OFFSET( 9706, glSecondaryColor3ubEXT, _gloffset_SecondaryColor3ubEXT ),
NAME_FUNC_OFFSET( 9729, glSecondaryColor3ubvEXT, _gloffset_SecondaryColor3ubvEXT ),
NAME_FUNC_OFFSET( 9753, glSecondaryColor3uiEXT, _gloffset_SecondaryColor3uiEXT ),
NAME_FUNC_OFFSET( 9776, glSecondaryColor3uivEXT, _gloffset_SecondaryColor3uivEXT ),
NAME_FUNC_OFFSET( 9800, glSecondaryColor3usEXT, _gloffset_SecondaryColor3usEXT ),
NAME_FUNC_OFFSET( 9823, glSecondaryColor3usvEXT, _gloffset_SecondaryColor3usvEXT ),
NAME_FUNC_OFFSET( 9847, glSecondaryColorPointerEXT, _gloffset_SecondaryColorPointerEXT ),
NAME_FUNC_OFFSET( 9874, glMultiDrawArraysEXT, _gloffset_MultiDrawArraysEXT ),
NAME_FUNC_OFFSET( 9895, glMultiDrawElementsEXT, _gloffset_MultiDrawElementsEXT ),
NAME_FUNC_OFFSET( 9918, glFogCoordPointerEXT, _gloffset_FogCoordPointerEXT ),
NAME_FUNC_OFFSET( 9939, glFogCoorddEXT, _gloffset_FogCoorddEXT ),
NAME_FUNC_OFFSET( 9954, glFogCoorddvEXT, _gloffset_FogCoorddvEXT ),
NAME_FUNC_OFFSET( 9970, glFogCoordfEXT, _gloffset_FogCoordfEXT ),
NAME_FUNC_OFFSET( 9985, glFogCoordfvEXT, _gloffset_FogCoordfvEXT ),
NAME_FUNC_OFFSET( 10001, glPixelTexGenSGIX, _gloffset_PixelTexGenSGIX ),
NAME_FUNC_OFFSET( 10019, glBlendFuncSeparateEXT, _gloffset_BlendFuncSeparateEXT ),
NAME_FUNC_OFFSET( 10042, glVertexWeightPointerEXT, _gloffset_VertexWeightPointerEXT ),
NAME_FUNC_OFFSET( 10067, glVertexWeightfEXT, _gloffset_VertexWeightfEXT ),
NAME_FUNC_OFFSET( 10086, glVertexWeightfvEXT, _gloffset_VertexWeightfvEXT ),
NAME_FUNC_OFFSET( 10106, glFlushVertexArrayRangeNV, _gloffset_FlushVertexArrayRangeNV ),
NAME_FUNC_OFFSET( 10132, glVertexArrayRangeNV, _gloffset_VertexArrayRangeNV ),
NAME_FUNC_OFFSET( 10153, glCombinerInputNV, _gloffset_CombinerInputNV ),
NAME_FUNC_OFFSET( 10171, glCombinerOutputNV, _gloffset_CombinerOutputNV ),
NAME_FUNC_OFFSET( 10190, glCombinerParameterfNV, _gloffset_CombinerParameterfNV ),
NAME_FUNC_OFFSET( 10213, glCombinerParameterfvNV, _gloffset_CombinerParameterfvNV ),
NAME_FUNC_OFFSET( 10237, glCombinerParameteriNV, _gloffset_CombinerParameteriNV ),
NAME_FUNC_OFFSET( 10260, glCombinerParameterivNV, _gloffset_CombinerParameterivNV ),
NAME_FUNC_OFFSET( 10284, glFinalCombinerInputNV, _gloffset_FinalCombinerInputNV ),
NAME_FUNC_OFFSET( 10307, glGetCombinerInputParameterfvNV, _gloffset_GetCombinerInputParameterfvNV ),
NAME_FUNC_OFFSET( 10339, glGetCombinerInputParameterivNV, _gloffset_GetCombinerInputParameterivNV ),
NAME_FUNC_OFFSET( 10371, glGetCombinerOutputParameterfvNV, _gloffset_GetCombinerOutputParameterfvNV ),
NAME_FUNC_OFFSET( 10404, glGetCombinerOutputParameterivNV, _gloffset_GetCombinerOutputParameterivNV ),
NAME_FUNC_OFFSET( 10437, glGetFinalCombinerInputParameterfvNV, _gloffset_GetFinalCombinerInputParameterfvNV ),
NAME_FUNC_OFFSET( 10474, glGetFinalCombinerInputParameterivNV, _gloffset_GetFinalCombinerInputParameterivNV ),
NAME_FUNC_OFFSET( 10511, glResizeBuffersMESA, _gloffset_ResizeBuffersMESA ),
NAME_FUNC_OFFSET( 10531, glWindowPos2dMESA, _gloffset_WindowPos2dMESA ),
NAME_FUNC_OFFSET( 10549, glWindowPos2dvMESA, _gloffset_WindowPos2dvMESA ),
NAME_FUNC_OFFSET( 10568, glWindowPos2fMESA, _gloffset_WindowPos2fMESA ),
NAME_FUNC_OFFSET( 10586, glWindowPos2fvMESA, _gloffset_WindowPos2fvMESA ),
NAME_FUNC_OFFSET( 10605, glWindowPos2iMESA, _gloffset_WindowPos2iMESA ),
NAME_FUNC_OFFSET( 10623, glWindowPos2ivMESA, _gloffset_WindowPos2ivMESA ),
NAME_FUNC_OFFSET( 10642, glWindowPos2sMESA, _gloffset_WindowPos2sMESA ),
NAME_FUNC_OFFSET( 10660, glWindowPos2svMESA, _gloffset_WindowPos2svMESA ),
NAME_FUNC_OFFSET( 10679, glWindowPos3dMESA, _gloffset_WindowPos3dMESA ),
NAME_FUNC_OFFSET( 10697, glWindowPos3dvMESA, _gloffset_WindowPos3dvMESA ),
NAME_FUNC_OFFSET( 10716, glWindowPos3fMESA, _gloffset_WindowPos3fMESA ),
NAME_FUNC_OFFSET( 10734, glWindowPos3fvMESA, _gloffset_WindowPos3fvMESA ),
NAME_FUNC_OFFSET( 10753, glWindowPos3iMESA, _gloffset_WindowPos3iMESA ),
NAME_FUNC_OFFSET( 10771, glWindowPos3ivMESA, _gloffset_WindowPos3ivMESA ),
NAME_FUNC_OFFSET( 10790, glWindowPos3sMESA, _gloffset_WindowPos3sMESA ),
NAME_FUNC_OFFSET( 10808, glWindowPos3svMESA, _gloffset_WindowPos3svMESA ),
NAME_FUNC_OFFSET( 10827, glWindowPos4dMESA, _gloffset_WindowPos4dMESA ),
NAME_FUNC_OFFSET( 10845, glWindowPos4dvMESA, _gloffset_WindowPos4dvMESA ),
NAME_FUNC_OFFSET( 10864, glWindowPos4fMESA, _gloffset_WindowPos4fMESA ),
NAME_FUNC_OFFSET( 10882, glWindowPos4fvMESA, _gloffset_WindowPos4fvMESA ),
NAME_FUNC_OFFSET( 10901, glWindowPos4iMESA, _gloffset_WindowPos4iMESA ),
NAME_FUNC_OFFSET( 10919, glWindowPos4ivMESA, _gloffset_WindowPos4ivMESA ),
NAME_FUNC_OFFSET( 10938, glWindowPos4sMESA, _gloffset_WindowPos4sMESA ),
NAME_FUNC_OFFSET( 10956, glWindowPos4svMESA, _gloffset_WindowPos4svMESA ),
NAME_FUNC_OFFSET( 10975, glMultiModeDrawArraysIBM, _gloffset_MultiModeDrawArraysIBM ),
NAME_FUNC_OFFSET( 11000, glMultiModeDrawElementsIBM, _gloffset_MultiModeDrawElementsIBM ),
NAME_FUNC_OFFSET( 11027, glDeleteFencesNV, _gloffset_DeleteFencesNV ),
NAME_FUNC_OFFSET( 11044, glFinishFenceNV, _gloffset_FinishFenceNV ),
NAME_FUNC_OFFSET( 11060, glGenFencesNV, _gloffset_GenFencesNV ),
NAME_FUNC_OFFSET( 11074, glGetFenceivNV, _gloffset_GetFenceivNV ),
NAME_FUNC_OFFSET( 11089, glIsFenceNV, _gloffset_IsFenceNV ),
NAME_FUNC_OFFSET( 11101, glSetFenceNV, _gloffset_SetFenceNV ),
NAME_FUNC_OFFSET( 11114, glTestFenceNV, _gloffset_TestFenceNV ),
NAME_FUNC_OFFSET( 11128, glAreProgramsResidentNV, _gloffset_AreProgramsResidentNV ),
NAME_FUNC_OFFSET( 11152, glBindProgramNV, _gloffset_BindProgramNV ),
NAME_FUNC_OFFSET( 11168, glDeleteProgramsNV, _gloffset_DeleteProgramsNV ),
NAME_FUNC_OFFSET( 11187, glExecuteProgramNV, _gloffset_ExecuteProgramNV ),
NAME_FUNC_OFFSET( 11206, glGenProgramsNV, _gloffset_GenProgramsNV ),
NAME_FUNC_OFFSET( 11222, glGetProgramParameterdvNV, _gloffset_GetProgramParameterdvNV ),
NAME_FUNC_OFFSET( 11248, glGetProgramParameterfvNV, _gloffset_GetProgramParameterfvNV ),
NAME_FUNC_OFFSET( 11274, glGetProgramStringNV, _gloffset_GetProgramStringNV ),
NAME_FUNC_OFFSET( 11295, glGetProgramivNV, _gloffset_GetProgramivNV ),
NAME_FUNC_OFFSET( 11312, glGetTrackMatrixivNV, _gloffset_GetTrackMatrixivNV ),
NAME_FUNC_OFFSET( 11333, glGetVertexAttribPointervNV, _gloffset_GetVertexAttribPointervNV ),
NAME_FUNC_OFFSET( 11361, glGetVertexAttribdvNV, _gloffset_GetVertexAttribdvNV ),
NAME_FUNC_OFFSET( 11383, glGetVertexAttribfvNV, _gloffset_GetVertexAttribfvNV ),
NAME_FUNC_OFFSET( 11405, glGetVertexAttribivNV, _gloffset_GetVertexAttribivNV ),
NAME_FUNC_OFFSET( 11427, glIsProgramNV, _gloffset_IsProgramNV ),
NAME_FUNC_OFFSET( 11441, glLoadProgramNV, _gloffset_LoadProgramNV ),
NAME_FUNC_OFFSET( 11457, glProgramParameter4dNV, _gloffset_ProgramParameter4dNV ),
NAME_FUNC_OFFSET( 11480, glProgramParameter4dvNV, _gloffset_ProgramParameter4dvNV ),
NAME_FUNC_OFFSET( 11504, glProgramParameter4fNV, _gloffset_ProgramParameter4fNV ),
NAME_FUNC_OFFSET( 11527, glProgramParameter4fvNV, _gloffset_ProgramParameter4fvNV ),
NAME_FUNC_OFFSET( 11551, glProgramParameters4dvNV, _gloffset_ProgramParameters4dvNV ),
NAME_FUNC_OFFSET( 11576, glProgramParameters4fvNV, _gloffset_ProgramParameters4fvNV ),
NAME_FUNC_OFFSET( 11601, glRequestResidentProgramsNV, _gloffset_RequestResidentProgramsNV ),
NAME_FUNC_OFFSET( 11629, glTrackMatrixNV, _gloffset_TrackMatrixNV ),
NAME_FUNC_OFFSET( 11645, glVertexAttrib1dNV, _gloffset_VertexAttrib1dNV ),
NAME_FUNC_OFFSET( 11664, glVertexAttrib1dvNV, _gloffset_VertexAttrib1dvNV ),
NAME_FUNC_OFFSET( 11684, glVertexAttrib1fNV, _gloffset_VertexAttrib1fNV ),
NAME_FUNC_OFFSET( 11703, glVertexAttrib1fvNV, _gloffset_VertexAttrib1fvNV ),
NAME_FUNC_OFFSET( 11723, glVertexAttrib1sNV, _gloffset_VertexAttrib1sNV ),
NAME_FUNC_OFFSET( 11742, glVertexAttrib1svNV, _gloffset_VertexAttrib1svNV ),
NAME_FUNC_OFFSET( 11762, glVertexAttrib2dNV, _gloffset_VertexAttrib2dNV ),
NAME_FUNC_OFFSET( 11781, glVertexAttrib2dvNV, _gloffset_VertexAttrib2dvNV ),
NAME_FUNC_OFFSET( 11801, glVertexAttrib2fNV, _gloffset_VertexAttrib2fNV ),
NAME_FUNC_OFFSET( 11820, glVertexAttrib2fvNV, _gloffset_VertexAttrib2fvNV ),
NAME_FUNC_OFFSET( 11840, glVertexAttrib2sNV, _gloffset_VertexAttrib2sNV ),
NAME_FUNC_OFFSET( 11859, glVertexAttrib2svNV, _gloffset_VertexAttrib2svNV ),
NAME_FUNC_OFFSET( 11879, glVertexAttrib3dNV, _gloffset_VertexAttrib3dNV ),
NAME_FUNC_OFFSET( 11898, glVertexAttrib3dvNV, _gloffset_VertexAttrib3dvNV ),
NAME_FUNC_OFFSET( 11918, glVertexAttrib3fNV, _gloffset_VertexAttrib3fNV ),
NAME_FUNC_OFFSET( 11937, glVertexAttrib3fvNV, _gloffset_VertexAttrib3fvNV ),
NAME_FUNC_OFFSET( 11957, glVertexAttrib3sNV, _gloffset_VertexAttrib3sNV ),
NAME_FUNC_OFFSET( 11976, glVertexAttrib3svNV, _gloffset_VertexAttrib3svNV ),
NAME_FUNC_OFFSET( 11996, glVertexAttrib4dNV, _gloffset_VertexAttrib4dNV ),
NAME_FUNC_OFFSET( 12015, glVertexAttrib4dvNV, _gloffset_VertexAttrib4dvNV ),
NAME_FUNC_OFFSET( 12035, glVertexAttrib4fNV, _gloffset_VertexAttrib4fNV ),
NAME_FUNC_OFFSET( 12054, glVertexAttrib4fvNV, _gloffset_VertexAttrib4fvNV ),
NAME_FUNC_OFFSET( 12074, glVertexAttrib4sNV, _gloffset_VertexAttrib4sNV ),
NAME_FUNC_OFFSET( 12093, glVertexAttrib4svNV, _gloffset_VertexAttrib4svNV ),
NAME_FUNC_OFFSET( 12113, glVertexAttrib4ubNV, _gloffset_VertexAttrib4ubNV ),
NAME_FUNC_OFFSET( 12133, glVertexAttrib4ubvNV, _gloffset_VertexAttrib4ubvNV ),
NAME_FUNC_OFFSET( 12154, glVertexAttribPointerNV, _gloffset_VertexAttribPointerNV ),
NAME_FUNC_OFFSET( 12178, glVertexAttribs1dvNV, _gloffset_VertexAttribs1dvNV ),
NAME_FUNC_OFFSET( 12199, glVertexAttribs1fvNV, _gloffset_VertexAttribs1fvNV ),
NAME_FUNC_OFFSET( 12220, glVertexAttribs1svNV, _gloffset_VertexAttribs1svNV ),
NAME_FUNC_OFFSET( 12241, glVertexAttribs2dvNV, _gloffset_VertexAttribs2dvNV ),
NAME_FUNC_OFFSET( 12262, glVertexAttribs2fvNV, _gloffset_VertexAttribs2fvNV ),
NAME_FUNC_OFFSET( 12283, glVertexAttribs2svNV, _gloffset_VertexAttribs2svNV ),
NAME_FUNC_OFFSET( 12304, glVertexAttribs3dvNV, _gloffset_VertexAttribs3dvNV ),
NAME_FUNC_OFFSET( 12325, glVertexAttribs3fvNV, _gloffset_VertexAttribs3fvNV ),
NAME_FUNC_OFFSET( 12346, glVertexAttribs3svNV, _gloffset_VertexAttribs3svNV ),
NAME_FUNC_OFFSET( 12367, glVertexAttribs4dvNV, _gloffset_VertexAttribs4dvNV ),
NAME_FUNC_OFFSET( 12388, glVertexAttribs4fvNV, _gloffset_VertexAttribs4fvNV ),
NAME_FUNC_OFFSET( 12409, glVertexAttribs4svNV, _gloffset_VertexAttribs4svNV ),
NAME_FUNC_OFFSET( 12430, glVertexAttribs4ubvNV, _gloffset_VertexAttribs4ubvNV ),
NAME_FUNC_OFFSET( 12452, glAlphaFragmentOp1ATI, _gloffset_AlphaFragmentOp1ATI ),
NAME_FUNC_OFFSET( 12474, glAlphaFragmentOp2ATI, _gloffset_AlphaFragmentOp2ATI ),
NAME_FUNC_OFFSET( 12496, glAlphaFragmentOp3ATI, _gloffset_AlphaFragmentOp3ATI ),
NAME_FUNC_OFFSET( 12518, glBeginFragmentShaderATI, _gloffset_BeginFragmentShaderATI ),
NAME_FUNC_OFFSET( 12543, glBindFragmentShaderATI, _gloffset_BindFragmentShaderATI ),
NAME_FUNC_OFFSET( 12567, glColorFragmentOp1ATI, _gloffset_ColorFragmentOp1ATI ),
NAME_FUNC_OFFSET( 12589, glColorFragmentOp2ATI, _gloffset_ColorFragmentOp2ATI ),
NAME_FUNC_OFFSET( 12611, glColorFragmentOp3ATI, _gloffset_ColorFragmentOp3ATI ),
NAME_FUNC_OFFSET( 12633, glDeleteFragmentShaderATI, _gloffset_DeleteFragmentShaderATI ),
NAME_FUNC_OFFSET( 12659, glEndFragmentShaderATI, _gloffset_EndFragmentShaderATI ),
NAME_FUNC_OFFSET( 12682, glGenFragmentShadersATI, _gloffset_GenFragmentShadersATI ),
NAME_FUNC_OFFSET( 12706, glPassTexCoordATI, _gloffset_PassTexCoordATI ),
NAME_FUNC_OFFSET( 12724, glSampleMapATI, _gloffset_SampleMapATI ),
NAME_FUNC_OFFSET( 12739, glSetFragmentShaderConstantATI, _gloffset_SetFragmentShaderConstantATI ),
NAME_FUNC_OFFSET( 12770, glPointParameteriNV, _gloffset_PointParameteriNV ),
NAME_FUNC_OFFSET( 12790, glPointParameterivNV, _gloffset_PointParameterivNV ),
NAME_FUNC_OFFSET( 12811, glActiveStencilFaceEXT, _gloffset_ActiveStencilFaceEXT ),
NAME_FUNC_OFFSET( 12834, gl_dispatch_stub_738, _gloffset_BindVertexArrayAPPLE ),
NAME_FUNC_OFFSET( 12857, gl_dispatch_stub_739, _gloffset_DeleteVertexArraysAPPLE ),
NAME_FUNC_OFFSET( 12883, gl_dispatch_stub_740, _gloffset_GenVertexArraysAPPLE ),
NAME_FUNC_OFFSET( 12906, gl_dispatch_stub_741, _gloffset_IsVertexArrayAPPLE ),
NAME_FUNC_OFFSET( 12927, glGetProgramNamedParameterdvNV, _gloffset_GetProgramNamedParameterdvNV ),
NAME_FUNC_OFFSET( 12958, glGetProgramNamedParameterfvNV, _gloffset_GetProgramNamedParameterfvNV ),
NAME_FUNC_OFFSET( 12989, glProgramNamedParameter4dNV, _gloffset_ProgramNamedParameter4dNV ),
NAME_FUNC_OFFSET( 13017, glProgramNamedParameter4dvNV, _gloffset_ProgramNamedParameter4dvNV ),
NAME_FUNC_OFFSET( 13046, glProgramNamedParameter4fNV, _gloffset_ProgramNamedParameter4fNV ),
NAME_FUNC_OFFSET( 13074, glProgramNamedParameter4fvNV, _gloffset_ProgramNamedParameter4fvNV ),
NAME_FUNC_OFFSET( 13103, glDepthBoundsEXT, _gloffset_DepthBoundsEXT ),
NAME_FUNC_OFFSET( 13120, glBlendEquationSeparateEXT, _gloffset_BlendEquationSeparateEXT ),
NAME_FUNC_OFFSET( 13147, glBindFramebufferEXT, _gloffset_BindFramebufferEXT ),
NAME_FUNC_OFFSET( 13168, glBindRenderbufferEXT, _gloffset_BindRenderbufferEXT ),
NAME_FUNC_OFFSET( 13190, glCheckFramebufferStatusEXT, _gloffset_CheckFramebufferStatusEXT ),
NAME_FUNC_OFFSET( 13218, glDeleteFramebuffersEXT, _gloffset_DeleteFramebuffersEXT ),
NAME_FUNC_OFFSET( 13242, glDeleteRenderbuffersEXT, _gloffset_DeleteRenderbuffersEXT ),
NAME_FUNC_OFFSET( 13267, glFramebufferRenderbufferEXT, _gloffset_FramebufferRenderbufferEXT ),
NAME_FUNC_OFFSET( 13296, glFramebufferTexture1DEXT, _gloffset_FramebufferTexture1DEXT ),
NAME_FUNC_OFFSET( 13322, glFramebufferTexture2DEXT, _gloffset_FramebufferTexture2DEXT ),
NAME_FUNC_OFFSET( 13348, glFramebufferTexture3DEXT, _gloffset_FramebufferTexture3DEXT ),
NAME_FUNC_OFFSET( 13374, glGenFramebuffersEXT, _gloffset_GenFramebuffersEXT ),
NAME_FUNC_OFFSET( 13395, glGenRenderbuffersEXT, _gloffset_GenRenderbuffersEXT ),
NAME_FUNC_OFFSET( 13417, glGenerateMipmapEXT, _gloffset_GenerateMipmapEXT ),
NAME_FUNC_OFFSET( 13437, glGetFramebufferAttachmentParameterivEXT, _gloffset_GetFramebufferAttachmentParameterivEXT ),
NAME_FUNC_OFFSET( 13478, glGetQueryObjecti64vEXT, _gloffset_GetQueryObjecti64vEXT ),
NAME_FUNC_OFFSET( 13502, glGetQueryObjectui64vEXT, _gloffset_GetQueryObjectui64vEXT ),
NAME_FUNC_OFFSET( 13527, glGetRenderbufferParameterivEXT, _gloffset_GetRenderbufferParameterivEXT ),
NAME_FUNC_OFFSET( 13559, glIsFramebufferEXT, _gloffset_IsFramebufferEXT ),
NAME_FUNC_OFFSET( 13578, glIsRenderbufferEXT, _gloffset_IsRenderbufferEXT ),
NAME_FUNC_OFFSET( 13598, glRenderbufferStorageEXT, _gloffset_RenderbufferStorageEXT ),
NAME_FUNC_OFFSET( 13623, glBlitFramebufferEXT, _gloffset_BlitFramebufferEXT ),
NAME_FUNC_OFFSET( 13644, gl_dispatch_stub_770, _gloffset_ProgramEnvParameters4fvEXT ),
NAME_FUNC_OFFSET( 13673, gl_dispatch_stub_771, _gloffset_ProgramLocalParameters4fvEXT ),
NAME_FUNC_OFFSET( 13704, glArrayElementEXT, _gloffset_ArrayElement ),
NAME_FUNC_OFFSET( 13722, glBindTextureEXT, _gloffset_BindTexture ),
NAME_FUNC_OFFSET( 13739, glDrawArraysEXT, _gloffset_DrawArrays ),
NAME_FUNC_OFFSET( 13755, glCopyTexImage1DEXT, _gloffset_CopyTexImage1D ),
NAME_FUNC_OFFSET( 13775, glCopyTexImage2DEXT, _gloffset_CopyTexImage2D ),
NAME_FUNC_OFFSET( 13795, glCopyTexSubImage1DEXT, _gloffset_CopyTexSubImage1D ),
NAME_FUNC_OFFSET( 13818, glCopyTexSubImage2DEXT, _gloffset_CopyTexSubImage2D ),
NAME_FUNC_OFFSET( 13841, glDeleteTexturesEXT, _gloffset_DeleteTextures ),
NAME_FUNC_OFFSET( 13861, glGetPointervEXT, _gloffset_GetPointerv ),
NAME_FUNC_OFFSET( 13878, glPrioritizeTexturesEXT, _gloffset_PrioritizeTextures ),
NAME_FUNC_OFFSET( 13902, glTexSubImage1DEXT, _gloffset_TexSubImage1D ),
NAME_FUNC_OFFSET( 13921, glTexSubImage2DEXT, _gloffset_TexSubImage2D ),
NAME_FUNC_OFFSET( 13940, glBlendColorEXT, _gloffset_BlendColor ),
NAME_FUNC_OFFSET( 13956, glBlendEquationEXT, _gloffset_BlendEquation ),
NAME_FUNC_OFFSET( 13975, glDrawRangeElementsEXT, _gloffset_DrawRangeElements ),
NAME_FUNC_OFFSET( 13998, glColorTableSGI, _gloffset_ColorTable ),
NAME_FUNC_OFFSET( 14014, glColorTableEXT, _gloffset_ColorTable ),
NAME_FUNC_OFFSET( 14030, glColorTableParameterfvSGI, _gloffset_ColorTableParameterfv ),
NAME_FUNC_OFFSET( 14057, glColorTableParameterivSGI, _gloffset_ColorTableParameteriv ),
NAME_FUNC_OFFSET( 14084, glCopyColorTableSGI, _gloffset_CopyColorTable ),
NAME_FUNC_OFFSET( 14104, glColorSubTableEXT, _gloffset_ColorSubTable ),
NAME_FUNC_OFFSET( 14123, glCopyColorSubTableEXT, _gloffset_CopyColorSubTable ),
NAME_FUNC_OFFSET( 14146, glConvolutionFilter1DEXT, _gloffset_ConvolutionFilter1D ),
NAME_FUNC_OFFSET( 14171, glConvolutionFilter2DEXT, _gloffset_ConvolutionFilter2D ),
NAME_FUNC_OFFSET( 14196, glConvolutionParameterfEXT, _gloffset_ConvolutionParameterf ),
NAME_FUNC_OFFSET( 14223, glConvolutionParameterfvEXT, _gloffset_ConvolutionParameterfv ),
NAME_FUNC_OFFSET( 14251, glConvolutionParameteriEXT, _gloffset_ConvolutionParameteri ),
NAME_FUNC_OFFSET( 14278, glConvolutionParameterivEXT, _gloffset_ConvolutionParameteriv ),
NAME_FUNC_OFFSET( 14306, glCopyConvolutionFilter1DEXT, _gloffset_CopyConvolutionFilter1D ),
NAME_FUNC_OFFSET( 14335, glCopyConvolutionFilter2DEXT, _gloffset_CopyConvolutionFilter2D ),
NAME_FUNC_OFFSET( 14364, glSeparableFilter2DEXT, _gloffset_SeparableFilter2D ),
NAME_FUNC_OFFSET( 14387, glHistogramEXT, _gloffset_Histogram ),
NAME_FUNC_OFFSET( 14402, glMinmaxEXT, _gloffset_Minmax ),
NAME_FUNC_OFFSET( 14414, glResetHistogramEXT, _gloffset_ResetHistogram ),
NAME_FUNC_OFFSET( 14434, glResetMinmaxEXT, _gloffset_ResetMinmax ),
NAME_FUNC_OFFSET( 14451, glTexImage3DEXT, _gloffset_TexImage3D ),
NAME_FUNC_OFFSET( 14467, glTexSubImage3DEXT, _gloffset_TexSubImage3D ),
NAME_FUNC_OFFSET( 14486, glCopyTexSubImage3DEXT, _gloffset_CopyTexSubImage3D ),
NAME_FUNC_OFFSET( 14509, glActiveTexture, _gloffset_ActiveTextureARB ),
NAME_FUNC_OFFSET( 14525, glClientActiveTexture, _gloffset_ClientActiveTextureARB ),
NAME_FUNC_OFFSET( 14547, glMultiTexCoord1d, _gloffset_MultiTexCoord1dARB ),
NAME_FUNC_OFFSET( 14565, glMultiTexCoord1dv, _gloffset_MultiTexCoord1dvARB ),
NAME_FUNC_OFFSET( 14584, glMultiTexCoord1f, _gloffset_MultiTexCoord1fARB ),
NAME_FUNC_OFFSET( 14602, glMultiTexCoord1fv, _gloffset_MultiTexCoord1fvARB ),
NAME_FUNC_OFFSET( 14621, glMultiTexCoord1i, _gloffset_MultiTexCoord1iARB ),
NAME_FUNC_OFFSET( 14639, glMultiTexCoord1iv, _gloffset_MultiTexCoord1ivARB ),
NAME_FUNC_OFFSET( 14658, glMultiTexCoord1s, _gloffset_MultiTexCoord1sARB ),
NAME_FUNC_OFFSET( 14676, glMultiTexCoord1sv, _gloffset_MultiTexCoord1svARB ),
NAME_FUNC_OFFSET( 14695, glMultiTexCoord2d, _gloffset_MultiTexCoord2dARB ),
NAME_FUNC_OFFSET( 14713, glMultiTexCoord2dv, _gloffset_MultiTexCoord2dvARB ),
NAME_FUNC_OFFSET( 14732, glMultiTexCoord2f, _gloffset_MultiTexCoord2fARB ),
NAME_FUNC_OFFSET( 14750, glMultiTexCoord2fv, _gloffset_MultiTexCoord2fvARB ),
NAME_FUNC_OFFSET( 14769, glMultiTexCoord2i, _gloffset_MultiTexCoord2iARB ),
NAME_FUNC_OFFSET( 14787, glMultiTexCoord2iv, _gloffset_MultiTexCoord2ivARB ),
NAME_FUNC_OFFSET( 14806, glMultiTexCoord2s, _gloffset_MultiTexCoord2sARB ),
NAME_FUNC_OFFSET( 14824, glMultiTexCoord2sv, _gloffset_MultiTexCoord2svARB ),
NAME_FUNC_OFFSET( 14843, glMultiTexCoord3d, _gloffset_MultiTexCoord3dARB ),
NAME_FUNC_OFFSET( 14861, glMultiTexCoord3dv, _gloffset_MultiTexCoord3dvARB ),
NAME_FUNC_OFFSET( 14880, glMultiTexCoord3f, _gloffset_MultiTexCoord3fARB ),
NAME_FUNC_OFFSET( 14898, glMultiTexCoord3fv, _gloffset_MultiTexCoord3fvARB ),
NAME_FUNC_OFFSET( 14917, glMultiTexCoord3i, _gloffset_MultiTexCoord3iARB ),
NAME_FUNC_OFFSET( 14935, glMultiTexCoord3iv, _gloffset_MultiTexCoord3ivARB ),
NAME_FUNC_OFFSET( 14954, glMultiTexCoord3s, _gloffset_MultiTexCoord3sARB ),
NAME_FUNC_OFFSET( 14972, glMultiTexCoord3sv, _gloffset_MultiTexCoord3svARB ),
NAME_FUNC_OFFSET( 14991, glMultiTexCoord4d, _gloffset_MultiTexCoord4dARB ),
NAME_FUNC_OFFSET( 15009, glMultiTexCoord4dv, _gloffset_MultiTexCoord4dvARB ),
NAME_FUNC_OFFSET( 15028, glMultiTexCoord4f, _gloffset_MultiTexCoord4fARB ),
NAME_FUNC_OFFSET( 15046, glMultiTexCoord4fv, _gloffset_MultiTexCoord4fvARB ),
NAME_FUNC_OFFSET( 15065, glMultiTexCoord4i, _gloffset_MultiTexCoord4iARB ),
NAME_FUNC_OFFSET( 15083, glMultiTexCoord4iv, _gloffset_MultiTexCoord4ivARB ),
NAME_FUNC_OFFSET( 15102, glMultiTexCoord4s, _gloffset_MultiTexCoord4sARB ),
NAME_FUNC_OFFSET( 15120, glMultiTexCoord4sv, _gloffset_MultiTexCoord4svARB ),
NAME_FUNC_OFFSET( 15139, glLoadTransposeMatrixd, _gloffset_LoadTransposeMatrixdARB ),
NAME_FUNC_OFFSET( 15162, glLoadTransposeMatrixf, _gloffset_LoadTransposeMatrixfARB ),
NAME_FUNC_OFFSET( 15185, glMultTransposeMatrixd, _gloffset_MultTransposeMatrixdARB ),
NAME_FUNC_OFFSET( 15208, glMultTransposeMatrixf, _gloffset_MultTransposeMatrixfARB ),
NAME_FUNC_OFFSET( 15231, glSampleCoverage, _gloffset_SampleCoverageARB ),
NAME_FUNC_OFFSET( 15248, glCompressedTexImage1D, _gloffset_CompressedTexImage1DARB ),
NAME_FUNC_OFFSET( 15271, glCompressedTexImage2D, _gloffset_CompressedTexImage2DARB ),
NAME_FUNC_OFFSET( 15294, glCompressedTexImage3D, _gloffset_CompressedTexImage3DARB ),
NAME_FUNC_OFFSET( 15317, glCompressedTexSubImage1D, _gloffset_CompressedTexSubImage1DARB ),
NAME_FUNC_OFFSET( 15343, glCompressedTexSubImage2D, _gloffset_CompressedTexSubImage2DARB ),
NAME_FUNC_OFFSET( 15369, glCompressedTexSubImage3D, _gloffset_CompressedTexSubImage3DARB ),
NAME_FUNC_OFFSET( 15395, glGetCompressedTexImage, _gloffset_GetCompressedTexImageARB ),
NAME_FUNC_OFFSET( 15419, glBindBuffer, _gloffset_BindBufferARB ),
NAME_FUNC_OFFSET( 15432, glBufferData, _gloffset_BufferDataARB ),
NAME_FUNC_OFFSET( 15445, glBufferSubData, _gloffset_BufferSubDataARB ),
NAME_FUNC_OFFSET( 15461, glDeleteBuffers, _gloffset_DeleteBuffersARB ),
NAME_FUNC_OFFSET( 15477, glGenBuffers, _gloffset_GenBuffersARB ),
NAME_FUNC_OFFSET( 15490, glGetBufferParameteriv, _gloffset_GetBufferParameterivARB ),
NAME_FUNC_OFFSET( 15513, glGetBufferPointerv, _gloffset_GetBufferPointervARB ),
NAME_FUNC_OFFSET( 15533, glGetBufferSubData, _gloffset_GetBufferSubDataARB ),
NAME_FUNC_OFFSET( 15552, glIsBuffer, _gloffset_IsBufferARB ),
NAME_FUNC_OFFSET( 15563, glMapBuffer, _gloffset_MapBufferARB ),
NAME_FUNC_OFFSET( 15575, glUnmapBuffer, _gloffset_UnmapBufferARB ),
NAME_FUNC_OFFSET( 15589, glBeginQuery, _gloffset_BeginQueryARB ),
NAME_FUNC_OFFSET( 15602, glDeleteQueries, _gloffset_DeleteQueriesARB ),
NAME_FUNC_OFFSET( 15618, glEndQuery, _gloffset_EndQueryARB ),
NAME_FUNC_OFFSET( 15629, glGenQueries, _gloffset_GenQueriesARB ),
NAME_FUNC_OFFSET( 15642, glGetQueryObjectiv, _gloffset_GetQueryObjectivARB ),
NAME_FUNC_OFFSET( 15661, glGetQueryObjectuiv, _gloffset_GetQueryObjectuivARB ),
NAME_FUNC_OFFSET( 15681, glGetQueryiv, _gloffset_GetQueryivARB ),
NAME_FUNC_OFFSET( 15694, glIsQuery, _gloffset_IsQueryARB ),
NAME_FUNC_OFFSET( 15704, glDrawBuffersATI, _gloffset_DrawBuffersARB ),
NAME_FUNC_OFFSET( 15721, glGetColorTableParameterfvEXT, _gloffset_GetColorTableParameterfvSGI ),
NAME_FUNC_OFFSET( 15751, glGetColorTableParameterivEXT, _gloffset_GetColorTableParameterivSGI ),
NAME_FUNC_OFFSET( 15781, glGetColorTableEXT, _gloffset_GetColorTableSGI ),
NAME_FUNC_OFFSET( 15800, glSampleMaskEXT, _gloffset_SampleMaskSGIS ),
NAME_FUNC_OFFSET( 15816, glSamplePatternEXT, _gloffset_SamplePatternSGIS ),
NAME_FUNC_OFFSET( 15835, glPointParameterf, _gloffset_PointParameterfEXT ),

View File

@ -7925,11 +7925,11 @@ _mesa_init_dlist_table(struct _glapi_table *table)
SET_CopyConvolutionFilter1D(table, exec_CopyConvolutionFilter1D);
SET_CopyConvolutionFilter2D(table, exec_CopyConvolutionFilter2D);
SET_GetColorTable(table, exec_GetColorTable);
SET_GetColorTableEXT(table, exec_GetColorTable);
SET_GetColorTableSGI(table, exec_GetColorTable);
SET_GetColorTableParameterfv(table, exec_GetColorTableParameterfv);
SET_GetColorTableParameterfvEXT(table, exec_GetColorTableParameterfv);
SET_GetColorTableParameterfvSGI(table, exec_GetColorTableParameterfv);
SET_GetColorTableParameteriv(table, exec_GetColorTableParameteriv);
SET_GetColorTableParameterivEXT(table, exec_GetColorTableParameteriv);
SET_GetColorTableParameterivSGI(table, exec_GetColorTableParameteriv);
SET_GetConvolutionFilter(table, exec_GetConvolutionFilter);
SET_GetConvolutionFilterEXT(table, exec_GetConvolutionFilter);
SET_GetConvolutionParameterfv(table, exec_GetConvolutionParameterfv);
@ -7971,6 +7971,15 @@ _mesa_init_dlist_table(struct _glapi_table *table)
SET_TexSubImage3DEXT(table, save_TexSubImage3D);
#endif
/* 14. GL_SGI_color_table */
#if 0
SET_ColorTableSGI(table, save_ColorTable);
SET_ColorSubTableSGI(table, save_ColorSubTable);
#endif
SET_GetColorTableSGI(table, exec_GetColorTable);
SET_GetColorTableParameterfvSGI(table, exec_GetColorTableParameterfv);
SET_GetColorTableParameterivSGI(table, exec_GetColorTableParameteriv);
/* 30. GL_EXT_vertex_array */
SET_ColorPointerEXT(table, exec_ColorPointerEXT);
SET_EdgeFlagPointerEXT(table, exec_EdgeFlagPointerEXT);
@ -7988,15 +7997,6 @@ _mesa_init_dlist_table(struct _glapi_table *table)
SET_PointParameterfEXT(table, save_PointParameterfEXT);
SET_PointParameterfvEXT(table, save_PointParameterfvEXT);
/* 78. GL_EXT_paletted_texture */
#if 0
SET_ColorTableEXT(table, save_ColorTable);
SET_ColorSubTableEXT(table, save_ColorSubTable);
#endif
SET_GetColorTableEXT(table, exec_GetColorTable);
SET_GetColorTableParameterfvEXT(table, exec_GetColorTableParameterfv);
SET_GetColorTableParameterivEXT(table, exec_GetColorTableParameteriv);
/* 97. GL_EXT_compiled_vertex_array */
SET_LockArraysEXT(table, exec_LockArraysEXT);
SET_UnlockArraysEXT(table, exec_UnlockArraysEXT);

View File

@ -356,11 +356,11 @@ _mesa_init_exec_table(struct _glapi_table *exec)
SET_CopyConvolutionFilter1D(exec, _mesa_CopyConvolutionFilter1D);
SET_CopyConvolutionFilter2D(exec, _mesa_CopyConvolutionFilter2D);
SET_GetColorTable(exec, _mesa_GetColorTable);
SET_GetColorTableEXT(exec, _mesa_GetColorTable);
SET_GetColorTableSGI(exec, _mesa_GetColorTable);
SET_GetColorTableParameterfv(exec, _mesa_GetColorTableParameterfv);
SET_GetColorTableParameterfvEXT(exec, _mesa_GetColorTableParameterfv);
SET_GetColorTableParameterfvSGI(exec, _mesa_GetColorTableParameterfv);
SET_GetColorTableParameteriv(exec, _mesa_GetColorTableParameteriv);
SET_GetColorTableParameterivEXT(exec, _mesa_GetColorTableParameteriv);
SET_GetColorTableParameterivSGI(exec, _mesa_GetColorTableParameteriv);
SET_GetConvolutionFilter(exec, _mesa_GetConvolutionFilter);
SET_GetConvolutionFilterEXT(exec, _mesa_GetConvolutionFilter);
SET_GetConvolutionParameterfv(exec, _mesa_GetConvolutionParameterfv);
@ -420,6 +420,17 @@ _mesa_init_exec_table(struct _glapi_table *exec)
SET_GetMinmaxParameterivEXT(exec, _mesa_GetMinmaxParameteriv);
#endif
/* 14. SGI_color_table */
#if 0
SET_ColorTableSGI(exec, _mesa_ColorTable);
SET_ColorSubTableSGI(exec, _mesa_ColorSubTable);
#endif
#if _HAVE_FULL_GL
SET_GetColorTableSGI(exec, _mesa_GetColorTable);
SET_GetColorTableParameterfvSGI(exec, _mesa_GetColorTableParameterfv);
SET_GetColorTableParameterivSGI(exec, _mesa_GetColorTableParameteriv);
#endif
/* 30. GL_EXT_vertex_array */
#if _HAVE_FULL_GL
SET_ColorPointerEXT(exec, _mesa_ColorPointerEXT);
@ -441,17 +452,6 @@ _mesa_init_exec_table(struct _glapi_table *exec)
SET_PointParameterfvEXT(exec, _mesa_PointParameterfvEXT);
#endif
/* 78. GL_EXT_paletted_texture */
#if 0
SET_ColorTableEXT(exec, _mesa_ColorTableEXT);
SET_ColorSubTableEXT(exec, _mesa_ColorSubTableEXT);
#endif
#if _HAVE_FULL_GL
SET_GetColorTableEXT(exec, _mesa_GetColorTable);
SET_GetColorTableParameterfvEXT(exec, _mesa_GetColorTableParameterfv);
SET_GetColorTableParameterivEXT(exec, _mesa_GetColorTableParameteriv);
#endif
/* 97. GL_EXT_compiled_vertex_array */
#if _HAVE_FULL_GL
SET_LockArraysEXT(exec, _mesa_LockArraysEXT);

View File

@ -640,9 +640,6 @@ __glapi_sparc_icache_flush: /* %o0 = insn_addr */
.globl glVertexPointerEXT ; .type glVertexPointerEXT,#function
.globl glPointParameterfEXT ; .type glPointParameterfEXT,#function
.globl glPointParameterfvEXT ; .type glPointParameterfvEXT,#function
.globl glGetColorTableEXT ; .type glGetColorTableEXT,#function
.globl glGetColorTableParameterfvEXT ; .type glGetColorTableParameterfvEXT,#function
.globl glGetColorTableParameterivEXT ; .type glGetColorTableParameterivEXT,#function
.globl glLockArraysEXT ; .type glLockArraysEXT,#function
.globl glUnlockArraysEXT ; .type glUnlockArraysEXT,#function
.globl glCullParameterdvEXT ; .type glCullParameterdvEXT,#function
@ -806,10 +803,10 @@ __glapi_sparc_icache_flush: /* %o0 = insn_addr */
.globl glPointParameteriNV ; .type glPointParameteriNV,#function
.globl glPointParameterivNV ; .type glPointParameterivNV,#function
.globl glActiveStencilFaceEXT ; .type glActiveStencilFaceEXT,#function
.globl gl_dispatch_stub_738 ; .type gl_dispatch_stub_738,#function
.globl gl_dispatch_stub_739 ; .type gl_dispatch_stub_739,#function
.globl gl_dispatch_stub_740 ; .type gl_dispatch_stub_740,#function
.globl gl_dispatch_stub_741 ; .type gl_dispatch_stub_741,#function
.globl gl_dispatch_stub_742 ; .type gl_dispatch_stub_742,#function
.globl gl_dispatch_stub_743 ; .type gl_dispatch_stub_743,#function
.globl gl_dispatch_stub_744 ; .type gl_dispatch_stub_744,#function
.globl glGetProgramNamedParameterdvNV ; .type glGetProgramNamedParameterdvNV,#function
.globl glGetProgramNamedParameterfvNV ; .type glGetProgramNamedParameterfvNV,#function
.globl glProgramNamedParameter4dNV ; .type glProgramNamedParameter4dNV,#function
@ -838,8 +835,8 @@ __glapi_sparc_icache_flush: /* %o0 = insn_addr */
.globl glIsRenderbufferEXT ; .type glIsRenderbufferEXT,#function
.globl glRenderbufferStorageEXT ; .type glRenderbufferStorageEXT,#function
.globl glBlitFramebufferEXT ; .type glBlitFramebufferEXT,#function
.globl gl_dispatch_stub_773 ; .type gl_dispatch_stub_773,#function
.globl gl_dispatch_stub_774 ; .type gl_dispatch_stub_774,#function
.globl gl_dispatch_stub_770 ; .type gl_dispatch_stub_770,#function
.globl gl_dispatch_stub_771 ; .type gl_dispatch_stub_771,#function
.globl _mesa_sparc_glapi_begin ; .type _mesa_sparc_glapi_begin,#function
_mesa_sparc_glapi_begin:
@ -1418,9 +1415,6 @@ _mesa_sparc_glapi_begin:
GL_STUB(glVertexPointerEXT, _gloffset_VertexPointerEXT)
GL_STUB(glPointParameterfEXT, _gloffset_PointParameterfEXT)
GL_STUB(glPointParameterfvEXT, _gloffset_PointParameterfvEXT)
GL_STUB(glGetColorTableEXT, _gloffset_GetColorTableEXT)
GL_STUB(glGetColorTableParameterfvEXT, _gloffset_GetColorTableParameterfvEXT)
GL_STUB(glGetColorTableParameterivEXT, _gloffset_GetColorTableParameterivEXT)
GL_STUB(glLockArraysEXT, _gloffset_LockArraysEXT)
GL_STUB(glUnlockArraysEXT, _gloffset_UnlockArraysEXT)
GL_STUB(glCullParameterdvEXT, _gloffset_CullParameterdvEXT)
@ -1584,10 +1578,10 @@ _mesa_sparc_glapi_begin:
GL_STUB(glPointParameteriNV, _gloffset_PointParameteriNV)
GL_STUB(glPointParameterivNV, _gloffset_PointParameterivNV)
GL_STUB(glActiveStencilFaceEXT, _gloffset_ActiveStencilFaceEXT)
GL_STUB(gl_dispatch_stub_738, _gloffset__dispatch_stub_738)
GL_STUB(gl_dispatch_stub_739, _gloffset__dispatch_stub_739)
GL_STUB(gl_dispatch_stub_740, _gloffset__dispatch_stub_740)
GL_STUB(gl_dispatch_stub_741, _gloffset__dispatch_stub_741)
GL_STUB(gl_dispatch_stub_742, _gloffset__dispatch_stub_742)
GL_STUB(gl_dispatch_stub_743, _gloffset__dispatch_stub_743)
GL_STUB(gl_dispatch_stub_744, _gloffset__dispatch_stub_744)
GL_STUB(glGetProgramNamedParameterdvNV, _gloffset_GetProgramNamedParameterdvNV)
GL_STUB(glGetProgramNamedParameterfvNV, _gloffset_GetProgramNamedParameterfvNV)
GL_STUB(glProgramNamedParameter4dNV, _gloffset_ProgramNamedParameter4dNV)
@ -1616,8 +1610,8 @@ _mesa_sparc_glapi_begin:
GL_STUB(glIsRenderbufferEXT, _gloffset_IsRenderbufferEXT)
GL_STUB(glRenderbufferStorageEXT, _gloffset_RenderbufferStorageEXT)
GL_STUB(glBlitFramebufferEXT, _gloffset_BlitFramebufferEXT)
GL_STUB(gl_dispatch_stub_773, _gloffset__dispatch_stub_773)
GL_STUB(gl_dispatch_stub_774, _gloffset__dispatch_stub_774)
GL_STUB(gl_dispatch_stub_770, _gloffset__dispatch_stub_770)
GL_STUB(gl_dispatch_stub_771, _gloffset__dispatch_stub_771)
.globl _mesa_sparc_glapi_end ; .type _mesa_sparc_glapi_end,#function
_mesa_sparc_glapi_end:
@ -1726,6 +1720,9 @@ _mesa_sparc_glapi_end:
.globl glGetQueryiv ; .type glGetQueryiv,#function ; glGetQueryiv = glGetQueryivARB
.globl glIsQuery ; .type glIsQuery,#function ; glIsQuery = glIsQueryARB
.globl glDrawBuffersATI ; .type glDrawBuffersATI,#function ; glDrawBuffersATI = glDrawBuffersARB
.globl glGetColorTableParameterfvEXT ; .type glGetColorTableParameterfvEXT,#function ; glGetColorTableParameterfvEXT = glGetColorTableParameterfvSGI
.globl glGetColorTableParameterivEXT ; .type glGetColorTableParameterivEXT,#function ; glGetColorTableParameterivEXT = glGetColorTableParameterivSGI
.globl glGetColorTableEXT ; .type glGetColorTableEXT,#function ; glGetColorTableEXT = glGetColorTableSGI
.globl glSampleMaskEXT ; .type glSampleMaskEXT,#function ; glSampleMaskEXT = glSampleMaskSGIS
.globl glSamplePatternEXT ; .type glSamplePatternEXT,#function ; glSamplePatternEXT = glSamplePatternSGIS
.globl glPointParameterf ; .type glPointParameterf,#function ; glPointParameterf = glPointParameterfEXT

File diff suppressed because it is too large Load Diff

View File

@ -716,9 +716,6 @@ GLNAME(gl_dispatch_functions_start):
GL_STUB(VertexPointerEXT, _gloffset_VertexPointerEXT, VertexPointerEXT@20)
GL_STUB(PointParameterfEXT, _gloffset_PointParameterfEXT, PointParameterfEXT@8)
GL_STUB(PointParameterfvEXT, _gloffset_PointParameterfvEXT, PointParameterfvEXT@8)
GL_STUB(GetColorTableEXT, _gloffset_GetColorTableEXT, GetColorTableEXT@16)
GL_STUB(GetColorTableParameterfvEXT, _gloffset_GetColorTableParameterfvEXT, GetColorTableParameterfvEXT@12)
GL_STUB(GetColorTableParameterivEXT, _gloffset_GetColorTableParameterivEXT, GetColorTableParameterivEXT@12)
GL_STUB(LockArraysEXT, _gloffset_LockArraysEXT, LockArraysEXT@8)
GL_STUB(UnlockArraysEXT, _gloffset_UnlockArraysEXT, UnlockArraysEXT@0)
GL_STUB(CullParameterdvEXT, _gloffset_CullParameterdvEXT, CullParameterdvEXT@8)
@ -882,14 +879,14 @@ GLNAME(gl_dispatch_functions_start):
GL_STUB(PointParameteriNV, _gloffset_PointParameteriNV, PointParameteriNV@8)
GL_STUB(PointParameterivNV, _gloffset_PointParameterivNV, PointParameterivNV@8)
GL_STUB(ActiveStencilFaceEXT, _gloffset_ActiveStencilFaceEXT, ActiveStencilFaceEXT@4)
GL_STUB(_dispatch_stub_741, _gloffset_BindVertexArrayAPPLE, _dispatch_stub_741@4)
GL_STUB(_dispatch_stub_738, _gloffset_BindVertexArrayAPPLE, _dispatch_stub_738@4)
HIDDEN(GL_PREFIX(_dispatch_stub_738, _dispatch_stub_738@4))
GL_STUB(_dispatch_stub_739, _gloffset_DeleteVertexArraysAPPLE, _dispatch_stub_739@8)
HIDDEN(GL_PREFIX(_dispatch_stub_739, _dispatch_stub_739@8))
GL_STUB(_dispatch_stub_740, _gloffset_GenVertexArraysAPPLE, _dispatch_stub_740@8)
HIDDEN(GL_PREFIX(_dispatch_stub_740, _dispatch_stub_740@8))
GL_STUB(_dispatch_stub_741, _gloffset_IsVertexArrayAPPLE, _dispatch_stub_741@4)
HIDDEN(GL_PREFIX(_dispatch_stub_741, _dispatch_stub_741@4))
GL_STUB(_dispatch_stub_742, _gloffset_DeleteVertexArraysAPPLE, _dispatch_stub_742@8)
HIDDEN(GL_PREFIX(_dispatch_stub_742, _dispatch_stub_742@8))
GL_STUB(_dispatch_stub_743, _gloffset_GenVertexArraysAPPLE, _dispatch_stub_743@8)
HIDDEN(GL_PREFIX(_dispatch_stub_743, _dispatch_stub_743@8))
GL_STUB(_dispatch_stub_744, _gloffset_IsVertexArrayAPPLE, _dispatch_stub_744@4)
HIDDEN(GL_PREFIX(_dispatch_stub_744, _dispatch_stub_744@4))
GL_STUB(GetProgramNamedParameterdvNV, _gloffset_GetProgramNamedParameterdvNV, GetProgramNamedParameterdvNV@16)
GL_STUB(GetProgramNamedParameterfvNV, _gloffset_GetProgramNamedParameterfvNV, GetProgramNamedParameterfvNV@16)
GL_STUB(ProgramNamedParameter4dNV, _gloffset_ProgramNamedParameter4dNV, ProgramNamedParameter4dNV@44)
@ -918,10 +915,10 @@ GLNAME(gl_dispatch_functions_start):
GL_STUB(IsRenderbufferEXT, _gloffset_IsRenderbufferEXT, IsRenderbufferEXT@4)
GL_STUB(RenderbufferStorageEXT, _gloffset_RenderbufferStorageEXT, RenderbufferStorageEXT@16)
GL_STUB(BlitFramebufferEXT, _gloffset_BlitFramebufferEXT, BlitFramebufferEXT@40)
GL_STUB(_dispatch_stub_773, _gloffset_ProgramEnvParameters4fvEXT, _dispatch_stub_773@16)
HIDDEN(GL_PREFIX(_dispatch_stub_773, _dispatch_stub_773@16))
GL_STUB(_dispatch_stub_774, _gloffset_ProgramLocalParameters4fvEXT, _dispatch_stub_774@16)
HIDDEN(GL_PREFIX(_dispatch_stub_774, _dispatch_stub_774@16))
GL_STUB(_dispatch_stub_770, _gloffset_ProgramEnvParameters4fvEXT, _dispatch_stub_770@16)
HIDDEN(GL_PREFIX(_dispatch_stub_770, _dispatch_stub_770@16))
GL_STUB(_dispatch_stub_771, _gloffset_ProgramLocalParameters4fvEXT, _dispatch_stub_771@16)
HIDDEN(GL_PREFIX(_dispatch_stub_771, _dispatch_stub_771@16))
GL_STUB_ALIAS(ArrayElementEXT, _gloffset_ArrayElement, ArrayElementEXT@4, ArrayElement, ArrayElement@4)
GL_STUB_ALIAS(BindTextureEXT, _gloffset_BindTexture, BindTextureEXT@8, BindTexture, BindTexture@8)
GL_STUB_ALIAS(DrawArraysEXT, _gloffset_DrawArrays, DrawArraysEXT@12, DrawArrays, DrawArrays@12)
@ -1026,6 +1023,9 @@ GLNAME(gl_dispatch_functions_start):
GL_STUB_ALIAS(GetQueryiv, _gloffset_GetQueryivARB, GetQueryiv@12, GetQueryivARB, GetQueryivARB@12)
GL_STUB_ALIAS(IsQuery, _gloffset_IsQueryARB, IsQuery@4, IsQueryARB, IsQueryARB@4)
GL_STUB_ALIAS(DrawBuffersATI, _gloffset_DrawBuffersARB, DrawBuffersATI@8, DrawBuffersARB, DrawBuffersARB@8)
GL_STUB_ALIAS(GetColorTableParameterfvEXT, _gloffset_GetColorTableParameterfvSGI, GetColorTableParameterfvEXT@12, GetColorTableParameterfvSGI, GetColorTableParameterfvSGI@12)
GL_STUB_ALIAS(GetColorTableParameterivEXT, _gloffset_GetColorTableParameterivSGI, GetColorTableParameterivEXT@12, GetColorTableParameterivSGI, GetColorTableParameterivSGI@12)
GL_STUB_ALIAS(GetColorTableEXT, _gloffset_GetColorTableSGI, GetColorTableEXT@16, GetColorTableSGI, GetColorTableSGI@16)
GL_STUB_ALIAS(SampleMaskEXT, _gloffset_SampleMaskSGIS, SampleMaskEXT@8, SampleMaskSGIS, SampleMaskSGIS@8)
GL_STUB_ALIAS(SamplePatternEXT, _gloffset_SamplePatternSGIS, SamplePatternEXT@4, SamplePatternSGIS, SamplePatternSGIS@4)
GL_STUB_ALIAS(PointParameterf, _gloffset_PointParameterfEXT, PointParameterf@8, PointParameterfEXT, PointParameterfEXT@8)