From efa9b872fbac2264e0627bd28207a20897729447 Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Tue, 22 Jul 2025 17:06:36 -0400 Subject: [PATCH] nvk: Move KHR_timeline_semaphore to the right spot in the list Part-of: --- src/nouveau/vulkan/nvk_physical_device.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nouveau/vulkan/nvk_physical_device.c b/src/nouveau/vulkan/nvk_physical_device.c index 73b2a22a488..a958372f09f 100644 --- a/src/nouveau/vulkan/nvk_physical_device.c +++ b/src/nouveau/vulkan/nvk_physical_device.c @@ -174,12 +174,12 @@ nvk_get_device_extensions(const struct nvk_instance *instance, .KHR_shader_terminate_invocation = true, .KHR_spirv_1_4 = true, .KHR_storage_buffer_storage_class = true, - .KHR_timeline_semaphore = true, #ifdef NVK_USE_WSI_PLATFORM .KHR_swapchain = true, .KHR_swapchain_mutable_format = true, #endif .KHR_synchronization2 = true, + .KHR_timeline_semaphore = true, .KHR_uniform_buffer_standard_layout = true, .KHR_variable_pointers = true, .KHR_vertex_attribute_divisor = true,