diff options
author | Brian Paul <[email protected]> | 2003-09-18 23:21:08 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-09-18 23:21:08 +0000 |
commit | 29b4076f9acff96a867760fc885f5eaeb7586977 (patch) | |
tree | 8257664555bea58b6f9f2ebc4e3d0f2ddce719c3 /src/mesa/swrast/s_aatriangle.c | |
parent | 1a8ebb8c2f939609004a13b75d2b85236e709716 (diff) |
Move away from using the ctx->_TriangleCaps bitfield.
New macros in context.h for testing state: NEED_SECONDARY_COLOR
and NEED_TWO_SIDED_LIGHTING.
Diffstat (limited to 'src/mesa/swrast/s_aatriangle.c')
-rw-r--r-- | src/mesa/swrast/s_aatriangle.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/swrast/s_aatriangle.c b/src/mesa/swrast/s_aatriangle.c index 21b8c0437ef..7f2f3e338a4 100644 --- a/src/mesa/swrast/s_aatriangle.c +++ b/src/mesa/swrast/s_aatriangle.c @@ -464,7 +464,7 @@ _swrast_set_aa_triangle_function(GLcontext *ctx) ASSERT(ctx->Polygon.SmoothFlag); if (ctx->Texture._EnabledCoordUnits != 0) { - if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR) { + if (NEED_SECONDARY_COLOR(ctx)) { if (ctx->Texture._EnabledCoordUnits > 1) { SWRAST_CONTEXT(ctx)->Triangle = spec_multitex_aa_tri; } |