mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-01-06 10:08:20 +00:00
rsx: Exercise caution when testing for overlaps in invalidated sections
This commit is contained in:
parent
d9a1308624
commit
39ef39aa4e
@ -505,8 +505,10 @@ namespace rsx
|
||||
AUDIT(other != surface);
|
||||
if (!other->is_flushable())
|
||||
{
|
||||
if (other->overlaps(*surface, section_bounds::full_range))
|
||||
if (other->overlaps(*surface, section_bounds::confirmed_range))
|
||||
{
|
||||
// This should never happen. It will raise exceptions later due to a dirty region being locked
|
||||
rsx_log.error("Excluded region overlaps with flushed surface!");
|
||||
other->set_dirty(true);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user