summaryrefslogtreecommitdiff
path: root/src/video_core/gpu.cpp
diff options
context:
space:
mode:
authorGravatar Chloe Marcec2021-04-16 13:52:32 +1000
committerGravatar Chloe Marcec2021-04-16 13:52:32 +1000
commitedb1d5d242f5b86543b17a091ed31ebb02dabec0 (patch)
tree847ba9f74d7a2067a6356704d34738f258f25730 /src/video_core/gpu.cpp
parentnvdrv: Cleanup CDMA Processor on device closure (diff)
downloadyuzu-edb1d5d242f5b86543b17a091ed31ebb02dabec0.tar.gz
yuzu-edb1d5d242f5b86543b17a091ed31ebb02dabec0.tar.xz
yuzu-edb1d5d242f5b86543b17a091ed31ebb02dabec0.zip
Address issues
Diffstat (limited to 'src/video_core/gpu.cpp')
-rw-r--r--src/video_core/gpu.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/video_core/gpu.cpp b/src/video_core/gpu.cpp
index 811e248a3..36c31fec2 100644
--- a/src/video_core/gpu.cpp
+++ b/src/video_core/gpu.cpp
@@ -494,9 +494,8 @@ void GPU::PushCommandBuffer(Tegra::ChCommandHeaderList& entries) {
494 494
495void GPU::ClearCommandBuffer() { 495void GPU::ClearCommandBuffer() {
496 // This condition fires when a video stream ends, clear all intermediary data 496 // This condition fires when a video stream ends, clear all intermediary data
497 if (cdma_pusher) { 497 cdma_pusher.reset();
498 cdma_pusher.reset(); 498 LOG_INFO(Service_NVDRV, "NVDEC video stream ended");
499 }
500} 499}
501 500
502void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) { 501void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) {