From 701a37e863d5301bb214846d1ddf2d13fcfda52e Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Tue, 9 Jan 2024 17:40:21 +0100 Subject: [PATCH] radv: advertise VK_KHR_load_store_op_none Promoted from the EXT. Signed-off-by: Samuel Pitoiset Part-of: --- docs/features.txt | 1 + docs/relnotes/new_features.txt | 1 + src/amd/vulkan/radv_physical_device.c | 1 + 3 files changed, 3 insertions(+) diff --git a/docs/features.txt b/docs/features.txt index 4469ccc7df6..d2cf47c8c80 100644 --- a/docs/features.txt +++ b/docs/features.txt @@ -520,6 +520,7 @@ Khronos extensions that are not part of any Vulkan version: VK_KHR_get_surface_capabilities2 DONE (anv, lvp, nvk, pvr, radv, tu, v3dv, vn) VK_KHR_global_priority DONE (radv, tu) VK_KHR_incremental_present DONE (anv, hasvk, lvp, radv, tu, v3dv, vn) + VK_KHR_load_store_op_none DONE (radv) VK_KHR_maintenance5 DONE (anv, lvp, radv, tu) VK_KHR_maintenance6 DONE (lvp) VK_KHR_performance_query DONE (anv/gen8+, radv/gfx10.3+, tu, v3dv) diff --git a/docs/relnotes/new_features.txt b/docs/relnotes/new_features.txt index 9c46926eb39..2754deeb0fa 100644 --- a/docs/relnotes/new_features.txt +++ b/docs/relnotes/new_features.txt @@ -1 +1,2 @@ VK_KHR_shader_subgroup_rotate on RADV +VK_KHR_load_store_op_none on RADV diff --git a/src/amd/vulkan/radv_physical_device.c b/src/amd/vulkan/radv_physical_device.c index 09aff31ae21..0cc3ca0b28a 100644 --- a/src/amd/vulkan/radv_physical_device.c +++ b/src/amd/vulkan/radv_physical_device.c @@ -465,6 +465,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device #ifdef RADV_USE_WSI_PLATFORM .KHR_incremental_present = true, #endif + .KHR_load_store_op_none = true, .KHR_maintenance1 = true, .KHR_maintenance2 = true, .KHR_maintenance3 = true,