panvk: Reorder extensions by name

Signed-off-by: Mary Guillemard <mary.guillemard@collabora.com>
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/29410>
This commit is contained in:
Mary Guillemard
2024-05-27 08:57:58 +02:00
committed by Marge Bot
parent e580b0f597
commit 9a2a301f69
2 changed files with 4 additions and 5 deletions
+2 -3
View File
@@ -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
+2 -2
View File
@@ -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