From 4c5c86058724353ad38e60a538c86578df0ce117 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Tue, 25 Jan 2022 12:53:53 -0500 Subject: [PATCH] gpu: Remove obsoleted CDMAPusher() accessors These were obsoleted in 10cc89bfdf3b9f05f731859e7a35b0541e523f2e but were accidentally overlooked. --- src/video_core/gpu.h | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index 3188b83edf..42e301bb2a 100644 --- a/src/video_core/gpu.h +++ b/src/video_core/gpu.h @@ -190,12 +190,6 @@ public: /// Returns a const reference to the GPU DMA pusher. [[nodiscard]] const Tegra::DmaPusher& DmaPusher() const; - /// Returns a reference to the GPU CDMA pusher. - [[nodiscard]] Tegra::CDmaPusher& CDmaPusher(); - - /// Returns a const reference to the GPU CDMA pusher. - [[nodiscard]] const Tegra::CDmaPusher& CDmaPusher() const; - /// Returns a reference to the underlying renderer. [[nodiscard]] VideoCore::RendererBase& Renderer();