aco: Wait for stores when rasterization starts early
When GFX10+ NGG (or legacy VS) has no param exports,
NO_PC_EXPORT=1
is set which means the HW will start clipping and rasterization
as soon as it receives a pos export with DONE=1
, so PS waves can launch
before the NGG (or legacy VS) stage is finished.
In this case, we need to make sure we wait for all stores to finish before the position export with DONE=1
is executed.
Edited by Timur Kristóf