diff options
author | Keith Whitwell <[email protected]> | 2001-05-17 09:32:17 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2001-05-17 09:32:17 +0000 |
commit | 89dae684aa1d74b06a4f70cb76b33671d0cef9e6 (patch) | |
tree | 9b42d5eb082a5f37920af04048cd6b8a7f20749c /src/mesa/swrast/s_triangle.c | |
parent | 47cf442c1164b6b406117fccfb8b564602741ee3 (diff) |
Fix order of decomposition of quad.
Remove 'swrast->_MultiTexEnabled' derived value.
Diffstat (limited to 'src/mesa/swrast/s_triangle.c')
-rw-r--r-- | src/mesa/swrast/s_triangle.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/swrast/s_triangle.c b/src/mesa/swrast/s_triangle.c index 2c117b869cb..1063d316e78 100644 --- a/src/mesa/swrast/s_triangle.c +++ b/src/mesa/swrast/s_triangle.c @@ -1,4 +1,4 @@ -/* $Id: s_triangle.c,v 1.28 2001/05/16 20:27:12 brianp Exp $ */ +/* $Id: s_triangle.c,v 1.29 2001/05/17 09:32:17 keithw Exp $ */ /* * Mesa 3-D graphics library @@ -2377,7 +2377,7 @@ _swrast_choose_triangle( GLcontext *ctx ) needLambda = GL_TRUE; else needLambda = GL_FALSE; - if (swrast->_MultiTextureEnabled) { + if (ctx->Texture._ReallyEnabled > TEXTURE0_ANY) { USE(lambda_multitextured_triangle); } else if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR) { |