summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/RenderBase.cpp
diff options
context:
space:
mode:
authorScott Mansell <phiren@gmail.com>2023-01-31 01:19:19 +1300
committerScott Mansell <phiren@gmail.com>2023-01-31 19:41:24 +1300
commitabfc75f3629fb0fcef42682d25249595923c7771 (patch)
tree2618ef4684eec6d06ddacf2f4c93398faa694282 /Source/Core/VideoCommon/RenderBase.cpp
parentec8f46b02c21fec9b24518e6788a4df413baf8f9 (diff)
Cleanup headers
Diffstat (limited to 'Source/Core/VideoCommon/RenderBase.cpp')
-rw-r--r--Source/Core/VideoCommon/RenderBase.cpp22
1 files changed, 5 insertions, 17 deletions
diff --git a/Source/Core/VideoCommon/RenderBase.cpp b/Source/Core/VideoCommon/RenderBase.cpp
index e252921c9f..b02738d037 100644
--- a/Source/Core/VideoCommon/RenderBase.cpp
+++ b/Source/Core/VideoCommon/RenderBase.cpp
@@ -23,38 +23,27 @@
#include "Common/Assert.h"
#include "Common/ChunkFile.h"
#include "Common/CommonTypes.h"
-#include "Common/Config/Config.h"
#include "Common/Logging/Log.h"
#include "Common/MsgHandler.h"
-#include "Core/Config/GraphicsSettings.h"
#include "Core/Config/SYSCONFSettings.h"
#include "Core/ConfigManager.h"
-#include "Core/Core.h"
-#include "Core/DolphinAnalytics.h"
-#include "Core/FifoPlayer/FifoRecorder.h"
-#include "Core/FreeLookConfig.h"
-#include "Core/HW/SystemTimers.h"
#include "Core/System.h"
-#include "VideoCommon/AbstractFramebuffer.h"
#include "VideoCommon/AbstractGfx.h"
-#include "VideoCommon/AbstractTexture.h"
+#include "VideoCommon/BPMemory.h"
#include "VideoCommon/BoundingBox.h"
-#include "VideoCommon/CommandProcessor.h"
+#include "VideoCommon/BPFunctions.h"
#include "VideoCommon/FrameDumper.h"
-#include "VideoCommon/FramebufferManager.h"
-#include "VideoCommon/GraphicsModSystem/Runtime/GraphicsModManager.h"
-#include "VideoCommon/OnScreenDisplay.h"
-#include "VideoCommon/PerformanceMetrics.h"
+ #include "VideoCommon/FramebufferManager.h"
#include "VideoCommon/PixelEngine.h"
#include "VideoCommon/PixelShaderManager.h"
#include "VideoCommon/Present.h"
-#include "VideoCommon/ShaderCache.h"
-#include "VideoCommon/Statistics.h"
#include "VideoCommon/VertexManagerBase.h"
#include "VideoCommon/VideoBackendBase.h"
#include "VideoCommon/VideoConfig.h"
+#include "VideoCommon/VideoCommon.h"
+#include "VideoCommon/XFMemory.h"
std::unique_ptr<Renderer> g_renderer;
@@ -62,7 +51,6 @@ Renderer::Renderer()
: m_prev_efb_format{PixelFormat::INVALID_FMT},
m_last_xfb_width{MAX_XFB_WIDTH}, m_last_xfb_height{MAX_XFB_HEIGHT}
{
- UpdateActiveConfig();
CalculateTargetSize();
UpdateWidescreen();