mirror of
https://github.com/RPCS3/rpcs3.git
synced 2024-11-17 08:11:51 +00:00
rsx: Fix leaking ZCULL queries after a barrier
- Multiple queries can be queued up, process them all before completing the barrier
This commit is contained in:
parent
b5f01372ee
commit
d7ffc8b4ac
@ -3611,7 +3611,11 @@ namespace rsx
|
||||
}
|
||||
}
|
||||
|
||||
update(ptimer, sync_address);
|
||||
// There can be multiple queries all writing to the same address, loop to flush all of them
|
||||
while (query->pending && !Emu.IsStopped())
|
||||
{
|
||||
update(ptimer, sync_address);
|
||||
}
|
||||
return result_none;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user