diff options
author | Keith Whitwell <[email protected]> | 1999-10-19 18:37:02 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 1999-10-19 18:37:02 +0000 |
commit | d471473b5842154c0b44b7bec149401f6dab43cc (patch) | |
tree | 5a6e53fde0662dcd2eb4b3455eaaf0a470126c1d /src/mesa/main/varray.h | |
parent | 52880f85b5270fb156c1b75effabc9c2c8b61511 (diff) |
Changes to reduce the memory footprint of display lists
Diffstat (limited to 'src/mesa/main/varray.h')
-rw-r--r-- | src/mesa/main/varray.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mesa/main/varray.h b/src/mesa/main/varray.h index 3085c42cd67..88cedb4a1ce 100644 --- a/src/mesa/main/varray.h +++ b/src/mesa/main/varray.h @@ -1,4 +1,4 @@ -/* $Id: varray.h,v 1.3 1999/10/08 09:27:11 keithw Exp $ */ +/* $Id: varray.h,v 1.4 1999/10/19 18:37:05 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -99,7 +99,9 @@ extern void gl_save_DrawRangeElements( GLcontext *ctx, GLenum mode, extern void gl_exec_array_elements( GLcontext *ctx, - struct immediate *IM ); + struct immediate *IM, + GLuint start, + GLuint end ); extern void gl_update_client_state( GLcontext *ctx ); |