diff options
author | Keith Whitwell <[email protected]> | 2009-09-22 19:38:34 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-09-22 19:38:34 +0100 |
commit | b1139e9ad827d86886772a9c9d83dbb0071c702c (patch) | |
tree | a009d02a6ef1e04249afeab19c09e50fa6e667d5 /src/gallium | |
parent | b626176f0613852df908b4b0552b9b67d5830b4e (diff) |
softpipe: fix polygon stipple
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.c | 2 |
1 files changed, 0 insertions, 2 deletions
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); |