diff options
author | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-02-18 13:24:38 -0400 |
---|---|---|
committer | Fernando Sahmkow <fsahmkow27@gmail.com> | 2020-04-22 11:36:14 -0400 |
commit | 4adfc9bb0870296b372dc96296436538d6aa6c32 (patch) | |
tree | df7dac8d36ec4a4a9c89ed6512eeb4372af4289c /src/video_core/gpu_thread.cpp | |
parent | a081a7c8558500249f4871f3a1b8c9046cb1b6f1 (diff) |
Rasterizer: Document SignalFence & ReleaseFences and setup skeletons on Vulkan.
Diffstat (limited to 'src/video_core/gpu_thread.cpp')
-rw-r--r-- | src/video_core/gpu_thread.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/video_core/gpu_thread.cpp b/src/video_core/gpu_thread.cpp index 672f8d2fab..1c3ab2145d 100644 --- a/src/video_core/gpu_thread.cpp +++ b/src/video_core/gpu_thread.cpp @@ -81,9 +81,12 @@ void ThreadManager::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) { } void ThreadManager::FlushRegion(VAddr addr, u64 size) { + if (!Settings::IsGPULevelExtreme()) { + return; + } if (system.Renderer().Rasterizer().MustFlushRegion(addr, size)) { u64 fence = PushCommand(FlushRegionCommand(addr, size)); - while (fence < state.signaled_fence.load(std::memory_order_relaxed)) { + while (fence > state.signaled_fence.load(std::memory_order_relaxed)) { } } } |