diff options
author | Brian Paul <[email protected]> | 2002-10-08 23:59:33 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-10-08 23:59:33 +0000 |
commit | 59c5cf35c92e969f66eefd27809e72089b731701 (patch) | |
tree | 7b0abf04f0eeb0726f2e02458b527b4bea81cf86 /src/mesa/swrast | |
parent | 614301facaf7f9943270f227a5c6503b47871a90 (diff) |
finally get rid of ctx->Texture._ReallyEnabled field
Diffstat (limited to 'src/mesa/swrast')
-rw-r--r-- | src/mesa/swrast/s_drawpix.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mesa/swrast/s_drawpix.c b/src/mesa/swrast/s_drawpix.c index 1f3999f575e..1a681f85610 100644 --- a/src/mesa/swrast/s_drawpix.c +++ b/src/mesa/swrast/s_drawpix.c @@ -1,4 +1,4 @@ -/* $Id: s_drawpix.c,v 1.36 2002/08/07 00:45:07 brianp Exp $ */ +/* $Id: s_drawpix.c,v 1.37 2002/10/08 23:59:34 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -629,7 +629,7 @@ draw_depth_pixels( GLcontext *ctx, GLint x, GLint y, if (ctx->Fog.Enabled) _mesa_span_default_fog(ctx, &span); - if (ctx->Texture._ReallyEnabled) + if (ctx->Texture._EnabledUnits) _mesa_span_default_texcoords(ctx, &span); if (type==GL_UNSIGNED_SHORT && ctx->Visual.depthBits == 16 @@ -737,7 +737,7 @@ draw_rgba_pixels( GLcontext *ctx, GLint x, GLint y, _mesa_span_default_z(ctx, &span); if (ctx->Fog.Enabled) _mesa_span_default_fog(ctx, &span); - if (ctx->Texture._ReallyEnabled) + if (ctx->Texture._EnabledUnits) _mesa_span_default_texcoords(ctx, &span); if (SWRAST_CONTEXT(ctx)->_RasterMask == 0 && !zoom && x >= 0 && y >= 0 |