Module: Mesa Branch: master Commit: 6b5575baaa16563f1ea1ad1821254ce6c412283f URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=6b5575baaa16563f1ea1ad1821254ce6c412283f
Author: José Fonseca <[email protected]> Date: Mon Sep 13 20:43:36 2010 +0100 llvmpipe: Fix non SSE2 builds. Should fix fdo 30168. --- 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 ee5cd71..a1f309d 100644 --- a/src/gallium/drivers/llvmpipe/lp_rast_tri.c +++ b/src/gallium/drivers/llvmpipe/lp_rast_tri.c @@ -117,8 +117,8 @@ lp_rast_triangle_3_16(struct lp_rasterizer_task *task, const union lp_rast_cmd_arg arg) { union lp_rast_cmd_arg arg2; - arg2.tri = arg.tri; - arg2.mask = (1<<3)-1; + arg2.triangle.tri = arg.triangle.tri; + arg2.triangle.plane_mask = (1<<3)-1; lp_rast_triangle_3(task, arg2); } _______________________________________________ mesa-commit mailing list [email protected] http://lists.freedesktop.org/mailman/listinfo/mesa-commit
