diff options
author | Keith Whitwell <[email protected]> | 2000-10-27 16:44:40 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2000-10-27 16:44:40 +0000 |
commit | fe5d67d95f3a5fc84c5421d409a6464642aaf2cb (patch) | |
tree | e425a9d97e9e1bbdf4848b313c7c1548db11cb36 /src/mesa/main/varray.h | |
parent | ba58a6665f21319a636ec4c09f7f592fbc8e36b5 (diff) |
Implement EXT_fog_coord and EXT_secondary_color.
EXT_secondary_color is disabled until we get some dispatch offsets from SGI.
Diffstat (limited to 'src/mesa/main/varray.h')
-rw-r--r-- | src/mesa/main/varray.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h index d08872728b0..2f42dfabcbd 100644 --- a/src/mesa/main/varray.h +++ b/src/mesa/main/varray.h @@ -1,4 +1,4 @@ -/* $Id: varray.h,v 1.7 2000/06/12 15:30:52 brianp Exp $ */ +/* $Id: varray.h,v 1.8 2000/10/27 16:44:41 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -87,7 +87,12 @@ extern void _mesa_EdgeFlagPointerEXT(GLsizei stride, GLsizei count, const GLboolean *ptr); +extern void +_mesa_FogCoordPointerEXT(GLenum type, GLsizei stride, const GLvoid *ptr); +extern void +_mesa_SecondaryColorPointerEXT(GLint size, GLenum type, + GLsizei stride, const GLvoid *ptr); extern void |