summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.cpp
diff options
context:
space:
mode:
authorGravatar Fernando Sahmkow2020-02-17 22:29:04 -0400
committerGravatar Fernando Sahmkow2020-04-22 11:36:12 -0400
commit165ae823f522aa981129927f42e76763a9fa6006 (patch)
tree5b20ac78e3946e50aa37f76a1446a42654bf3511 /src/video_core/gpu.cpp
parentFenceManager: Implement should wait. (diff)
downloadyuzu-165ae823f522aa981129927f42e76763a9fa6006.tar.gz
yuzu-165ae823f522aa981129927f42e76763a9fa6006.tar.xz
yuzu-165ae823f522aa981129927f42e76763a9fa6006.zip
ThreadManager: Sync async reads on accurate gpu.
Diffstat (limited to 'src/video_core/gpu.cpp')
-rw-r--r--src/video_core/gpu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp
index d05b6a9d2..19d3bd305 100644
--- a/src/video_core/gpu.cpp
+++ b/src/video_core/gpu.cpp
@@ -147,7 +147,7 @@ void GPU::SyncGuestHost() {
147} 147}
148 148
149void GPU::OnCommandListEnd() { 149void GPU::OnCommandListEnd() {
150 renderer.Rasterizer().ReleaseFences(); 150 renderer->Rasterizer().ReleaseFences();
151} 151}
152// Note that, traditionally, methods are treated as 4-byte addressable locations, and hence 152// Note that, traditionally, methods are treated as 4-byte addressable locations, and hence
153// their numbers are written down multiplied by 4 in Docs. Here we are not multiply by 4. 153// their numbers are written down multiplied by 4 in Docs. Here we are not multiply by 4.