summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2026-03-14 20:24:52 -0500
committerGitHub <noreply@github.com>2026-03-14 20:24:52 -0500
commitb6027da5db00abd73041d794fbb7b8d7887725dc (patch)
tree6692870c1cc26ea5ba7d25c3c038332ebf41d7d0
parent210f70a50105ed2508f47787dec31858d7a91b8b (diff)
parent2aba231915a785e14811fc4a44f9c296f0f918ff (diff)
Merge pull request #14464 from Dentomologist/system_use_forward_declarations_in_system.h
System: Use forward declarations in System.h
-rw-r--r--Source/Core/Core/System.cpp2
-rw-r--r--Source/Core/Core/System.h5
2 files changed, 4 insertions, 3 deletions
diff --git a/Source/Core/Core/System.cpp b/Source/Core/Core/System.cpp
index 2c64c7f2b6..686d1a3264 100644
--- a/Source/Core/Core/System.cpp
+++ b/Source/Core/Core/System.cpp
@@ -36,10 +36,12 @@
#include "VideoCommon/CommandProcessor.h"
#include "VideoCommon/Fifo.h"
#include "VideoCommon/GeometryShaderManager.h"
+#include "VideoCommon/PerformanceMetrics.h"
#include "VideoCommon/PixelEngine.h"
#include "VideoCommon/PixelShaderManager.h"
#include "VideoCommon/Resources/CustomResourceManager.h"
#include "VideoCommon/VertexShaderManager.h"
+#include "VideoCommon/VideoEvents.h"
#include "VideoCommon/XFStateManager.h"
namespace Core
diff --git a/Source/Core/Core/System.h b/Source/Core/Core/System.h
index 8b8e8e4a87..a170c608ee 100644
--- a/Source/Core/Core/System.h
+++ b/Source/Core/Core/System.h
@@ -5,16 +5,15 @@
#include <memory>
-#include "VideoCommon/PerformanceMetrics.h"
-#include "VideoCommon/VideoEvents.h"
-
class GeometryShaderManager;
class Interpreter;
class JitInterface;
+class PerformanceMetrics;
class PixelShaderManager;
class SoundStream;
struct Sram;
class VertexShaderManager;
+struct VideoEvents;
class XFStateManager;
namespace AudioInterface