Merge pull request #3942 from ReinUsesLisp/flush-and-invalidate

vk_rasterizer: Match OpenGL's FlushAndInvalidate behavior
This commit is contained in:
bunnei 2020-05-15 21:34:07 -04:00 committed by GitHub
commit 55c0dd1cb3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -569,7 +569,9 @@ void RasterizerVulkan::ReleaseFences() {
}
void RasterizerVulkan::FlushAndInvalidateRegion(VAddr addr, u64 size) {
FlushRegion(addr, size);
if (Settings::IsGPULevelExtreme()) {
FlushRegion(addr, size);
}
InvalidateRegion(addr, size);
}