radv: bump maxImageDimension3D to 8192 on GFX10+

This was missing and it aligns to VkImageFormatProperties.

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/37974>
This commit is contained in:
Samuel Pitoiset
2025-10-21 08:41:42 +02:00
committed by Marge Bot
parent 5c71ffbc3d
commit 3678437ca0
+1 -1
View File
@@ -1516,7 +1516,7 @@ radv_get_physical_device_properties(struct radv_physical_device *pdev)
.deviceType = device_type,
.maxImageDimension1D = (1 << 14),
.maxImageDimension2D = (1 << 14),
.maxImageDimension3D = (1 << 11),
.maxImageDimension3D = pdev->info.gfx_level >= GFX10 ? (1 << 13) : (1 << 11),
.maxImageDimensionCube = (1 << 14),
.maxImageArrayLayers = pdev->info.gfx_level >= GFX10 ? (1 << 13) : (1 << 11),
.maxTexelBufferElements = UINT32_MAX,