From ce4f4d6b2c4164973c426068d03d7ea48559ecc2 Mon Sep 17 00:00:00 2001 From: Brian Paul Date: Fri, 16 Apr 2010 09:49:52 -0600 Subject: llvmpipe: plug in draw's polygon stipple stage --- src/gallium/drivers/llvmpipe/lp_context.c | 1 + 1 file changed, 1 insertion(+) 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); -- cgit v1.2.3