diff options
author | Keith Whitwell <[email protected]> | 2009-07-24 16:12:48 +0100 |
---|---|---|
committer | José Fonseca <[email protected]> | 2009-08-29 09:21:18 +0100 |
commit | 4486012245c5f526059d3872ac3561f53705d1cf (patch) | |
tree | fde6416c1398ca159e6f2be4dbad81f3655e1872 /src/gallium/drivers/llvmpipe/lp_context.h | |
parent | 2a7c39a21102f1c373f7415985ee8f31be4da40a (diff) |
llvmpipe: rip out old mulithread support
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_context.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_context.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_context.h b/src/gallium/drivers/llvmpipe/lp_context.h index ab88401c605..c43ea8bab62 100644 --- a/src/gallium/drivers/llvmpipe/lp_context.h +++ b/src/gallium/drivers/llvmpipe/lp_context.h @@ -39,17 +39,6 @@ #include "lp_tex_sample.h" -/** - * This is a temporary variable for testing draw-stage polygon stipple. - * If zero, do stipple in lp_quad_stipple.c - */ -#define USE_DRAW_STAGE_PSTIPPLE 1 - -/* Number of threads working on individual quads. - * Setting to 1 disables this feature. - */ -#define LP_NUM_QUAD_THREADS 1 - struct llvmpipe_vbuf_render; struct draw_context; struct draw_stage; @@ -129,7 +118,7 @@ struct llvmpipe_context { struct quad_stage *output; struct quad_stage *first; /**< points to one of the above stages */ - } quad[LP_NUM_QUAD_THREADS]; + } quad; /** TGSI exec things */ struct { |