From 8a1c9a614f1f87bdf57fe30c0c50d99689b559a4 Mon Sep 17 00:00:00 2001 From: Samuel Pitoiset Date: Mon, 4 May 2026 09:09:11 +0200 Subject: [PATCH] vulkan: stop forcing independent sets for shader object VK_KHR_maintenance11 added a new flag for ESO, forcing it shouldn't be required anymore. Signed-off-by: Samuel Pitoiset Part-of: --- src/vulkan/runtime/vk_shader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vulkan/runtime/vk_shader.c b/src/vulkan/runtime/vk_shader.c index b69ea1527a8..6354e51d364 100644 --- a/src/vulkan/runtime/vk_shader.c +++ b/src/vulkan/runtime/vk_shader.c @@ -312,7 +312,7 @@ vk_shader_compile_info_init(struct vk_shader_compile_info *info, *info = (struct vk_shader_compile_info) { .stage = nir->info.stage, - .flags = vk_info->flags | VK_SHADER_CREATE_INDEPENDENT_SETS_BIT_KHR, + .flags = vk_info->flags, .next_stage_mask = vk_info->nextStage, .nir = nir, .robustness = rs,