video_core: improve efficiency of CachedSurface::IsSurfaceFullyInvalid
This commit is contained in:
parent
f620c862f3
commit
d90f733330
1 changed files with 2 additions and 1 deletions
|
@ -344,7 +344,8 @@ struct CachedSurface : SurfaceParams, std::enable_shared_from_this<CachedSurface
|
||||||
}
|
}
|
||||||
|
|
||||||
bool IsSurfaceFullyInvalid() const {
|
bool IsSurfaceFullyInvalid() const {
|
||||||
return (invalid_regions & GetInterval()) == SurfaceRegions(GetInterval());
|
auto interval = GetInterval();
|
||||||
|
return *invalid_regions.equal_range(interval).first == interval;
|
||||||
}
|
}
|
||||||
|
|
||||||
bool registered = false;
|
bool registered = false;
|
||||||
|
|
Loading…
Reference in a new issue