tu: Advertise VK_KHR_internally_synchronized_queues
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

This is implemented in common code in d8ef386f98 ("vulkan: add support
for VK_KHR_internally_synchronized_queues").

Passes dEQP-VK.synchronization2.internally_synchronized_queues.*

Signed-off-by: Valentine Burley <valentine.burley@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/41926>
This commit is contained in:
Valentine Burley 2026-06-01 11:40:17 +02:00 committed by Marge Bot
parent f1c30d65e1
commit 879dd9ca8c
2 changed files with 5 additions and 1 deletions

View file

@ -560,7 +560,7 @@ Khronos extensions that are not part of any Vulkan version:
VK_KHR_get_display_properties2 DONE (anv, hasvk, hk, kk, nvk, panvk, pvr, radv, tu, v3dv, vn)
VK_KHR_get_surface_capabilities2 DONE (anv, dzn, hasvk, hk, kk, lvp, nvk, panvk, 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 (anv, radv)
VK_KHR_internally_synchronized_queues DONE (anv, radv, tu)
VK_KHR_maintenance7 DONE (anv, hk, kk, lvp, nvk, panvk/v10+, radv, tu, vn)
VK_KHR_maintenance8 DONE (anv, hk, kk, lvp, nvk, panvk/v10+, radv, tu)
VK_KHR_maintenance9 DONE (anv, hk, kk, lvp, nvk, panvk, radv)

View file

@ -204,6 +204,7 @@ get_device_extensions(const struct tu_physical_device *device,
.KHR_incremental_present = true,
#endif
.KHR_index_type_uint8 = true,
.KHR_internally_synchronized_queues = true,
.KHR_line_rasterization = !device->info->props.is_a702,
.KHR_load_store_op_none = true,
.KHR_maintenance1 = true,
@ -551,6 +552,9 @@ tu_get_features(struct tu_physical_device *pdevice,
/* VK_KHR_index_type_uint8 */
features->indexTypeUint8 = true;
/* VK_KHR_internally_synchronized_queues */
features->internallySynchronizedQueues = true;
/* VK_KHR_line_rasterization */
features->rectangularLines = !pdevice->info->props.is_a702;
features->bresenhamLines = true;