summaryrefslogtreecommitdiff
path: root/src/mesa/glapi/glapitable.h
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>1999-12-16 12:36:54 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>1999-12-16 12:36:54 +0000
commite3a49d0cefe0a16ac8bc30463fa1277e058b320c (patch)
treef1a1bb7a2afe360286b7aea89bbbebc6e274fda1 /src/mesa/glapi/glapitable.h
parentfd5d305a9fb8ab3cdddf0e7db671ff1190b46c35 (diff)
added more functions
Diffstat (limited to 'src/mesa/glapi/glapitable.h')
-rw-r--r--src/mesa/glapi/glapitable.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesa/glapi/glapitable.h b/src/mesa/glapi/glapitable.h
index 24a023e207..6ec922d1a0 100644
--- a/src/mesa/glapi/glapitable.h
+++ b/src/mesa/glapi/glapitable.h
@@ -1,4 +1,4 @@
-/* $Id: glapitable.h,v 1.4 1999/12/15 12:52:31 brianp Exp $ */
+/* $Id: glapitable.h,v 1.5 1999/12/16 12:36:54 brianp Exp $ */
/*
* Mesa 3-D graphics library
@@ -54,6 +54,8 @@
*/
struct _glapi_table
{
+ void (*Dummy)(void);
+
/*
* OpenGL 1.0
*/
@@ -553,6 +555,8 @@ struct _glapi_table
/* 14. GL_SGI_color_table */
void (*ColorTableSGI)(GLenum, GLenum, GLsizei, GLenum, GLenum, const GLvoid *);
+ void (*ColorTableParameterfvSGI)(GLenum, GLenum, const GLfloat *);
+ void (*ColorTableParameterivSGI)(GLenum, GLenum, const GLint *);
void (*CopyColorTableSGI)(GLenum, GLenum, GLint, GLint, GLsizei);
void (*GetColorTableSGI)(GLenum, GLenum, GLenum, GLvoid *);
void (*GetColorTableParameterfvSGI)(GLenum, GLenum, GLfloat *);
@@ -578,6 +582,7 @@ struct _glapi_table
GLboolean (*AreTexturesResidentEXT)(GLsizei, const GLuint *, GLboolean *);
void (*BindTextureEXT)(GLenum, GLuint);
void (*DeleteTexturesEXT)(GLsizei, const GLuint *);
+ void (*GenTexturesEXT)(GLsizei, GLuint *);
GLboolean (*IsTextureEXT)(GLuint);
void (*PrioritizeTexturesEXT)(GLsizei, const GLuint *, const GLclampf *);