draw: run the pipeline with the correct number of verts

verts per primitive, not total count
This commit is contained in:
Zack Rusin
2010-06-15 09:11:10 -04:00
parent 9cf5e814b9
commit bf577393c7
+1 -1
View File
@@ -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;