From: Bas Nieuwenhuizen Date: Tue, 28 Apr 2020 15:04:25 +0000 (+0200) Subject: radv: Expose 4G element texel buffers. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9248b045287658884456b2c77b652a9d8c862719;p=mesa.git radv: Expose 4G element texel buffers. Old value seems to be copied from anv. Reviewed-by: Samuel Pitoiset Part-of: --- diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index ccd21acea26..10571531621 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -1295,7 +1295,7 @@ void radv_GetPhysicalDeviceProperties( .maxImageDimension3D = (1 << 11), .maxImageDimensionCube = (1 << 14), .maxImageArrayLayers = (1 << 11), - .maxTexelBufferElements = 128 * 1024 * 1024, + .maxTexelBufferElements = UINT32_MAX, .maxUniformBufferRange = UINT32_MAX, .maxStorageBufferRange = UINT32_MAX, .maxPushConstantsSize = MAX_PUSH_CONSTANTS_SIZE,