turnip: expose several already implemented extensions

They were promoted to Vulkan 1.1 and we already support them.

Signed-off-by: Danylo Piliaiev <dpiliaiev@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/9757>
This commit is contained in:
Danylo Piliaiev 2021-03-22 16:36:30 +02:00 committed by Marge Bot
parent d8a2abe348
commit a5b37c64d1
2 changed files with 6 additions and 3 deletions

View File

@ -424,11 +424,11 @@ Vulkan 1.1 -- all DONE: anv, radv
VK_KHR_16bit_storage DONE (anv/gen8+, lvp, radv)
VK_KHR_bind_memory2 DONE (anv, lvp, radv, tu)
VK_KHR_dedicated_allocation DONE (anv, lvp, radv, tu)
VK_KHR_descriptor_update_template DONE (anv, lvp, radv)
VK_KHR_descriptor_update_template DONE (anv, lvp, radv, tu)
VK_KHR_device_group DONE (lvp, tu)
VK_KHR_device_group_creation DONE (lvp, tu)
VK_KHR_external_fence DONE (anv, lvp, radv, tu)
VK_KHR_external_fence_capabilities DONE (anv, lvp, radv)
VK_KHR_external_fence_capabilities DONE (anv, lvp, radv, tu)
VK_KHR_external_memory DONE (anv, lvp, radv, tu, v3dv)
VK_KHR_external_memory_capabilities DONE (anv, lvp, radv, tu, v3dv)
VK_KHR_external_semaphore DONE (anv, lvp, radv, tu)
@ -442,7 +442,7 @@ Vulkan 1.1 -- all DONE: anv, radv
VK_KHR_relaxed_block_layout DONE (anv, lvp, radv)
VK_KHR_sampler_ycbcr_conversion DONE (anv, radv, tu)
VK_KHR_shader_draw_parameters DONE (anv, lvp, radv, tu)
VK_KHR_storage_buffer_storage_class DONE (anv, lvp, radv)
VK_KHR_storage_buffer_storage_class DONE (anv, lvp, radv, tu)
VK_KHR_variable_pointers DONE (anv, lvp, radv, tu)
Vulkan 1.2 -- all DONE: anv

View File

@ -106,6 +106,9 @@ EXTENSIONS = [
Extension('VK_KHR_device_group', 4, True),
Extension('VK_KHR_device_group_creation', 1, True),
Extension('VK_EXT_descriptor_indexing', 2, True),
Extension('VK_KHR_descriptor_update_template', 1, True),
Extension('VK_KHR_storage_buffer_storage_class', 1, True),
Extension('VK_KHR_external_fence_capabilities', 1, True),
]
MAX_API_VERSION = VkVersion(MAX_API_VERSION)