summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2022-01-25 12:53:53 -0500
committerGravatar Lioncash2022-01-25 12:53:56 -0500
commit9b38c8ef08cc6f7496308ca84fc81669a8b09044 (patch)
tree0847cdbd6d9434a1f01edf23a1b90e11d5776227 /src
parentMerge pull request #7761 from v1993/patch-8 (diff)
downloadyuzu-9b38c8ef08cc6f7496308ca84fc81669a8b09044.tar.gz
yuzu-9b38c8ef08cc6f7496308ca84fc81669a8b09044.tar.xz
yuzu-9b38c8ef08cc6f7496308ca84fc81669a8b09044.zip
gpu: Remove obsoleted CDMAPusher() accessors
These were obsoleted in 2c47f8aa1886522898b5b3a73185b5662be3e9f3 but were accidentally overlooked.
Diffstat (limited to '')
-rw-r--r--src/video_core/gpu.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index 3188b83ed..42e301bb2 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -190,12 +190,6 @@ public:
190 /// Returns a const reference to the GPU DMA pusher. 190 /// Returns a const reference to the GPU DMA pusher.
191 [[nodiscard]] const Tegra::DmaPusher& DmaPusher() const; 191 [[nodiscard]] const Tegra::DmaPusher& DmaPusher() const;
192 192
193 /// Returns a reference to the GPU CDMA pusher.
194 [[nodiscard]] Tegra::CDmaPusher& CDmaPusher();
195
196 /// Returns a const reference to the GPU CDMA pusher.
197 [[nodiscard]] const Tegra::CDmaPusher& CDmaPusher() const;
198
199 /// Returns a reference to the underlying renderer. 193 /// Returns a reference to the underlying renderer.
200 [[nodiscard]] VideoCore::RendererBase& Renderer(); 194 [[nodiscard]] VideoCore::RendererBase& Renderer();
201 195