From: José Fonseca Date: Wed, 2 Jun 2010 19:09:02 +0000 (+0100) Subject: llvmpipe: Fix bad logic. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=a33b5ef7d02a45bda106065e7c927358b04fe289;p=mesa.git llvmpipe: Fix bad logic. Courtesy of Vinson and coverity. --- diff --git a/src/gallium/drivers/llvmpipe/lp_bld_interp.c b/src/gallium/drivers/llvmpipe/lp_bld_interp.c index 957866e489c..90d2b26f9f2 100644 --- a/src/gallium/drivers/llvmpipe/lp_bld_interp.c +++ b/src/gallium/drivers/llvmpipe/lp_bld_interp.c @@ -262,7 +262,7 @@ attribs_update(struct lp_build_interp_soa_context *bld, int quad_index) for(chan = 0; chan < NUM_CHANNELS; ++chan) { if(mask & (1 << chan)) { LLVMValueRef a = coeff_bld->undef; - if (interp == LP_INTERP_CONSTANT && + if (interp == LP_INTERP_CONSTANT || interp == LP_INTERP_FACING) { a = bld->a[attrib][chan]; }