diff options
| author | 2020-02-17 22:29:04 -0400 | |
|---|---|---|
| committer | 2020-04-22 11:36:12 -0400 | |
| commit | 165ae823f522aa981129927f42e76763a9fa6006 (patch) | |
| tree | 5b20ac78e3946e50aa37f76a1446a42654bf3511 /src/video_core/gpu.cpp | |
| parent | FenceManager: Implement should wait. (diff) | |
| download | yuzu-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.cpp | 2 |
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 | ||
| 149 | void GPU::OnCommandListEnd() { | 149 | void 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. |