mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-04 14:01:25 +12: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
1 changed files with 5 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue