summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2022-01-25 22:16:04 +0100
committerGitHub <noreply@github.com>2022-01-25 22:16:04 +0100
commitc93dd459972208813c251ad35f4f8132698dedd6 (patch)
tree76136338bdc55bc719f5840d68f45799c550225e
parentMerge pull request #7778 from lioncash/comma (diff)
parentgpu: Tidy up forward declarations (diff)
downloadyuzu-c93dd459972208813c251ad35f4f8132698dedd6.tar
yuzu-c93dd459972208813c251ad35f4f8132698dedd6.tar.gz
yuzu-c93dd459972208813c251ad35f4f8132698dedd6.tar.bz2
yuzu-c93dd459972208813c251ad35f4f8132698dedd6.tar.lz
yuzu-c93dd459972208813c251ad35f4f8132698dedd6.tar.xz
yuzu-c93dd459972208813c251ad35f4f8132698dedd6.tar.zst
yuzu-c93dd459972208813c251ad35f4f8132698dedd6.zip
-rw-r--r--src/video_core/gpu.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index 3188b83ed..26b8ea233 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -12,9 +12,6 @@
#include "video_core/framebuffer_config.h"
namespace Core {
-namespace Frontend {
-class EmuWindow;
-}
class System;
} // namespace Core
@@ -25,7 +22,6 @@ class ShaderNotify;
namespace Tegra {
class DmaPusher;
-class CDmaPusher;
struct CommandList;
enum class RenderTargetFormat : u32 {
@@ -88,15 +84,9 @@ enum class DepthFormat : u32 {
D32_FLOAT_S8X24_UINT = 0x19,
};
-struct CommandListHeader;
-class DebugContext;
-
namespace Engines {
-class Fermi2D;
class Maxwell3D;
-class MaxwellDMA;
class KeplerCompute;
-class KeplerMemory;
} // namespace Engines
enum class EngineID {
@@ -190,12 +180,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();