diff options
| author | bunnei <bunneidev@gmail.com> | 2019-01-23 22:17:55 -0500 |
|---|---|---|
| committer | bunnei <bunneidev@gmail.com> | 2019-03-06 21:48:57 -0500 |
| commit | 7b574f406b25c02a0e0efd8b7ec13d68ecb55497 (patch) | |
| tree | 375d4637d49ffe506129ce9cb679b5902328106a /src/core/hle | |
| parent | 65651078e5ae60ff14bf6d6e8e367ec7262c4120 (diff) | |
gpu: Move command processing to another thread.
Diffstat (limited to 'src/core/hle')
| -rw-r--r-- | src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp b/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp index 466db7ccd..a34b9e753 100644 --- a/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp +++ b/src/core/hle/service/nvdrv/devices/nvhost_as_gpu.cpp @@ -178,7 +178,7 @@ u32 nvhost_as_gpu::UnmapBuffer(const std::vector<u8>& input, std::vector<u8>& ou auto& gpu = system_instance.GPU(); auto cpu_addr = gpu.MemoryManager().GpuToCpuAddress(params.offset); ASSERT(cpu_addr); - system_instance.Renderer().Rasterizer().FlushAndInvalidateRegion(*cpu_addr, itr->second.size); + gpu.FlushAndInvalidateRegion(*cpu_addr, itr->second.size); params.offset = gpu.MemoryManager().UnmapBuffer(params.offset, itr->second.size); |
