From fded7a95c55eabc8f9aa7c36a69103556a7e477e Mon Sep 17 00:00:00 2001 From: Danylo Piliaiev Date: Tue, 1 Feb 2022 19:37:35 +0200 Subject: [PATCH] turnip: Expose VK_KHR_shader_non_semantic_info This is entirely implemented in the SPIR-V frontend. Relevant CTS tests: dEQP-VK.spirv_assembly.instruction.compute.non_semantic_info.* Signed-off-by: Danylo Piliaiev Part-of: --- docs/features.txt | 2 +- src/freedreno/vulkan/tu_device.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/features.txt b/docs/features.txt index 0771e42976c..d2a73a5833c 100644 --- a/docs/features.txt +++ b/docs/features.txt @@ -476,7 +476,7 @@ Vulkan 1.3 -- all DONE: anv, radv VK_KHR_dynamic_rendering DONE (anv, lvp, radv) VK_KHR_format_feature_flags2 DONE (anv, radv) VK_KHR_maintenance4 DONE (anv, radv) - VK_KHR_shader_non_semantic_info DONE (anv, radv) + VK_KHR_shader_non_semantic_info DONE (anv, radv, tu, v3dv) VK_KHR_shader_terminate_invocation DONE (anv, radv, tu) VK_KHR_synchronization2 DONE (anv, radv) VK_KHR_zero_initialize_workgroup_memory DONE (anv, radv, tu) diff --git a/src/freedreno/vulkan/tu_device.c b/src/freedreno/vulkan/tu_device.c index d15fbd75e9d..e11d7720dab 100644 --- a/src/freedreno/vulkan/tu_device.c +++ b/src/freedreno/vulkan/tu_device.c @@ -160,6 +160,7 @@ get_device_extensions(const struct tu_physical_device *device, .KHR_buffer_device_address = true, .KHR_shader_integer_dot_product = true, .KHR_zero_initialize_workgroup_memory = true, + .KHR_shader_non_semantic_info = true, #ifndef TU_USE_KGSL .KHR_timeline_semaphore = true, #endif