gallium: passthrough tri, not point
authorBrian Paul <brian.paul@tungstengraphics.com>
Wed, 23 Apr 2008 18:11:00 +0000 (12:11 -0600)
committerBrian Paul <brian.paul@tungstengraphics.com>
Wed, 23 Apr 2008 18:13:12 +0000 (12:13 -0600)
src/gallium/auxiliary/draw/draw_pipe_wide_line.c

index 452732e..878c9c7 100644 (file)
@@ -169,7 +169,7 @@ struct draw_stage *draw_wide_line_stage( struct draw_context *draw )
    wide->stage.next = NULL;
    wide->stage.point = draw_pipe_passthrough_point;
    wide->stage.line = wideline_line;
-   wide->stage.tri = draw_pipe_passthrough_point;
+   wide->stage.tri = draw_pipe_passthrough_tri;
    wide->stage.flush = wideline_flush;
    wide->stage.reset_stipple_counter = wideline_reset_stipple_counter;
    wide->stage.destroy = wideline_destroy;