diff options
author | Brian Paul <[email protected]> | 2010-04-16 09:49:52 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2010-04-16 09:49:52 -0600 |
commit | ce4f4d6b2c4164973c426068d03d7ea48559ecc2 (patch) | |
tree | b964103cfb3af7a6b98cd4bf024096d7022db46b /src/gallium/drivers/llvmpipe/lp_context.c | |
parent | 9fae289fcd098027952c6b586292214ec586a2ec (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.c | 1 |
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 e63720c99ab..868e112ba3f 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); |