kk: Mark graphics descriptors' root dirty when dirtying graphics state

Signed-off-by: Aitor Camacho <aitor@lunarg.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/38938>
This commit is contained in:
Aitor Camacho 2025-12-17 02:56:21 +09:00 committed by Marge Bot
parent 9ef979b48b
commit 7b435be0d6

View file

@ -216,6 +216,7 @@ kk_cmd_buffer_dirty_all_gfx(struct kk_cmd_buffer *cmd)
/* Ensure we flush all graphics state */
vk_dynamic_graphics_state_dirty_all(&cmd->vk.dynamic_graphics_state);
cmd->state.gfx.dirty = ~0u;
cmd->state.gfx.descriptors.root_dirty = true;
}
void kk_cmd_release_dynamic_ds_state(struct kk_cmd_buffer *cmd);