From 1048eaffd5302ca53cfab0fe200e4dbbc6b89678 Mon Sep 17 00:00:00 2001 From: Yiwei Zhang Date: Mon, 3 Oct 2022 19:31:23 +0000 Subject: [PATCH] venus: move vendor ext to bottom and sort the ext list Signed-off-by: Yiwei Zhang Part-of: --- src/virtio/vulkan/vn_physical_device.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/virtio/vulkan/vn_physical_device.c b/src/virtio/vulkan/vn_physical_device.c index e2c58ccf709..15b0cf03072 100644 --- a/src/virtio/vulkan/vn_physical_device.c +++ b/src/virtio/vulkan/vn_physical_device.c @@ -1076,15 +1076,12 @@ vn_physical_device_get_passthrough_extensions( .EXT_conservative_rasterization = true, .EXT_custom_border_color = true, .EXT_depth_clip_enable = true, - .EXT_mutable_descriptor_type = true, - - /* vendor */ - .VALVE_mutable_descriptor_type = true, .EXT_image_drm_format_modifier = true, .EXT_image_view_min_lod = true, .EXT_index_type_uint8 = true, .EXT_line_rasterization = true, .EXT_multi_draw = true, + .EXT_mutable_descriptor_type = true, .EXT_primitive_topology_list_restart = true, /* TODO(VK_EXT_private_data): Support natively. * @@ -1110,6 +1107,9 @@ vn_physical_device_get_passthrough_extensions( .EXT_shader_stencil_export = true, .EXT_transform_feedback = true, .EXT_vertex_attribute_divisor = true, + + /* vendor */ + .VALVE_mutable_descriptor_type = true, }; }