diff --git a/src/panfrost/vulkan/panvk_instance.c b/src/panfrost/vulkan/panvk_instance.c index a71a8de5b95..9550139e26d 100644 --- a/src/panfrost/vulkan/panvk_instance.c +++ b/src/panfrost/vulkan/panvk_instance.c @@ -52,15 +52,14 @@ panvk_EnumerateInstanceVersion(uint32_t *pApiVersion) static const struct vk_instance_extension_table panvk_instance_extensions = { .KHR_device_group_creation = true, .KHR_get_physical_device_properties2 = true, - .EXT_debug_report = true, - .EXT_debug_utils = true, - #ifdef PANVK_USE_WSI_PLATFORM .KHR_surface = true, #endif #ifdef VK_USE_PLATFORM_WAYLAND_KHR .KHR_wayland_surface = true, #endif + .EXT_debug_report = true, + .EXT_debug_utils = true, #ifndef VK_USE_PLATFORM_WIN32_KHR .EXT_headless_surface = true, #endif diff --git a/src/panfrost/vulkan/panvk_physical_device.c b/src/panfrost/vulkan/panvk_physical_device.c index 03bd2fa44ab..d389db6cb91 100644 --- a/src/panfrost/vulkan/panvk_physical_device.c +++ b/src/panfrost/vulkan/panvk_physical_device.c @@ -66,13 +66,13 @@ get_device_extensions(const struct panvk_physical_device *device, .KHR_buffer_device_address = true, .KHR_copy_commands2 = true, .KHR_device_group = true, - .KHR_shader_expect_assume = true, - .KHR_storage_buffer_storage_class = true, .KHR_descriptor_update_template = true, .KHR_driver_properties = true, .KHR_pipeline_executable_properties = true, .KHR_pipeline_library = true, .KHR_push_descriptor = true, + .KHR_shader_expect_assume = true, + .KHR_storage_buffer_storage_class = true, #ifdef PANVK_USE_WSI_PLATFORM .KHR_swapchain = true, #endif