Mesa (master): llvmpipe: fix non-sse build after recent changes

Keith Whitwell keithw at kemper.freedesktop.org
Fri Oct 15 13:11:36 UTC 2010


Module: Mesa
Branch: master
Commit: 39185efd3a891b0d66b1ded10d165dd9aee94464
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=39185efd3a891b0d66b1ded10d165dd9aee94464

Author: Keith Whitwell <keithw at vmware.com>
Date:   Fri Oct 15 14:11:22 2010 +0100

llvmpipe: fix non-sse build after recent changes

---

 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 a835df6..95d6615 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);
    }
 }
 




More information about the mesa-commit mailing list