diff options
author | Keith Whitwell <[email protected]> | 2008-04-22 10:57:06 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2008-04-22 11:02:24 +0100 |
commit | 09b668615852eb28cb6289baf84faaf3b6ccc3c2 (patch) | |
tree | c5692c3d95d78fab531873077105b5831715ec3d /src | |
parent | 83fec372b45eb0af9e2d83549b3d92afb17c38af (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.c | 2 |
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 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 */ |