summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.cpp
diff options
context:
space:
mode:
authorGravatar ameerj2021-04-24 19:22:09 -0400
committerGravatar ameerj2021-04-24 19:22:09 -0400
commit75e0d16caa994f0765f78268fb5a94496914d23b (patch)
tree378eab8a370a1f95ad04d9828e1e6e74d3e8fbac /src/video_core/gpu.cpp
parentMerge pull request #6234 from Morph1984/stub-am (diff)
downloadyuzu-75e0d16caa994f0765f78268fb5a94496914d23b.tar.gz
yuzu-75e0d16caa994f0765f78268fb5a94496914d23b.tar.xz
yuzu-75e0d16caa994f0765f78268fb5a94496914d23b.zip
nvhost_vic: Fix device closure
Implements the OnClose method of the nvhost_vic device, and removes the remnants of an older implementation. Also cleans up some of the surrounding code.
Diffstat (limited to 'src/video_core/gpu.cpp')
-rw-r--r--src/video_core/gpu.cpp4
1 files changed, 1 insertions, 3 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) {
492 cdma_pusher->ProcessEntries(std::move(entries)); 492 cdma_pusher->ProcessEntries(std::move(entries));
493} 493}
494 494
495void GPU::ClearCommandBuffer() { 495void GPU::ClearCdmaInstance() {
496 // This condition fires when a video stream ends, clear all intermediary data
497 cdma_pusher.reset(); 496 cdma_pusher.reset();
498 LOG_INFO(Service_NVDRV, "NVDEC video stream ended");
499} 497}
500 498
501void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) { 499void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) {