diff options
author | Keith Whitwell <keith@tungstengraphics.com> | 1999-10-19 18:37:02 +0000 |
---|---|---|
committer | Keith Whitwell <keith@tungstengraphics.com> | 1999-10-19 18:37:02 +0000 |
commit | d471473b5842154c0b44b7bec149401f6dab43cc (patch) | |
tree | 5a6e53fde0662dcd2eb4b3455eaaf0a470126c1d /src/mesa/main/context.c | |
parent | 52880f85b5270fb156c1b75effabc9c2c8b61511 (diff) |
Changes to reduce the memory footprint of display lists
Diffstat (limited to 'src/mesa/main/context.c')
-rw-r--r-- | src/mesa/main/context.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index ab25fd0808..ea66f135b6 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.15 1999/10/13 18:42:49 brianp Exp $ */ +/* $Id: context.c,v 1.16 1999/10/19 18:37:02 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -619,7 +619,6 @@ static void initialize_context( GLcontext *ctx ) ctx->Const.MaxTextureUnits = MAX_TEXTURE_UNITS; ctx->Const.MaxArrayLockSize = MAX_ARRAY_LOCK_SIZE; - /* Modelview matrix */ gl_matrix_ctr( &ctx->ModelView ); gl_matrix_alloc_inv( &ctx->ModelView ); |