diff options
author | Keith Whitwell <[email protected]> | 2010-10-15 14:11:22 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-10-15 14:11:22 +0100 |
commit | 39185efd3a891b0d66b1ded10d165dd9aee94464 (patch) | |
tree | b7cecb5173aaa6a2789b37329793965046deab0d /src | |
parent | 392b0954c265fdd66b2de99ab677d2e662935682 (diff) |
llvmpipe: fix non-sse build after recent changes
Diffstat (limited to 'src')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_setup_coef.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup_coef.c b/src/gallium/drivers/llvmpipe/lp_setup_coef.c index a835df6af24..95d6615bb95 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup_coef.c +++ b/src/gallium/drivers/llvmpipe/lp_setup_coef.c @@ -145,12 +145,12 @@ setup_fragcoord_coef(struct lp_tri_info *info, /*Z*/ if (usage_mask & TGSI_WRITEMASK_Z) { - linear_coef(inputs, info, slot, 0, 2); + linear_coef(info, slot, 0, 2); } /*W*/ if (usage_mask & TGSI_WRITEMASK_W) { - linear_coef(inputs, info, slot, 0, 3); + linear_coef(info, slot, 0, 3); } } |