diff --git a/docs/features.txt b/docs/features.txt index 29197179949..36548b87ef0 100644 --- a/docs/features.txt +++ b/docs/features.txt @@ -564,6 +564,7 @@ Khronos extensions that are not part of any Vulkan version: VK_KHR_maintenance8 DONE (anv, hk, lvp, nvk, panvk/v10+, radv, tu) VK_KHR_maintenance9 DONE (anv, hk, lvp, nvk, panvk, radv) VK_KHR_maintenance10 DONE (anv, nvk, radv) + VK_KHR_maintenance11 DONE (radv) VK_KHR_performance_query DONE (anv, radv/gfx10.3, radv/gfx11, tu, v3dv) VK_KHR_pipeline_binary DONE (anv, hk, nvk, panvk, radv) VK_KHR_pipeline_executable_properties DONE (anv, hasvk, hk, nvk, panvk, pvr, radv, tu, v3dv) diff --git a/docs/relnotes/new_features.txt b/docs/relnotes/new_features.txt index 81c666f1278..4b20172ab89 100644 --- a/docs/relnotes/new_features.txt +++ b/docs/relnotes/new_features.txt @@ -10,3 +10,4 @@ shaderImageGatherExtended on pvr static C++ stdlib required on rusticl to workaround applications using their own C++ stdlib VK_EXT_pipeline_protected_access on RADV VK_EXT_extended_dynamic_state3 on panvk +VK_KHR_maintenance11 on RADV diff --git a/src/amd/vulkan/radv_physical_device.c b/src/amd/vulkan/radv_physical_device.c index c98aeb0ac4a..130f38047b5 100644 --- a/src/amd/vulkan/radv_physical_device.c +++ b/src/amd/vulkan/radv_physical_device.c @@ -731,6 +731,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device .KHR_maintenance8 = true, .KHR_maintenance9 = true, .KHR_maintenance10 = true, + .KHR_maintenance11 = true, .KHR_map_memory2 = true, .KHR_multiview = true, .KHR_performance_query = radv_perf_query_supported(pdev), @@ -1611,6 +1612,9 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc /* VK_KHR_shader_constant_data */ .shaderConstantData = true, + + /* VK_KHR_maintenance11 */ + .maintenance11 = true, }; }