OSDN Git Service

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