diff options
author | Brian Paul <brian.paul@tungstengraphics.com> | 2000-09-28 22:44:30 +0000 |
---|---|---|
committer | Brian Paul <brian.paul@tungstengraphics.com> | 2000-09-28 22:44:30 +0000 |
commit | eb6c6439ae23e47b79b72f3737b6d0d14e1f9f26 (patch) | |
tree | 186e670bf1fac283352770d96e27576ff1c8d074 /src/mesa/main/context.c | |
parent | 37a6211795cfd0a4431bdb7c676acf54f29df994 (diff) |
removed ctx->Texture.Enabled, use ctx->Texture.ReallyEnabled instead
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 a66bb13972..018e709d90 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.90 2000/09/26 20:53:53 brianp Exp $ */ +/* $Id: context.c,v 1.91 2000/09/28 22:44:30 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1178,7 +1178,6 @@ init_attrib_groups( GLcontext *ctx ) /* Texture group */ ctx->Texture.CurrentUnit = 0; /* multitexture */ ctx->Texture.CurrentTransformUnit = 0; /* multitexture */ - ctx->Texture.Enabled = 0; ctx->Texture.ReallyEnabled = 0; for (i=0; i<MAX_TEXTURE_UNITS; i++) init_texture_unit( ctx, i ); |