projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9773722
)
llvmpipe: fix typo in last commit
author
Keith Whitwell
<keithw@vmware.com>
Tue, 12 Oct 2010 10:51:28 +0000
(11:51 +0100)
committer
Keith Whitwell
<keithw@vmware.com>
Tue, 12 Oct 2010 10:52:39 +0000
(11:52 +0100)
src/gallium/drivers/llvmpipe/lp_rast_tri.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/llvmpipe/lp_rast_tri.c
b/src/gallium/drivers/llvmpipe/lp_rast_tri.c
index 7a6cbb8b63c1cea22e8b166cae11c01441786034..854fd5cc1e83812afecc29737d39c2e7603326e4 100644
(file)
--- a/
src/gallium/drivers/llvmpipe/lp_rast_tri.c
+++ b/
src/gallium/drivers/llvmpipe/lp_rast_tri.c
@@
-491,8
+491,8
@@
lp_rast_triangle_3_4(struct lp_rasterizer_task *task,
*/
dcdx = _mm_sub_epi32(zero, dcdx);
- c = _mm_add_epi32(c,
_
mm_mullo_epi32(dcdx, _mm_set1_epi32(x)));
- c = _mm_add_epi32(c,
_
mm_mullo_epi32(dcdy, _mm_set1_epi32(y)));
+ c = _mm_add_epi32(c, mm_mullo_epi32(dcdx, _mm_set1_epi32(x)));
+ c = _mm_add_epi32(c, mm_mullo_epi32(dcdy, _mm_set1_epi32(y)));
dcdx2 = _mm_add_epi32(dcdx, dcdx);
dcdx3 = _mm_add_epi32(dcdx2, dcdx);