From: Nanley Chery Date: Sat, 5 Mar 2016 23:17:00 +0000 (-0800) Subject: anv/device: Up device limits for 3D and array texture dimensions X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=181b142fbd176f24a73cabf209000a9187f275e8;p=mesa.git anv/device: Up device limits for 3D and array texture dimensions The limit for these textures is 2048 not 1024. Signed-off-by: Nanley Chery Reviewed-by: Anuj Phogat --- diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c index 816f780c6ff..44eb0ed2d6c 100644 --- a/src/intel/vulkan/anv_device.c +++ b/src/intel/vulkan/anv_device.c @@ -421,9 +421,9 @@ void anv_GetPhysicalDeviceProperties( VkPhysicalDeviceLimits limits = { .maxImageDimension1D = (1 << 14), .maxImageDimension2D = (1 << 14), - .maxImageDimension3D = (1 << 10), + .maxImageDimension3D = (1 << 11), .maxImageDimensionCube = (1 << 14), - .maxImageArrayLayers = (1 << 10), + .maxImageArrayLayers = (1 << 11), .maxTexelBufferElements = 128 * 1024 * 1024, .maxUniformBufferRange = UINT32_MAX, .maxStorageBufferRange = UINT32_MAX,