summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_rast_priv.h
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-10-20 09:44:23 +0100
committerKeith Whitwell <keithw@vmware.com>2009-10-20 09:44:23 +0100
commit3199c6e764c20c69a76c561b9f4b89a23e5a97f5 (patch)
tree9c47f8a2d2c0b30a47c8eefba88501a05ed7a0d1 /src/gallium/drivers/llvmpipe/lp_rast_priv.h
parent8d752a20c6f70b442ac2210cce0fd001499be5f6 (diff)
llvmpipe: move block list into rast struct
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_rast_priv.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_rast_priv.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_rast_priv.h b/src/gallium/drivers/llvmpipe/lp_rast_priv.h
index 2333729807..323c046cf4 100644
--- a/src/gallium/drivers/llvmpipe/lp_rast_priv.h
+++ b/src/gallium/drivers/llvmpipe/lp_rast_priv.h
@@ -74,6 +74,13 @@ struct lp_rasterizer {
unsigned clear_depth;
char clear_stencil;
} state;
+
+ int nr_blocks;
+ struct {
+ unsigned x;
+ unsigned y;
+ unsigned mask;
+ } blocks[256];
};