mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2025-12-20 13:50:11 +01:00
panvk: expose KHR_external_fence and KHR_external_fence_capabilities
These seems to already be implemented, let's expose them! Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/31487>
This commit is contained in:
parent
17b81d1fdc
commit
620739ebc4
3 changed files with 4 additions and 2 deletions
|
|
@ -433,8 +433,8 @@ Vulkan 1.1 -- all DONE: anv, lvp, nvk, radv, tu, vn
|
|||
VK_KHR_descriptor_update_template DONE (anv, dzn, hasvk, lvp, nvk, panvk, radv, tu, v3dv, vn)
|
||||
VK_KHR_device_group DONE (anv, dzn, hasvk, lvp, nvk, panvk, tu, v3dv, vn)
|
||||
VK_KHR_device_group_creation DONE (anv, dzn, hasvk, lvp, nvk, panvk, tu, v3dv, vn)
|
||||
VK_KHR_external_fence DONE (anv, hasvk, lvp, nvk, pvr, radv, tu, v3dv, vn)
|
||||
VK_KHR_external_fence_capabilities DONE (anv, hasvk, lvp, nvk, pvr, radv, tu, v3dv, vn)
|
||||
VK_KHR_external_fence DONE (anv, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn)
|
||||
VK_KHR_external_fence_capabilities DONE (anv, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn)
|
||||
VK_KHR_external_memory DONE (anv, dzn, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn)
|
||||
VK_KHR_external_memory_capabilities DONE (anv, dzn, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn)
|
||||
VK_KHR_external_semaphore DONE (anv, dzn, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn)
|
||||
|
|
|
|||
|
|
@ -52,6 +52,7 @@ static const struct vk_instance_extension_table panvk_instance_extensions = {
|
|||
.KHR_device_group_creation = true,
|
||||
.KHR_external_memory_capabilities = true,
|
||||
.KHR_external_semaphore_capabilities = true,
|
||||
.KHR_external_fence_capabilities = true,
|
||||
.KHR_get_physical_device_properties2 = true,
|
||||
#ifdef PANVK_USE_WSI_PLATFORM
|
||||
.KHR_surface = true,
|
||||
|
|
|
|||
|
|
@ -69,6 +69,7 @@ get_device_extensions(const struct panvk_physical_device *device,
|
|||
.KHR_device_group = true,
|
||||
.KHR_descriptor_update_template = true,
|
||||
.KHR_driver_properties = true,
|
||||
.KHR_external_fence = true,
|
||||
.KHR_external_memory = true,
|
||||
.KHR_external_semaphore = true,
|
||||
.KHR_get_memory_requirements2 = true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue