summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-04-14 12:27:25 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-04-14 12:27:25 +0100
commite106b2d3d65585b0aaa0e60afd541da020d9e220 (patch)
treec9f628bff8106a88a4140576df934afafcc72679 /src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c
parentcaf293343fd236e97ce399533ac0ada3c7afee7a (diff)
draw: move vertex header init out of fetch_shade_pipeline.c
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c')
-rw-r--r--src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c b/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c
index e7550fe328..fb9b2da5c0 100644
--- a/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c
+++ b/src/gallium/auxiliary/draw/draw_pt_fetch_shade_pipeline.c
@@ -159,15 +159,6 @@ static void fetch_pipeline_run( struct draw_pt_middle_end *middle,
return;
}
- /*FIXME: this init phase should go away */
- for (i = 0; i < fetch_count; ++i) {
- struct vertex_header *header =
- (struct vertex_header*)(pipeline_verts + (fpme->pipeline_vertex_size * i));
- header->clipmask = 0;
- header->edgeflag = draw_get_edgeflag(draw, i);
- header->pad = 0;
- header->vertex_id = UNDEFINED_VERTEX_ID;
- }
/* Shade
*/