panvk: enable KHR_spirv_1_4 on v10+
Some checks are pending
macOS-CI / macOS-CI (dri) (push) Waiting to run
macOS-CI / macOS-CI (xlib) (push) Waiting to run

The previous fix seems to be all that was needed to enable this, so
let's flip the switch.

Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com>
Reviewed-by: Mary Guillemard <mary.guillemard@collabora.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/34514>
This commit is contained in:
Erik Faye-Lund 2025-04-14 22:44:46 +02:00 committed by Marge Bot
parent e77a815299
commit d4797b8ab7
3 changed files with 3 additions and 1 deletions

View file

@ -471,7 +471,7 @@ Vulkan 1.2 -- all DONE: anv, nvk, tu, vn
VK_KHR_shader_float16_int8 DONE (anv, dzn, nvk, hasvk, lvp, radv, tu, vn, panvk) VK_KHR_shader_float16_int8 DONE (anv, dzn, nvk, hasvk, lvp, radv, tu, vn, panvk)
VK_KHR_shader_float_controls DONE (anv, dzn, hasvk, lvp, nvk, panvk, radv, tu, v3dv, vn) VK_KHR_shader_float_controls DONE (anv, dzn, hasvk, lvp, nvk, panvk, radv, tu, v3dv, vn)
VK_KHR_shader_subgroup_extended_types DONE (anv, hasvk, lvp, nvk, panvk/v10+, radv, tu, vn) VK_KHR_shader_subgroup_extended_types DONE (anv, hasvk, lvp, nvk, panvk/v10+, radv, tu, vn)
VK_KHR_spirv_1_4 DONE (anv, dzn, hasvk, lvp, nvk, radv, tu, v3dv, vn) VK_KHR_spirv_1_4 DONE (anv, dzn, hasvk, lvp, nvk, panvk/v10+, radv, tu, v3dv, vn)
VK_KHR_timeline_semaphore DONE (anv, dzn, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn) VK_KHR_timeline_semaphore DONE (anv, dzn, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn)
VK_KHR_uniform_buffer_standard_layout DONE (anv, dzn, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn) VK_KHR_uniform_buffer_standard_layout DONE (anv, dzn, hasvk, lvp, nvk, panvk, pvr, radv, tu, v3dv, vn)
VK_KHR_vulkan_memory_model DONE (anv, hasvk, lvp, nvk, radv, tu, v3dv, vn) VK_KHR_vulkan_memory_model DONE (anv, hasvk, lvp, nvk, radv, tu, v3dv, vn)

View file

@ -35,3 +35,4 @@ VK_KHR_float_controls2 on panvk
storageBuffer8BitAccess on panvk storageBuffer8BitAccess on panvk
uniformAndStorageBuffer8BitAccess on panvk uniformAndStorageBuffer8BitAccess on panvk
MSAA with 8 and 16 sample counts on panvk MSAA with 8 and 16 sample counts on panvk
KHR_spirv_1_4 on panvk/v10+

View file

@ -261,6 +261,7 @@ get_device_extensions(const struct panvk_physical_device *device,
.KHR_shader_subgroup_extended_types = has_vk1_1, .KHR_shader_subgroup_extended_types = has_vk1_1,
.KHR_shader_subgroup_rotate = true, .KHR_shader_subgroup_rotate = true,
.KHR_shader_subgroup_uniform_control_flow = has_vk1_1, .KHR_shader_subgroup_uniform_control_flow = has_vk1_1,
.KHR_spirv_1_4 = arch >= 10,
.KHR_storage_buffer_storage_class = true, .KHR_storage_buffer_storage_class = true,
#ifdef PANVK_USE_WSI_PLATFORM #ifdef PANVK_USE_WSI_PLATFORM
.KHR_swapchain = true, .KHR_swapchain = true,