Merge pull request #14464 from Dentomologist/system_use_forward_declarations_in_system.h

System: Use forward declarations in System.h
This commit is contained in:
Jordan Woyak 2026-03-14 20:24:52 -05:00 committed by GitHub
commit b6027da5db
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 3 deletions

View File

@ -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

View File

@ -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