diff options
Diffstat (limited to 'src/gallium/drivers/llvmpipe/lp_limits.h')
-rw-r--r-- | src/gallium/drivers/llvmpipe/lp_limits.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gallium/drivers/llvmpipe/lp_limits.h b/src/gallium/drivers/llvmpipe/lp_limits.h index 8ce15c33028..1b8a37e2bb0 100644 --- a/src/gallium/drivers/llvmpipe/lp_limits.h +++ b/src/gallium/drivers/llvmpipe/lp_limits.h @@ -48,10 +48,10 @@ * llvm GEP as well as avx2 gather use signed offsets). */ #define LP_MAX_TEXTURE_SIZE (2 * 1024 * 1024 * 1024ULL) -#define LP_MAX_TEXTURE_2D_LEVELS 14 /* 8K x 8K for now */ +#define LP_MAX_TEXTURE_2D_LEVELS 15 /* 16K x 16K for now */ #define LP_MAX_TEXTURE_3D_LEVELS 12 /* 2K x 2K x 2K for now */ -#define LP_MAX_TEXTURE_CUBE_LEVELS 14 /* 8K x 8K for now */ -#define LP_MAX_TEXTURE_ARRAY_LAYERS 512 /* 8K x 512 / 8K x 8K x 512 */ +#define LP_MAX_TEXTURE_CUBE_LEVELS 15 /* 16K x 16K for now */ +#define LP_MAX_TEXTURE_ARRAY_LAYERS 2048 /* 16K x 2048 / 16K x 16K x 2048 */ /** This must be the larger of LP_MAX_TEXTURE_2D/3D_LEVELS */ |