diff options
author | Brian Paul <[email protected]> | 2001-06-12 22:08:41 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2001-06-12 22:08:41 +0000 |
commit | ae47121fa336f53c5ab51df3dc699db018feff18 (patch) | |
tree | db08af54d76e009442077e0f8450f052f7fafc80 /src/mesa/main/context.c | |
parent | 1676268eab04523fe4fe325d39d427fc098e52a5 (diff) |
removed old, redundant CurrentTransformUnit state var
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 49146ce079d..9da1526535e 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.141 2001/06/05 23:54:00 davem69 Exp $ */ +/* $Id: context.c,v 1.142 2001/06/12 22:08:41 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1128,7 +1128,6 @@ init_attrib_groups( GLcontext *ctx ) /* Texture group */ ctx->Texture.CurrentUnit = 0; /* multitexture */ - ctx->Texture.CurrentTransformUnit = 0; /* multitexture */ ctx->Texture._ReallyEnabled = 0; for (i=0; i<MAX_TEXTURE_UNITS; i++) init_texture_unit( ctx, i ); |