diff options
| author | 2020-02-18 11:26:31 -0400 | |
|---|---|---|
| committer | 2020-04-22 11:36:12 -0400 | |
| commit | e84eb64e511cd4699cc2371744fccd24628c0749 (patch) | |
| tree | 43a80c0ecc15f781cf5fdba70deaaa46260683ec /src/video_core/texture_cache | |
| parent | ThreadManager: Sync async reads on accurate gpu. (diff) | |
| download | yuzu-e84eb64e511cd4699cc2371744fccd24628c0749.tar.gz yuzu-e84eb64e511cd4699cc2371744fccd24628c0749.tar.xz yuzu-e84eb64e511cd4699cc2371744fccd24628c0749.zip | |
Rasterizer: Disable fence managing in synchronous gpu.
Diffstat (limited to 'src/video_core/texture_cache')
| -rw-r--r-- | src/video_core/texture_cache/texture_cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/texture_cache/texture_cache.h b/src/video_core/texture_cache/texture_cache.h index e251a30c3..e1a1edbd2 100644 --- a/src/video_core/texture_cache/texture_cache.h +++ b/src/video_core/texture_cache/texture_cache.h | |||
| @@ -252,7 +252,7 @@ public: | |||
| 252 | auto& surface = render_targets[index].target; | 252 | auto& surface = render_targets[index].target; |
| 253 | surface->MarkAsRenderTarget(false, NO_RT); | 253 | surface->MarkAsRenderTarget(false, NO_RT); |
| 254 | const auto& cr_params = surface->GetSurfaceParams(); | 254 | const auto& cr_params = surface->GetSurfaceParams(); |
| 255 | if (!cr_params.is_tiled) { | 255 | if (!cr_params.is_tiled && Settings::values.use_asynchronous_gpu_emulation) { |
| 256 | AsyncFlushSurface(surface); | 256 | AsyncFlushSurface(surface); |
| 257 | } | 257 | } |
| 258 | } | 258 | } |