diff options
author | Brian Paul <[email protected]> | 2002-06-06 16:31:24 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-06-06 16:31:24 +0000 |
commit | f21a4872e8218c0454107686a531eb0ff19c36bb (patch) | |
tree | c4abf135305b3b953fa7ed6f4f8a140bde9b3931 /src/mesa/main/state.c | |
parent | e0107e87a71ffcddc9400287ee675f0011cdc31b (diff) |
replaced hard-coded 4 with NUM_TEXTURE_TARGETS
Diffstat (limited to 'src/mesa/main/state.c')
-rw-r--r-- | src/mesa/main/state.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/main/state.c b/src/mesa/main/state.c index c513b4fccaf..d94c9c7337a 100644 --- a/src/mesa/main/state.c +++ b/src/mesa/main/state.c @@ -1,4 +1,4 @@ -/* $Id: state.c,v 1.83 2002/05/29 15:16:02 brianp Exp $ */ +/* $Id: state.c,v 1.84 2002/06/06 16:31:24 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -836,7 +836,7 @@ update_texture_state( GLcontext *ctx ) } { - GLuint flag = texUnit->_ReallyEnabled << (i * 4); + GLuint flag = texUnit->_ReallyEnabled << (i * NUM_TEXTURE_TARGETS); ctx->Texture._ReallyEnabled |= flag; } |