zink: hook up some memory extensions

enabling VK_EXT_pageable_device_local_memory guarantees that host memory
allocations will not consume device-local memory and enables overallocation
of device memory when paging can be done

Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/22855>
This commit is contained in:
Mike Blumenkrantz 2023-05-03 16:36:25 -04:00 committed by Marge Bot
parent b88006fb9f
commit 5dd63a69da

View file

@ -123,6 +123,8 @@ EXTENSIONS = [
alias="driver",
properties=True),
Extension("VK_EXT_memory_budget"),
Extension("VK_EXT_memory_priority", alias="memprio", features=True),
Extension("VK_EXT_pageable_device_local_memory", alias="mempage", features=True),
Extension("VK_KHR_draw_indirect_count"),
Extension("VK_EXT_shader_object", alias="shobj", features=True, properties=True),
Extension("VK_EXT_attachment_feedback_loop_layout",