llvmpipe: fix typo in last commit
authorKeith Whitwell <keithw@vmware.com>
Tue, 12 Oct 2010 10:51:28 +0000 (11:51 +0100)
committerKeith Whitwell <keithw@vmware.com>
Tue, 12 Oct 2010 10:52:39 +0000 (11:52 +0100)
src/gallium/drivers/llvmpipe/lp_rast_tri.c

index 7a6cbb8b63c1cea22e8b166cae11c01441786034..854fd5cc1e83812afecc29737d39c2e7603326e4 100644 (file)
@@ -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);