diff options
| author | 2021-01-07 15:56:15 -0500 | |
|---|---|---|
| committer | 2021-02-13 13:07:56 -0500 | |
| commit | b675c44e494976cf8164203fc826b54e2fac467b (patch) | |
| tree | 68880d4617e87048fd1c325ed05dc26b434396cf /src/video_core/gpu.cpp | |
| parent | Address PR feedback (diff) | |
| download | yuzu-b675c44e494976cf8164203fc826b54e2fac467b.tar.gz yuzu-b675c44e494976cf8164203fc826b54e2fac467b.tar.xz yuzu-b675c44e494976cf8164203fc826b54e2fac467b.zip | |
rebase, fix name shadowing, more const
Diffstat (limited to 'src/video_core/gpu.cpp')
| -rw-r--r-- | src/video_core/gpu.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index 3db33faf3..51c63af4a 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp | |||
| @@ -493,8 +493,7 @@ void GPU::PushCommandBuffer(Tegra::ChCommandHeaderList& entries) { | |||
| 493 | // TODO(ameerj): RE proper async nvdec operation | 493 | // TODO(ameerj): RE proper async nvdec operation |
| 494 | // gpu_thread.SubmitCommandBuffer(std::move(entries)); | 494 | // gpu_thread.SubmitCommandBuffer(std::move(entries)); |
| 495 | 495 | ||
| 496 | cdma_pusher->Push(std::move(entries)); | 496 | cdma_pusher->ProcessEntries(std::move(entries)); |
| 497 | cdma_pusher->DispatchCalls(); | ||
| 498 | } | 497 | } |
| 499 | 498 | ||
| 500 | void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) { | 499 | void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) { |