diff options
author | Keith Whitwell <[email protected]> | 2000-11-24 10:25:05 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2000-11-24 10:25:05 +0000 |
commit | ad2ac216fa0cbebc36530bf9e5256e902710b892 (patch) | |
tree | 2b44b0129679558d0a1760bf94d75bcdbfe145ad /src/mesa/main/varray.h | |
parent | 00608a79dce1ea5e274f35b0a1883f7b623b9d7a (diff) |
Support for swappable t&l modules, including an example one in the FX
driver (enable with FX_ALLOW_VTXFMT=t).
Diffstat (limited to 'src/mesa/main/varray.h')
-rw-r--r-- | src/mesa/main/varray.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h index 3e30cf5bf1f..c365d914a57 100644 --- a/src/mesa/main/varray.h +++ b/src/mesa/main/varray.h @@ -1,4 +1,4 @@ -/* $Id: varray.h,v 1.10 2000/11/22 07:32:17 joukj Exp $ */ +/* $Id: varray.h,v 1.11 2000/11/24 10:25:06 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -36,6 +36,12 @@ extern void _mesa_VertexPointer(GLint size, GLenum type, GLsizei stride, const GLvoid *ptr); +extern void +_mesa_UnlockArraysEXT( void ); + +extern void +_mesa_LockArraysEXT(GLint first, GLsizei count); + extern void _mesa_NormalPointer(GLenum type, GLsizei stride, const GLvoid *ptr); |