radv: advertise VK_KHR_internally_synchronized_queues

Signed-off-by: Samuel Pitoiset <samuel.pitoiset@gmail.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/39489>
This commit is contained in:
Samuel Pitoiset 2026-01-23 12:39:35 +01:00 committed by Marge Bot
parent d8ef386f98
commit 50a3699552
3 changed files with 6 additions and 0 deletions

View file

@ -556,6 +556,7 @@ Khronos extensions that are not part of any Vulkan version:
VK_KHR_get_display_properties2 DONE (anv, hk, nvk, pvr, radv, tu, v3dv, vn)
VK_KHR_get_surface_capabilities2 DONE (anv, dzn, hk, lvp, nvk, pvr, radv, tu, v3dv, vn)
VK_KHR_incremental_present DONE (anv, hasvk, hk, lvp, nvk, pvr, radv, tu, v3dv, vn)
VK_KHR_internally_synchronized_queues DONE (radv)
VK_KHR_maintenance7 DONE (anv, hk, lvp, nvk, panvk/v10+, radv, tu, vn)
VK_KHR_maintenance8 DONE (anv, hk, lvp, nvk, panvk/v10+, radv, tu)
VK_KHR_maintenance9 DONE (anv, hk, lvp, nvk, panvk, radv)

View file

@ -2,3 +2,4 @@ VK_QCOM_image_processing on Turnip
VK_EXT_present_timing on RADV, NVK, Turnip, ANV, Honeykrisp, panvk
VK_KHR_sampler_ycbcr_conversion on pvr
VK_EXT_image_drm_format_modifier on pvr
VK_KHR_internally_synchronized_queues on RADV

View file

@ -657,6 +657,7 @@ radv_physical_device_get_supported_extensions(const struct radv_physical_device
.KHR_incremental_present = true,
#endif
.KHR_index_type_uint8 = pdev->info.gfx_level >= GFX8,
.KHR_internally_synchronized_queues = true,
.KHR_line_rasterization = true,
.KHR_load_store_op_none = true,
.KHR_maintenance1 = true,
@ -1514,6 +1515,9 @@ radv_physical_device_get_features(const struct radv_physical_device *pdev, struc
.presentAtAbsoluteTime = true,
.presentAtRelativeTime = true,
#endif
/* VK_KHR_internally_synchronized_queues */
.internallySynchronizedQueues = true,
};
}