diff options
author | Brian Paul <[email protected]> | 2009-12-09 14:53:33 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-12-09 14:53:33 -0700 |
commit | d7dbc666367438ee9efe748505907b36bba6b66a (patch) | |
tree | e93804c614614af992b9a4c433575ee61ba60efa /src/gallium/drivers/llvmpipe/lp_setup_context.h | |
parent | ea35993e7479793212529b1db081c84aa71ea4cc (diff) |
llvmpipe: checkpoint: begin plugging in bin queue code
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_setup_context.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_setup_context.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_setup_context.h b/src/gallium/drivers/llvmpipe/lp_setup_context.h index 782c05122ca..584e37665bc 100644 --- a/src/gallium/drivers/llvmpipe/lp_setup_context.h +++ b/src/gallium/drivers/llvmpipe/lp_setup_context.h @@ -46,6 +46,9 @@ #define LP_SETUP_NEW_BLEND_COLOR 0x04 +struct lp_bins_queue; + + /** * Point/line/triangle setup context. * Note: "stored" below indicates data which is stored in the bins, @@ -55,7 +58,9 @@ struct setup_context { struct lp_rasterizer *rast; - struct lp_bins *bins; + + struct lp_bins *bins; /**< current bins */ + struct lp_bins_queue *empty_bins; /**< queue of empty bins */ boolean ccw_is_frontface; unsigned cullmode; |