diff options
author | Stéphane Marchesin <[email protected]> | 2011-12-28 17:34:56 -0800 |
---|---|---|
committer | Stéphane Marchesin <[email protected]> | 2011-12-29 12:28:44 -0800 |
commit | ded02bd54b5925ee222d7f426850312236b4f59d (patch) | |
tree | c38e1e490111065a045a997f52a026df1af423b8 /src/gallium | |
parent | 747f0307626ef5bcf2f889ab66bcc95ab8eda2c8 (diff) |
llvmpipe: Remove useless draw_install_pstipple_stage call.
It is #ifdef'd out, and is already called unconditionnaly a couple lines above.
Reviewed-By: Jose Fonseca <[email protected]>
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_context.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_context.c b/src/gallium/drivers/llvmpipe/lp_context.c index b6ac068f027..c19272fdac6 100644 --- a/src/gallium/drivers/llvmpipe/lp_context.c +++ b/src/gallium/drivers/llvmpipe/lp_context.c @@ -229,11 +229,6 @@ llvmpipe_create_context( struct pipe_screen *screen, void *priv ) draw_wide_point_threshold(llvmpipe->draw, 10000.0); draw_wide_line_threshold(llvmpipe->draw, 10000.0); -#if USE_DRAW_STAGE_PSTIPPLE - /* Do polygon stipple w/ texture map + frag prog? */ - draw_install_pstipple_stage(llvmpipe->draw, &llvmpipe->pipe); -#endif - lp_reset_counters(); gallivm_register_garbage_collector_callback(garbage_collect_callback, |