summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/llvmpipe/lp_tile_soa.h
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-10-21 15:21:11 +0100
committerKeith Whitwell <keithw@vmware.com>2009-10-21 15:21:11 +0100
commit694f05ac18c54253910678709f2dd35c36f1e912 (patch)
treeb31c2342f3985ce6e7fea13cda7d5199ab847b1d /src/gallium/drivers/llvmpipe/lp_tile_soa.h
parent341edde1d2e9f9f989d41869cc436b51942941e4 (diff)
llvmpipe: remove one of two definitions of TILESIZE
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_tile_soa.h')
-rw-r--r--src/gallium/drivers/llvmpipe/lp_tile_soa.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_tile_soa.h b/src/gallium/drivers/llvmpipe/lp_tile_soa.h
index d72d6d2ef1..0e874ce451 100644
--- a/src/gallium/drivers/llvmpipe/lp_tile_soa.h
+++ b/src/gallium/drivers/llvmpipe/lp_tile_soa.h
@@ -43,7 +43,8 @@ struct pipe_transfer;
/**
* Cache tile size (width and height). This needs to be a power of two.
*/
-#define TILE_SIZE 64
+#define TILE_ORDER 6
+#define TILE_SIZE (1<<TILE_ORDER)
#define TILE_VECTOR_HEIGHT 4