From: Jesse Natalie Date: Thu, 27 Apr 2023 23:19:17 +0000 (-0700) Subject: dzn: Expose core VK1.1 extensions that aren't optional X-Git-Tag: upstream/23.3.3~9356 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0b8a39498d206c13ad4b4143933e062842251fe8;p=platform%2Fupstream%2Fmesa.git dzn: Expose core VK1.1 extensions that aren't optional Part-of: --- diff --git a/src/microsoft/vulkan/dzn_device.c b/src/microsoft/vulkan/dzn_device.c index fedf114..cf935fa 100644 --- a/src/microsoft/vulkan/dzn_device.c +++ b/src/microsoft/vulkan/dzn_device.c @@ -73,6 +73,7 @@ static const struct vk_instance_extension_table instance_extensions = { .KHR_get_physical_device_properties2 = true, + .KHR_device_group_creation = true, #ifdef DZN_USE_WSI_PLATFORM .KHR_surface = true, .KHR_get_surface_capabilities2 = true, @@ -100,8 +101,10 @@ dzn_physical_device_get_extensions(struct dzn_physical_device *pdev) .KHR_16bit_storage = pdev->options4.Native16BitShaderOpsSupported, .KHR_bind_memory2 = true, .KHR_create_renderpass2 = true, + .KHR_dedicated_allocation = true, .KHR_depth_stencil_resolve = true, .KHR_descriptor_update_template = true, + .KHR_device_group = true, .KHR_draw_indirect_count = true, .KHR_driver_properties = true, .KHR_dynamic_rendering = true, @@ -110,6 +113,7 @@ dzn_physical_device_get_extensions(struct dzn_physical_device *pdev) .KHR_maintenance2 = true, .KHR_maintenance3 = true, .KHR_multiview = true, + .KHR_relaxed_block_layout = true, .KHR_shader_draw_parameters = true, .KHR_shader_float16_int8 = pdev->options4.Native16BitShaderOpsSupported, .KHR_storage_buffer_storage_class = true,