diff options
Diffstat (limited to 'src/mesa/swrast/s_tritemp.h')
-rw-r--r-- | src/mesa/swrast/s_tritemp.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_tritemp.h b/src/mesa/swrast/s_tritemp.h index 18749668961..bb6f822cbcf 100644 --- a/src/mesa/swrast/s_tritemp.h +++ b/src/mesa/swrast/s_tritemp.h @@ -1,4 +1,4 @@ -/* $Id: s_tritemp.h,v 1.48 2003/03/25 02:23:48 brianp Exp $ */ +/* $Id: s_tritemp.h,v 1.49 2003/04/08 02:27:18 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -86,7 +86,7 @@ { \ GLuint u; \ for (u = 0; u < ctx->Const.MaxTextureUnits; u++) { \ - if (ctx->Texture.Unit[u]._ReallyEnabled) { \ + if (ctx->Texture._EnabledCoordUnits & (1 << u)) { \ CODE \ } \ } \ |