diff options
| author | 2021-04-16 13:52:32 +1000 | |
|---|---|---|
| committer | 2021-04-16 13:52:32 +1000 | |
| commit | edb1d5d242f5b86543b17a091ed31ebb02dabec0 (patch) | |
| tree | 847ba9f74d7a2067a6356704d34738f258f25730 | |
| parent | nvdrv: Cleanup CDMA Processor on device closure (diff) | |
| download | yuzu-edb1d5d242f5b86543b17a091ed31ebb02dabec0.tar.gz yuzu-edb1d5d242f5b86543b17a091ed31ebb02dabec0.tar.xz yuzu-edb1d5d242f5b86543b17a091ed31ebb02dabec0.zip | |
Address issues
| -rw-r--r-- | src/video_core/gpu.cpp | 5 |
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 | ||
| 495 | void GPU::ClearCommandBuffer() { | 495 | void 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 | ||
| 502 | void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) { | 501 | void GPU::SwapBuffers(const Tegra::FramebufferConfig* framebuffer) { |