rsx: Flush FIFO GET before smeaphore_acquire

This commit is contained in:
Eladash 2019-09-29 20:54:33 +03:00 committed by kd-11
parent 70b4ae6bd6
commit 0b2fa6ffdc
3 changed files with 12 additions and 3 deletions

View file

@ -2334,6 +2334,12 @@ namespace rsx
//verify (HERE), async_tasks_pending.load() == 0;
}
void thread::flush_fifo()
{
// Make sure GET value is exposed before sync points
fifo_ctrl->sync_get();
}
void thread::read_barrier(u32 memory_address, u32 memory_range)
{
zcull_ctrl->read_barrier(this, memory_address, memory_range);