Skip to content
Snippets Groups Projects
Commit b1123ed3 authored by Giovanni Mascellani's avatar Giovanni Mascellani Committed by Alexandre Julliard
Browse files

vkd3d-shader/ir: Correctly compute the TEMP count after hull shader flattening.

The previous computation was incorrect because the count was taken
after resetting it to zero (as part of setting the instruction to NOP).
parent 5cb17cfd
No related branches found
No related tags found
1 merge request!481vkd3d-shader/ir: Correctly compute the TEMP count after hull shader flattening.
Pipeline #18591 skipped
......@@ -207,10 +207,15 @@ static void flattener_eliminate_phase_related_dcls(struct hull_flattener *normal
{
/* Leave only the first temp declaration and set it to the max count later. */
if (!normaliser->max_temp_count)
{
normaliser->max_temp_count = ins->declaration.count;
normaliser->temp_dcl_idx = index;
}
else
{
normaliser->max_temp_count = max(normaliser->max_temp_count, ins->declaration.count);
vkd3d_shader_instruction_make_nop(ins);
normaliser->max_temp_count = max(normaliser->max_temp_count, ins->declaration.count);
}
return;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment