Mesa (master): llvmpipe: fix a crash in non-SSE path

Chia-I Wu olv at kemper.freedesktop.org
Sun Oct 30 12:14:30 UTC 2011


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

Author: Chia-I Wu <olv at lunarg.com>
Date:   Fri Sep 23 11:40:49 2011 +0800

llvmpipe: fix a crash in non-SSE path

It is a typo went unnoticed.

---

 src/gallium/drivers/llvmpipe/lp_rast_tri.c |    2 +-
 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 3adfbaa..71d0ddf 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




More information about the mesa-commit mailing list