summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_context.c
diff options
context:
space:
mode:
authorBrian Paul <brianp@vmware.com>2010-04-16 09:49:52 -0600
committerBrian Paul <brianp@vmware.com>2010-04-16 09:49:52 -0600
commitce4f4d6b2c4164973c426068d03d7ea48559ecc2 (patch)
treeb964103cfb3af7a6b98cd4bf024096d7022db46b /src/gallium/drivers/llvmpipe/lp_context.c
parent9fae289fcd098027952c6b586292214ec586a2ec (diff)
llvmpipe: plug in draw's polygon stipple stage
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_context.c')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_context.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_context.c b/src/gallium/drivers/llvmpipe/lp_context.c
index e63720c99a..868e112ba3 100644
--- a/src/gallium/drivers/llvmpipe/lp_context.c
+++ b/src/gallium/drivers/llvmpipe/lp_context.c
@@ -183,6 +183,7 @@ llvmpipe_create_context( struct pipe_screen *screen, void *priv )
/* plug in AA line/point stages */
draw_install_aaline_stage(llvmpipe->draw, &llvmpipe->pipe);
draw_install_aapoint_stage(llvmpipe->draw, &llvmpipe->pipe);
+ draw_install_pstipple_stage(llvmpipe->draw, &llvmpipe->pipe);
/* convert points and lines into triangles: */
draw_wide_point_threshold(llvmpipe->draw, 0.0);