From: Keith Whitwell Date: Tue, 22 Sep 2009 18:38:34 +0000 (+0100) Subject: softpipe: fix polygon stipple X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b1139e9ad827d86886772a9c9d83dbb0071c702c;p=mesa.git softpipe: fix polygon stipple --- diff --git a/src/gallium/drivers/softpipe/sp_context.c b/src/gallium/drivers/softpipe/sp_context.c index 6b75ee60023..c4b8b33c6a2 100644 --- a/src/gallium/drivers/softpipe/sp_context.c +++ b/src/gallium/drivers/softpipe/sp_context.c @@ -262,10 +262,8 @@ softpipe_create( struct pipe_screen *screen ) draw_install_aaline_stage(softpipe->draw, &softpipe->pipe); draw_install_aapoint_stage(softpipe->draw, &softpipe->pipe); -#if USE_DRAW_STAGE_PSTIPPLE /* Do polygon stipple w/ texture map + frag prog? */ draw_install_pstipple_stage(softpipe->draw, &softpipe->pipe); -#endif sp_init_surface_functions(softpipe);