projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
392b095
)
llvmpipe: fix non-sse build after recent changes
author
Keith Whitwell
<keithw@vmware.com>
Fri, 15 Oct 2010 13:11:22 +0000
(14:11 +0100)
committer
Keith Whitwell
<keithw@vmware.com>
Fri, 15 Oct 2010 13:11:22 +0000
(14:11 +0100)
src/gallium/drivers/llvmpipe/lp_setup_coef.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/llvmpipe/lp_setup_coef.c
b/src/gallium/drivers/llvmpipe/lp_setup_coef.c
index a835df6af24b04f9e23fe9553c8945f4a5c7f32f..95d6615bb959abf836d502f7942c23c08c3024ff 100644
(file)
--- 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(in
puts, in
fo, slot, 0, 2);
+ linear_coef(info, slot, 0, 2);
}
/*W*/
if (usage_mask & TGSI_WRITEMASK_W) {
- linear_coef(in
puts, in
fo, slot, 0, 3);
+ linear_coef(info, slot, 0, 3);
}
}