projects
/
mesa.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9cf5e81
)
draw: run the pipeline with the correct number of verts
author
Zack Rusin
<zackr@vmware.com>
Tue, 15 Jun 2010 13:11:10 +0000
(09:11 -0400)
committer
Zack Rusin
<zackr@vmware.com>
Tue, 15 Jun 2010 13:12:20 +0000
(09:12 -0400)
verts per primitive, not total count
src/gallium/auxiliary/draw/draw_pipe.c
patch
|
blob
|
history
diff --git
a/src/gallium/auxiliary/draw/draw_pipe.c
b/src/gallium/auxiliary/draw/draw_pipe.c
index 5cc2a7521a8ab60116ba15a61cc718651fceac3a..83556f10a8b3fb8749e29003f0d588a7a52aa1ae 100644
(file)
--- a/
src/gallium/auxiliary/draw/draw_pipe.c
+++ b/
src/gallium/auxiliary/draw/draw_pipe.c
@@
-382,7
+382,7
@@
void draw_pipeline_run_linear( struct draw_context *draw,
prim_info->prim,
(struct vertex_header*)verts,
vert_info->stride,
-
vert_info->
count);
+ count);
}
draw->pipeline.verts = NULL;