diff options
author | Brian Paul <[email protected]> | 2013-04-16 19:06:22 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2013-04-17 11:59:39 -0600 |
commit | 55b2033f0a4896a7930469711a052083c15edd3f (patch) | |
tree | 9442f593f4252c6d9791d8ea18eebcb73d1a5f76 /src/mesa/drivers/dri/r200 | |
parent | c1c5d689c5a8cc3ae72b81391be30f5296cc2993 (diff) |
mesa: remove DD_SEPARATE_SPECULAR flag
Reviewed-by: Eric Anholt <[email protected]>
Diffstat (limited to 'src/mesa/drivers/dri/r200')
-rw-r--r-- | src/mesa/drivers/dri/r200/r200_tcl.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/drivers/dri/r200/r200_tcl.c b/src/mesa/drivers/dri/r200/r200_tcl.c index f3cf34d275f..703840d5585 100644 --- a/src/mesa/drivers/dri/r200/r200_tcl.c +++ b/src/mesa/drivers/dri/r200/r200_tcl.c @@ -38,6 +38,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include "main/enums.h" #include "main/colormac.h" #include "main/light.h" +#include "main/state.h" #include "vbo/vbo.h" #include "tnl/tnl.h" @@ -402,7 +403,7 @@ static GLboolean r200_run_tcl_render( struct gl_context *ctx, FIXME: OTOH, we're missing the case where a ATI_fragment_shader accesses the secondary color (if lighting is disabled). The chip seems misconfigured for that though elsewhere (tcl output, might lock up) */ - if (ctx->_TriangleCaps & DD_SEPARATE_SPECULAR) { + if (_mesa_need_secondary_color(ctx)) { map_rev_fixed[5] = VERT_ATTRIB_COLOR1; } |