radv: advertise VK_KHR_maintenance11
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41316>
This commit is contained in:
Samuel Pitoiset 2025-11-17 09:20:37 +01:00 committed by Marge Bot
parent d10e732aac
commit 83d350dc1c
3 changed files with 6 additions and 0 deletions

View file

@ -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)

View file

@ -11,3 +11,4 @@ static C++ stdlib required on rusticl to workaround applications using their own
VK_EXT_pipeline_protected_access on RADV
VK_EXT_extended_dynamic_state3 on panvk
GL_ARB_texture_query_lod on panfrost/v9+
VK_KHR_maintenance11 on RADV

View file

@ -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,
};
}