From: Keith Whitwell Date: Tue, 22 Apr 2008 09:57:06 +0000 (+0100) Subject: softpipe: make NUM_ENTRIES 32 so that div/mods are easier X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=09b668615852eb28cb6289baf84faaf3b6ccc3c2;p=mesa.git softpipe: make NUM_ENTRIES 32 so that div/mods are easier --- diff --git a/src/gallium/drivers/softpipe/sp_tile_cache.c b/src/gallium/drivers/softpipe/sp_tile_cache.c index 19f71887e7e..edafd93d8b8 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 */