diff options
author | Keith Whitwell <[email protected]> | 2009-07-24 16:12:48 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-07-24 16:12:48 +0100 |
commit | 6153a1c28f118be1a74ffee0e19c16fb83b5cab7 (patch) | |
tree | 118c0177df6cb955582f6d288ea150fd02b26135 /src/gallium/drivers/softpipe/sp_context.h | |
parent | 93a026d4baf90266f4c9cc48d039b4d65ce1ab6d (diff) |
softpipe: rip out old mulithread support
Diffstat (limited to 'src/gallium/drivers/softpipe/sp_context.h')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_context.h | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/src/gallium/drivers/softpipe/sp_context.h b/src/gallium/drivers/softpipe/sp_context.h index f66f0b7849d..414d903a376 100644 --- a/src/gallium/drivers/softpipe/sp_context.h +++ b/src/gallium/drivers/softpipe/sp_context.h @@ -39,17 +39,6 @@ #include "sp_tex_sample.h" -/** - * This is a temporary variable for testing draw-stage polygon stipple. - * If zero, do stipple in sp_quad_stipple.c - */ -#define USE_DRAW_STAGE_PSTIPPLE 1 - -/* Number of threads working on individual quads. - * Setting to 1 disables this feature. - */ -#define SP_NUM_QUAD_THREADS 1 - struct softpipe_vbuf_render; struct draw_context; struct draw_stage; @@ -129,7 +118,7 @@ struct softpipe_context { struct quad_stage *output; struct quad_stage *first; /**< points to one of the above stages */ - } quad[SP_NUM_QUAD_THREADS]; + } quad; /** TGSI exec things */ struct { |