mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-24 19:18:11 +02:00
v3dv: expose VK_KHR_synchronization2
Reviewed-by: Alejandro Piñeiro <apinheiro@igalia.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/18290>
This commit is contained in:
parent
378be25016
commit
1614364281
3 changed files with 4 additions and 1 deletions
|
|
@ -480,7 +480,7 @@ Vulkan 1.3 -- all DONE: anv, radv, lvp
|
|||
VK_KHR_shader_integer_dot_product DONE (anv, lvp, radv, tu, vn)
|
||||
VK_KHR_shader_non_semantic_info DONE (anv, radv, tu, v3dv, vn)
|
||||
VK_KHR_shader_terminate_invocation DONE (anv, lvp, radv, tu, vn)
|
||||
VK_KHR_synchronization2 DONE (anv, lvp, panvk, radv, tu)
|
||||
VK_KHR_synchronization2 DONE (anv, lvp, panvk, radv, v3dv, tu)
|
||||
VK_KHR_zero_initialize_workgroup_memory DONE (anv, lvp, radv, tu, v3dv, vn)
|
||||
VK_EXT_4444_formats DONE (anv, lvp, radv, tu, v3dv, vn)
|
||||
VK_EXT_extended_dynamic_state DONE (anv, lvp, radv, tu, vn)
|
||||
|
|
|
|||
|
|
@ -74,6 +74,7 @@ dEQP-VK.ssbo.phys.layout.3*
|
|||
dEQP-VK.ssbo.phys.layout.basic_unsized_array*
|
||||
dEQP-VK.ssbo.phys.layout.single_struct_array*
|
||||
dEQP-VK.synchronization.basic.timeline_semaphore.chain
|
||||
dEQP-VK.synchronization2.basic.timeline_semaphore.chain
|
||||
dEQP-VK.texture.explicit_lod.2d.sizes.128x128_linear_linear_mipmap_linear_clamp
|
||||
dEQP-VK.texture.explicit_lod.2d.sizes.128x128_linear_linear_mipmap_linear_repeat
|
||||
dEQP-VK.texture.explicit_lod.2d.sizes.128x128_nearest_linear_mipmap_linear_clamp
|
||||
|
|
|
|||
|
|
@ -155,6 +155,7 @@ get_device_extensions(const struct v3dv_physical_device *device,
|
|||
.KHR_storage_buffer_storage_class = true,
|
||||
.KHR_timeline_semaphore = true,
|
||||
.KHR_uniform_buffer_standard_layout = true,
|
||||
.KHR_synchronization2 = true,
|
||||
#ifdef V3DV_USE_WSI_PLATFORM
|
||||
.KHR_swapchain = true,
|
||||
.KHR_swapchain_mutable_format = true,
|
||||
|
|
@ -1121,6 +1122,7 @@ v3dv_GetPhysicalDeviceFeatures2(VkPhysicalDevice physicalDevice,
|
|||
.privateData = true,
|
||||
.maintenance4 = true,
|
||||
.shaderZeroInitializeWorkgroupMemory = true,
|
||||
.synchronization2 = true,
|
||||
};
|
||||
|
||||
VkPhysicalDeviceVulkan12Features vk12 = {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue