summaryrefslogtreecommitdiffstats
path: root/src/intel/vulkan
diff options
context:
space:
mode:
authorNanley Chery <nanley.g.chery@intel.com>2016-03-05 15:17:00 -0800
committerNanley Chery <nanley.g.chery@intel.com>2016-03-07 15:21:50 -0800
commit181b142fbd176f24a73cabf209000a9187f275e8 (patch)
tree8012d4ac3ade7604135bcd484c6bfa6f98597b2b /src/intel/vulkan
parent428ffc9c13c24c30c317c2e985b9097956c583b0 (diff)
downloadexternal_mesa3d-181b142fbd176f24a73cabf209000a9187f275e8.zip
external_mesa3d-181b142fbd176f24a73cabf209000a9187f275e8.tar.gz
external_mesa3d-181b142fbd176f24a73cabf209000a9187f275e8.tar.bz2
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 <nanley.g.chery@intel.com> Reviewed-by: Anuj Phogat <anuj.phogat@gmail.com>
Diffstat (limited to 'src/intel/vulkan')
-rw-r--r--src/intel/vulkan/anv_device.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/intel/vulkan/anv_device.c b/src/intel/vulkan/anv_device.c
index 816f780..44eb0ed 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,