rsx: Exercise caution when testing for overlaps in invalidated sections

This commit is contained in:
kd-11 2021-12-24 14:11:47 +03:00 committed by kd-11
parent d9a1308624
commit 39ef39aa4e

View file

@ -505,8 +505,10 @@ namespace rsx
AUDIT(other != surface); AUDIT(other != surface);
if (!other->is_flushable()) 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); other->set_dirty(true);
} }
} }