From c05ad7904f42ac39ecb2155b232a7945da8e9f6b Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Mon, 4 Dec 2023 13:57:28 -0600 Subject: [PATCH] nvk: Advertise KHR_shader_subgroup_extended_types Closes: https://gitlab.freedesktop.org/mesa/mesa/-/issues/9607 Part-of: --- src/nouveau/vulkan/nvk_physical_device.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/nouveau/vulkan/nvk_physical_device.c b/src/nouveau/vulkan/nvk_physical_device.c index 2b602ff7fa2..796b6399a94 100644 --- a/src/nouveau/vulkan/nvk_physical_device.c +++ b/src/nouveau/vulkan/nvk_physical_device.c @@ -116,6 +116,7 @@ nvk_get_device_extensions(const struct nv_device_info *info, .KHR_shader_draw_parameters = true, .KHR_shader_float16_int8 = true, .KHR_shader_non_semantic_info = true, + .KHR_shader_subgroup_extended_types = true, .KHR_shader_terminate_invocation = (nvk_nak_stages(info) & VK_SHADER_STAGE_FRAGMENT_BIT) != 0, .KHR_spirv_1_4 = true, @@ -279,6 +280,7 @@ nvk_get_device_features(const struct nv_device_info *info, .samplerFilterMinmax = info->cls_eng3d >= MAXWELL_B, .imagelessFramebuffer = true, .uniformBufferStandardLayout = true, + .shaderSubgroupExtendedTypes = true, .separateDepthStencilLayouts = true, .hostQueryReset = true, .timelineSemaphore = true,