Mesa (master): llvmpipe: fix typo in last commit

Keith Whitwell keithw at kemper.freedesktop.org
Tue Oct 12 10:52:51 UTC 2010


Module: Mesa
Branch: master
Commit: b4277bc5843aca7f9e0ecc7e956733f1becd6ad6
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=b4277bc5843aca7f9e0ecc7e956733f1becd6ad6

Author: Keith Whitwell <keithw at vmware.com>
Date:   Tue Oct 12 11:51:28 2010 +0100

llvmpipe: fix typo in last commit

---

 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 7a6cbb8..854fd5c 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);




More information about the mesa-commit mailing list