Rasterizer: Disable fence managing in synchronous gpu.

This commit is contained in:
Fernando Sahmkow 2020-02-18 11:26:31 -04:00
parent 165ae823f5
commit e84eb64e51
2 changed files with 11 additions and 1 deletions

View file

@ -252,7 +252,7 @@ public:
auto& surface = render_targets[index].target;
surface->MarkAsRenderTarget(false, NO_RT);
const auto& cr_params = surface->GetSurfaceParams();
if (!cr_params.is_tiled) {
if (!cr_params.is_tiled && Settings::values.use_asynchronous_gpu_emulation) {
AsyncFlushSurface(surface);
}
}