diff options
author | Brian Paul <[email protected]> | 2009-09-22 15:35:05 -0600 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-09-23 10:46:27 -0600 |
commit | 84b956c29be7eb547130974df9ceb3d2f3354526 (patch) | |
tree | 5be3c83ff2c8563ead2d7714f57a01a4ffe6d36c /src/gallium | |
parent | 926b965ed53efc06a9d7cc6e07eff853b263960a (diff) |
softpipe: increase MAX_WIDTH/HEIGTH 4096 to match max texture size
Diffstat (limited to 'src/gallium')
-rw-r--r-- | src/gallium/drivers/softpipe/sp_tile_cache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/softpipe/sp_tile_cache.c b/src/gallium/drivers/softpipe/sp_tile_cache.c index 1f9b8f1f4fb..a524275a71c 100644 --- a/src/gallium/drivers/softpipe/sp_tile_cache.c +++ b/src/gallium/drivers/softpipe/sp_tile_cache.c @@ -44,8 +44,8 @@ /** XXX move these */ -#define MAX_WIDTH 2048 -#define MAX_HEIGHT 2048 +#define MAX_WIDTH 4096 +#define MAX_HEIGHT 4096 struct softpipe_tile_cache |