Skip to content

r300: update RV370 failures

Pavel Ondračka requested to merge ondracka/mesa:r300_update_RV370_fails into main

What does this MR do and why?

r300: update RV370 failures

This was missed in 0bf6dcb7 There is a loop which iterates over a temp array. NIR optimization moves the real work out of the loop and what remains are just ALU ops with udefs. So after converting undefs to zero, the ALU ops are optimized out and DCE kills the loop. This is a good thing in general and we don't fail the linking due to the loop presence.

However than we hit the shader constants and ALU limits later :-( So from dEQP POW we go from NotSupported to Fail.

Merge request reports