diff options
author | Keith Whitwell <[email protected]> | 2010-10-12 11:51:28 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2010-10-12 11:52:39 +0100 |
commit | b4277bc5843aca7f9e0ecc7e956733f1becd6ad6 (patch) | |
tree | 86b2c997a6f71c9cf7202143048602402690f921 /src/gallium/drivers/llvmpipe | |
parent | 9773722c2b09d5f0615a47cecf4347859474dc56 (diff) |
llvmpipe: fix typo in last commit
Diffstat (limited to 'src/gallium/drivers/llvmpipe')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_rast_tri.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast_tri.c b/src/gallium/drivers/llvmpipe/lp_rast_tri.c index 7a6cbb8b63c..854fd5cc1e8 100644 --- 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); |