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:
committed by
Marge Bot
parent
5c71ffbc3d
commit
3678437ca0
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user