mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-02-17 23:40:29 +01:00
nvk: Advertise VK_KHR_synchronization2
We've already got everything, we just need to turn it on. Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/9657 Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/26245>
This commit is contained in:
parent
7f6d3b82c8
commit
cd543c94fd
2 changed files with 3 additions and 1 deletions
|
|
@ -482,7 +482,7 @@ Vulkan 1.3 -- all DONE: anv, radv, tu, lvp, vn
|
|||
VK_KHR_shader_integer_dot_product DONE (anv, dzn, hasvk, lvp, radv, tu, v3dv, vn)
|
||||
VK_KHR_shader_non_semantic_info DONE (anv, hasvk, nvk, radv, tu, v3dv, vn)
|
||||
VK_KHR_shader_terminate_invocation DONE (anv, hasvk, lvp, radv, tu, vn)
|
||||
VK_KHR_synchronization2 DONE (anv, dzn, hasvk, lvp, panvk, radv, tu, v3dv, vn)
|
||||
VK_KHR_synchronization2 DONE (anv, dzn, hasvk, lvp, nvk, panvk, radv, tu, v3dv, vn)
|
||||
VK_KHR_zero_initialize_workgroup_memory DONE (anv, hasvk, lvp, radv, tu, v3dv, vn)
|
||||
VK_EXT_4444_formats DONE (anv, hasvk, lvp, nvk, radv, tu, v3dv, vn)
|
||||
VK_EXT_extended_dynamic_state DONE (anv, hasvk, lvp, nvk, radv, tu, vn)
|
||||
|
|
|
|||
|
|
@ -91,6 +91,7 @@ nvk_get_device_extensions(const struct nv_device_info *info,
|
|||
.KHR_swapchain = true,
|
||||
.KHR_swapchain_mutable_format = true,
|
||||
#endif
|
||||
.KHR_synchronization2 = true,
|
||||
.KHR_uniform_buffer_standard_layout = true,
|
||||
.KHR_variable_pointers = true,
|
||||
.KHR_workgroup_memory_explicit_layout = true,
|
||||
|
|
@ -249,6 +250,7 @@ nvk_get_device_features(const struct nv_device_info *info,
|
|||
.privateData = true,
|
||||
.shaderDemoteToHelperInvocation = true,
|
||||
.shaderTerminateInvocation = true,
|
||||
.synchronization2 = true,
|
||||
.dynamicRendering = true,
|
||||
.maintenance4 = true,
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue