diff options
author | Brian Paul <[email protected]> | 1999-09-09 23:48:02 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 1999-09-09 23:48:02 +0000 |
commit | 2ba7c1cbe44ce7d8878e311ff22fe33da0cd6329 (patch) | |
tree | 1bb538538970d3998845b623026e5cf522ea3ede /src/mesa/main/varray.h | |
parent | 00dd504c72e7af8a171a07a952b03bc38982780a (diff) |
moved gl_GetPointerv() into get.h
Diffstat (limited to 'src/mesa/main/varray.h')
-rw-r--r-- | src/mesa/main/varray.h | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h index fc81a61c720..6e1fd756783 100644 --- a/src/mesa/main/varray.h +++ b/src/mesa/main/varray.h @@ -1,4 +1,4 @@ -/* $Id: varray.h,v 1.1 1999/08/19 00:55:41 jtg Exp $ */ +/* $Id: varray.h,v 1.2 1999/09/09 23:48:02 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -25,9 +25,6 @@ */ - - - #ifndef VARRAY_H #define VARRAY_H @@ -63,10 +60,6 @@ extern void gl_EdgeFlagPointer( GLcontext *ctx, GLsizei stride, const GLboolean *ptr ); -extern void gl_GetPointerv( GLcontext *ctx, GLenum pname, GLvoid **params ); - - - extern void gl_DrawArrays( GLcontext *ctx, GLenum mode, GLint first, GLsizei count ); @@ -96,18 +89,15 @@ extern void gl_DrawRangeElements( GLcontext *ctx, GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices ); + extern void gl_save_DrawRangeElements( GLcontext *ctx, GLenum mode, GLuint start, GLuint end, GLsizei count, GLenum type, const GLvoid *indices ); - extern void gl_exec_array_elements( GLcontext *ctx, struct immediate *IM ); extern void gl_update_client_state( GLcontext *ctx ); #endif - - - |