summaryrefslogtreecommitdiff
path: root/src/gallium/auxiliary/draw/draw_pipe_stipple.c
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-04-28 14:50:05 +0100
committerKeith Whitwell <keithw@vmware.com>2009-04-28 18:15:17 +0100
commiteb979cef8535914f428d2462e78f713da558fc18 (patch)
tree9f02dfbaa7492c2214e9d4c000952387f4e8b98b /src/gallium/auxiliary/draw/draw_pipe_stipple.c
parentafc0c59dbd7f89d914763fd78701461f22c00450 (diff)
gallium/draw: add ability to print out active pipeline stages
Diffstat (limited to 'src/gallium/auxiliary/draw/draw_pipe_stipple.c')
-rw-r--r--src/gallium/auxiliary/draw/draw_pipe_stipple.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/draw/draw_pipe_stipple.c b/src/gallium/auxiliary/draw/draw_pipe_stipple.c
index b65e2aa102..6e921bac27 100644
--- a/src/gallium/auxiliary/draw/draw_pipe_stipple.c
+++ b/src/gallium/auxiliary/draw/draw_pipe_stipple.c
@@ -238,6 +238,7 @@ struct draw_stage *draw_stipple_stage( struct draw_context *draw )
draw_alloc_temp_verts( &stipple->stage, 2 );
stipple->stage.draw = draw;
+ stipple->stage.name = "stipple";
stipple->stage.next = NULL;
stipple->stage.point = stipple_reset_point;
stipple->stage.line = stipple_first_line;