diff options
author | bunnei <bunneidev@gmail.com> | 2021-04-26 08:05:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-26 08:05:58 +0200 |
commit | 3c5fb536348b42924b05c2660168529ca80cb30a (patch) | |
tree | 23c8ea71a6e6800da58dc006cbf95b25c3f62379 /src/video_core | |
parent | Merge pull request #6241 from Morph1984/new-keyboard-bindings (diff) | |
parent | nvhost_vic: Fix device closure (diff) | |
download | yuzu-3c5fb536348b42924b05c2660168529ca80cb30a.tar yuzu-3c5fb536348b42924b05c2660168529ca80cb30a.tar.gz yuzu-3c5fb536348b42924b05c2660168529ca80cb30a.tar.bz2 yuzu-3c5fb536348b42924b05c2660168529ca80cb30a.tar.lz yuzu-3c5fb536348b42924b05c2660168529ca80cb30a.tar.xz yuzu-3c5fb536348b42924b05c2660168529ca80cb30a.tar.zst yuzu-3c5fb536348b42924b05c2660168529ca80cb30a.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/gpu.cpp | 4 | ||||
-rw-r--r-- | src/video_core/gpu.h | 4 |
2 files changed, 3 insertions, 5 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp index 7c42f1177..a38024242 100644 --- a/src/video_core/gpu.cpp +++ b/src/video_core/gpu.cpp @@ -492,10 +492,8 @@ void GPU::PushCommandBuffer(Tegra::ChCommandHeaderList& entries) { cdma_pusher->ProcessEntries(std::move(entries)); } -void GPU::ClearCommandBuffer() { - // This condition fires when a video stream ends, clear all intermediary data +void GPU::ClearCdmaInstance() { cdma_pusher.reset(); - LOG_INFO(Service_NVDRV, "NVDEC video stream ended"); } void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) { diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index b1960ea86..8669e9940 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -324,8 +324,8 @@ public: /// Push GPU command buffer entries to be processed void PushCommandBuffer(Tegra::ChCommandHeaderList& entries); - /// Frees the CDMAPusher to free up resources - void ClearCommandBuffer(); + /// Frees the CDMAPusher instance to free up resources + void ClearCdmaInstance(); /// Swap buffers (render frame) void SwapBuffers(const Tegra::FramebufferConfig* framebuffer); |