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,