diff options
| author | 2022-02-06 01:16:11 +0100 | |
|---|---|---|
| committer | 2022-10-06 21:00:52 +0200 | |
| commit | bc8b3d225eda388f0603830cbff8357893abb0f9 (patch) | |
| tree | 479b41b73913feceeeb0c9c6f3147d6491c0fa04 /src/video_core/dma_pusher.cpp | |
| parent | MemoryManager: initial multi paging system implementation. (diff) | |
| download | yuzu-bc8b3d225eda388f0603830cbff8357893abb0f9.tar.gz yuzu-bc8b3d225eda388f0603830cbff8357893abb0f9.tar.xz yuzu-bc8b3d225eda388f0603830cbff8357893abb0f9.zip | |
VideoCore: Refactor fencing system.
Diffstat (limited to 'src/video_core/dma_pusher.cpp')
| -rw-r--r-- | src/video_core/dma_pusher.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/video_core/dma_pusher.cpp b/src/video_core/dma_pusher.cpp index b01f04d0c..9835e3ac1 100644 --- a/src/video_core/dma_pusher.cpp +++ b/src/video_core/dma_pusher.cpp | |||
| @@ -24,8 +24,6 @@ MICROPROFILE_DEFINE(DispatchCalls, "GPU", "Execute command buffer", MP_RGB(128, | |||
| 24 | void DmaPusher::DispatchCalls() { | 24 | void DmaPusher::DispatchCalls() { |
| 25 | MICROPROFILE_SCOPE(DispatchCalls); | 25 | MICROPROFILE_SCOPE(DispatchCalls); |
| 26 | 26 | ||
| 27 | gpu.SyncGuestHost(); | ||
| 28 | |||
| 29 | dma_pushbuffer_subindex = 0; | 27 | dma_pushbuffer_subindex = 0; |
| 30 | 28 | ||
| 31 | dma_state.is_last_call = true; | 29 | dma_state.is_last_call = true; |
| @@ -36,7 +34,6 @@ void DmaPusher::DispatchCalls() { | |||
| 36 | } | 34 | } |
| 37 | } | 35 | } |
| 38 | gpu.FlushCommands(); | 36 | gpu.FlushCommands(); |
| 39 | gpu.SyncGuestHost(); | ||
| 40 | gpu.OnCommandListEnd(); | 37 | gpu.OnCommandListEnd(); |
| 41 | } | 38 | } |
| 42 | 39 | ||