diff options
author | Keith Whitwell <[email protected]> | 2001-01-13 18:28:19 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2001-01-13 18:28:19 +0000 |
commit | ab8b047ae59c111b4e4ab4fd43a2c6573caf5b85 (patch) | |
tree | 8f864821598893bb3933a2956a366bd993918a9b /src/mesa/main/dlist.h | |
parent | 8415686ea22bc9165720590261581ff997f2eb7a (diff) |
fix conform dlist test
Diffstat (limited to 'src/mesa/main/dlist.h')
-rw-r--r-- | src/mesa/main/dlist.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/mesa/main/dlist.h b/src/mesa/main/dlist.h index e2dea892696..d43aed787bf 100644 --- a/src/mesa/main/dlist.h +++ b/src/mesa/main/dlist.h @@ -1,4 +1,4 @@ -/* $Id: dlist.h,v 1.11 2000/12/26 07:41:32 keithw Exp $ */ +/* $Id: dlist.h,v 1.12 2001/01/13 18:28:20 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -91,8 +91,11 @@ _mesa_alloc_opcode( GLcontext *ctx, GLuint sz, void (*destroy)( GLcontext *, void * ), void (*print)( GLcontext *, void * ) ); -extern void _mesa_save_EvalMesh2(GLenum mode, GLint i1, GLint i2, GLint j1, GLint j2 ); +extern void _mesa_save_EvalMesh2(GLenum mode, GLint i1, GLint i2, + GLint j1, GLint j2 ); extern void _mesa_save_EvalMesh1( GLenum mode, GLint i1, GLint i2 ); +extern void _mesa_save_CallLists( GLsizei n, GLenum type, const GLvoid *lists ); +extern void _mesa_save_CallList( GLuint list ); |