aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium
diff options
context:
space:
mode:
authorChia-I Wu <[email protected]>2011-09-23 11:40:49 +0800
committerChia-I Wu <[email protected]>2011-10-30 20:05:05 +0800
commite252af3406e46fab713b43d0d38f22ccecf2ebeb (patch)
tree8db972305c488cc678db768e150206cad4e2cca5 /src/gallium
parentd1d456a774eedc4ebe968070626488cd85535a78 (diff)
llvmpipe: fix a crash in non-SSE path
It is a typo went unnoticed.
Diffstat (limited to 'src/gallium')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_rast_tri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast_tri.c b/src/gallium/drivers/llvmpipe/lp_rast_tri.c
index 3adfbaacd35..71d0ddf5e75 100644
--- a/src/gallium/drivers/llvmpipe/lp_rast_tri.c
+++ b/src/gallium/drivers/llvmpipe/lp_rast_tri.c
@@ -129,7 +129,7 @@ lp_rast_triangle_4_16(struct lp_rasterizer_task *task,
union lp_rast_cmd_arg arg2;
arg2.triangle.tri = arg.triangle.tri;
arg2.triangle.plane_mask = (1<<4)-1;
- lp_rast_triangle_3(task, arg2);
+ lp_rast_triangle_4(task, arg2);
}
void