diff options
author | Fernando Sahmkow <[email protected]> | 2020-02-16 10:08:07 -0400 |
---|---|---|
committer | Fernando Sahmkow <[email protected]> | 2020-04-22 11:36:07 -0400 |
commit | 8b1eb44b3ed5483071dc6754662a277b45e4a809 (patch) | |
tree | ed985a775881cce60a98ab7ddc43803ccf7d463c /src/video_core/gpu_thread.cpp | |
parent | da8f17715dbdc7eec92f5f0c11c968a51b86cab4 (diff) | |
download | yuzu-android-8b1eb44b3ed5483071dc6754662a277b45e4a809.tar.gz yuzu-android-8b1eb44b3ed5483071dc6754662a277b45e4a809.zip |
BufferCache: Implement OnCPUWrite and SyncGuestHost
Diffstat (limited to 'src/video_core/gpu_thread.cpp')
-rw-r--r-- | src/video_core/gpu_thread.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/gpu_thread.cpp b/src/video_core/gpu_thread.cpp index 1994d3bb4..0a8123cfe 100644 --- a/src/video_core/gpu_thread.cpp +++ b/src/video_core/gpu_thread.cpp @@ -78,7 +78,7 @@ void ThreadManager::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) { } void ThreadManager::FlushRegion(VAddr addr, u64 size) { - PushCommand(FlushRegionCommand(addr, size)); + system.Renderer().Rasterizer().FlushRegion(addr, size); } void ThreadManager::InvalidateRegion(VAddr addr, u64 size) { |