summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2008-04-22 10:57:06 +0100
committerKeith Whitwell <keith@tungstengraphics.com>2008-04-22 11:02:24 +0100
commit09b668615852eb28cb6289baf84faaf3b6ccc3c2 (patch)
treec5692c3d95d78fab531873077105b5831715ec3d /src
parent83fec372b45eb0af9e2d83549b3d92afb17c38af (diff)
softpipe: make NUM_ENTRIES 32 so that div/mods are easier
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/softpipe/sp_tile_cache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gallium/drivers/softpipe/sp_tile_cache.c b/src/gallium/drivers/softpipe/sp_tile_cache.c
index 19f71887e7..edafd93d8b 100644
--- a/src/gallium/drivers/softpipe/sp_tile_cache.c
+++ b/src/gallium/drivers/softpipe/sp_tile_cache.c
@@ -39,7 +39,7 @@
#include "sp_surface.h"
#include "sp_tile_cache.h"
-#define NUM_ENTRIES 30
+#define NUM_ENTRIES 32
/** XXX move these */