diff options
author | Brian Paul <[email protected]> | 2000-10-27 18:31:21 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2000-10-27 18:31:21 +0000 |
commit | a14cbff8e5b30539d8fdc3497a0e128992efa6c9 (patch) | |
tree | ebe73985a8b4fa388b66dd4297f46f38a8e18b37 /src/mesa/glapi/glapitable.h | |
parent | fe5d67d95f3a5fc84c5421d409a6464642aaf2cb (diff) |
Enabled GL_EXT_secondary_color. Fixed a bunch of typos in the dlist.c
and state.c file for plugging those functions into the dispatch table.
Don't use Mesa 3.5 for DRI until SGI approves the new dispatch offsets.
Commented-out references to ctx->FogMode and VB->Specular in FX driver.
Minor clean-up in extensions.c
Removed unused prototype in fog.h
Diffstat (limited to 'src/mesa/glapi/glapitable.h')
-rw-r--r-- | src/mesa/glapi/glapitable.h | 21 |
1 files changed, 19 insertions, 2 deletions
diff --git a/src/mesa/glapi/glapitable.h b/src/mesa/glapi/glapitable.h index 94690afb2f2..248b936149b 100644 --- a/src/mesa/glapi/glapitable.h +++ b/src/mesa/glapi/glapitable.h @@ -548,8 +548,8 @@ struct _glapi_table void (*IndexFuncEXT)(GLenum func, GLclampf ref); /* 539 */ void (*LockArraysEXT)(GLint first, GLsizei count); /* 540 */ void (*UnlockArraysEXT)(void); /* 541 */ - void (*CullParameterdvEXT)(GLenum pname, const GLdouble * params); /* 542 */ - void (*CullParameterfvEXT)(GLenum pname, const GLfloat * params); /* 543 */ + void (*CullParameterdvEXT)(GLenum pname, GLdouble * params); /* 542 */ + void (*CullParameterfvEXT)(GLenum pname, GLfloat * params); /* 543 */ void (*HintPGI)(GLenum target, GLint mode); /* 544 */ void (*FogCoordfEXT)(GLfloat coord); /* 545 */ void (*FogCoordfvEXT)(const GLfloat * coord); /* 546 */ @@ -567,6 +567,23 @@ struct _glapi_table void (*CompressedTexSubImage2DARB)(GLenum target, GLint level, GLint xoffset, GLint yoffset, GLsizei width, GLsizei height, GLenum format, GLsizei imageSize, const GLvoid * data); /* 558 */ void (*CompressedTexSubImage1DARB)(GLenum target, GLint level, GLint xoffset, GLsizei width, GLenum format, GLsizei imageSize, const GLvoid * data); /* 559 */ void (*GetCompressedTexImageARB)(GLenum target, GLint level, void * img); /* 560 */ + void (*SecondaryColor3bEXT)(GLbyte red, GLbyte green, GLbyte blue); /* 561 */ + void (*SecondaryColor3bvEXT)(const GLbyte * v); /* 562 */ + void (*SecondaryColor3dEXT)(GLdouble red, GLdouble green, GLdouble blue); /* 563 */ + void (*SecondaryColor3dvEXT)(const GLdouble * v); /* 564 */ + void (*SecondaryColor3fEXT)(GLfloat red, GLfloat green, GLfloat blue); /* 565 */ + void (*SecondaryColor3fvEXT)(const GLfloat * v); /* 566 */ + void (*SecondaryColor3iEXT)(GLint red, GLint green, GLint blue); /* 567 */ + void (*SecondaryColor3ivEXT)(const GLint * v); /* 568 */ + void (*SecondaryColor3sEXT)(GLshort red, GLshort green, GLshort blue); /* 569 */ + void (*SecondaryColor3svEXT)(const GLshort * v); /* 570 */ + void (*SecondaryColor3ubEXT)(GLubyte red, GLubyte green, GLubyte blue); /* 571 */ + void (*SecondaryColor3ubvEXT)(const GLubyte * v); /* 572 */ + void (*SecondaryColor3uiEXT)(GLuint red, GLuint green, GLuint blue); /* 573 */ + void (*SecondaryColor3uivEXT)(const GLuint * v); /* 574 */ + void (*SecondaryColor3usEXT)(GLushort red, GLushort green, GLushort blue); /* 575 */ + void (*SecondaryColor3usvEXT)(const GLushort * v); /* 576 */ + void (*SecondaryColorPointerEXT)(GLint size, GLenum type, GLsizei stride, const GLvoid * pointer); /* 577 */ }; #endif |