projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d1d456a
)
llvmpipe: fix a crash in non-SSE path
author
Chia-I Wu
<olv@lunarg.com>
Fri, 23 Sep 2011 03:40:49 +0000
(11:40 +0800)
committer
Chia-I Wu
<olvaffe@gmail.com>
Sun, 30 Oct 2011 12:05:05 +0000
(20:05 +0800)
It is a typo went unnoticed.
src/gallium/drivers/llvmpipe/lp_rast_tri.c
patch
|
blob
|
history
diff --git
a/src/gallium/drivers/llvmpipe/lp_rast_tri.c
b/src/gallium/drivers/llvmpipe/lp_rast_tri.c
index 3adfbaacd3505bad4fd654a3a169fb566c7e5cfe..71d0ddf5e7529bbed16e6462afaf33536d89ff3f 100644
(file)
--- 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