diff --git a/src/gallium/drivers/zink/zink_program.c b/src/gallium/drivers/zink/zink_program.c index 7802a37376d..5778a09afaf 100644 --- a/src/gallium/drivers/zink/zink_program.c +++ b/src/gallium/drivers/zink/zink_program.c @@ -167,6 +167,7 @@ update_gfx_shader_modules(struct zink_context *ctx, u_foreach_bit(pstage, mask) { assert(prog->shaders[pstage]); struct zink_shader_module *zm = get_shader_module_for_stage(ctx, screen, prog->shaders[pstage], prog, state); + state->modules[pstage] = zm->shader; if (prog->modules[pstage] == zm) continue; if (prog->modules[pstage]) @@ -175,7 +176,6 @@ update_gfx_shader_modules(struct zink_context *ctx, default_variants &= zm->default_variant; prog->modules[pstage] = zm; variant_hash ^= prog->modules[pstage]->hash; - state->modules[pstage] = zm->shader; } if (hash_changed && state) {