llvmpipe: fix non-sse build after recent changes
authorKeith Whitwell <keithw@vmware.com>
Fri, 15 Oct 2010 13:11:22 +0000 (14:11 +0100)
committerKeith Whitwell <keithw@vmware.com>
Fri, 15 Oct 2010 13:11:22 +0000 (14:11 +0100)
src/gallium/drivers/llvmpipe/lp_setup_coef.c

index a835df6af24b04f9e23fe9553c8945f4a5c7f32f..95d6615bb959abf836d502f7942c23c08c3024ff 100644 (file)
@@ -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);
    }
 }