Module: Mesa Branch: master Commit: f67259d83bcc9b7775ca710fe9d6e75f00f08175 URL: http://cgit.freedesktop.org/mesa/mesa/commit/?id=f67259d83bcc9b7775ca710fe9d6e75f00f08175
Author: Bas Nieuwenhuizen <[email protected]> Date: Thu Feb 25 13:29:09 2021 +0100 radv: Expose robustBufferAccessUpdateAfterBind correctly. We do support it. Cc: mesa-stable Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/4351 Reviewed-by: Samuel Pitoiset <[email protected]> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9281> --- src/amd/vulkan/radv_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/amd/vulkan/radv_device.c b/src/amd/vulkan/radv_device.c index deef3834380..5d4031aaab7 100644 --- a/src/amd/vulkan/radv_device.c +++ b/src/amd/vulkan/radv_device.c @@ -1944,7 +1944,7 @@ radv_get_physical_device_properties_1_2(struct radv_physical_device *pdevice, p->shaderStorageBufferArrayNonUniformIndexingNative = false; p->shaderStorageImageArrayNonUniformIndexingNative = false; p->shaderInputAttachmentArrayNonUniformIndexingNative = false; - p->robustBufferAccessUpdateAfterBind = false; + p->robustBufferAccessUpdateAfterBind = true; p->quadDivergentImplicitLod = false; size_t max_descriptor_set_size = ((1ull << 31) - 16 * MAX_DYNAMIC_BUFFERS - _______________________________________________ mesa-commit mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/mesa-commit
