summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/SWRenderer.cpp
diff options
context:
space:
mode:
authorMatthew Parlane <parlane@gmail.com>2017-01-24 08:17:24 +1300
committerGitHub <noreply@github.com>2017-01-24 08:17:24 +1300
commita43271e250e82e5622c6f3b8b26162d21426eb02 (patch)
tree139fb1867d1b839d39ffbe5e599ff12f2f4eef55 /Source/Core/VideoBackends/Software/SWRenderer.cpp
parentfa359d0c2883806d48a8478eeb5010e9f9e97f1e (diff)
parent70cf774a5cb1cecdc13e94fe4a070691c685ea89 (diff)
Merge pull request #4732 from lioncash/renderbase
RenderBase: Forward declare EFBAccessType
Diffstat (limited to 'Source/Core/VideoBackends/Software/SWRenderer.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/SWRenderer.cpp8
1 files changed, 3 insertions, 5 deletions
diff --git a/Source/Core/VideoBackends/Software/SWRenderer.cpp b/Source/Core/VideoBackends/Software/SWRenderer.cpp
index ba3c800ee4..746a533ee6 100644
--- a/Source/Core/VideoBackends/Software/SWRenderer.cpp
+++ b/Source/Core/VideoBackends/Software/SWRenderer.cpp
@@ -2,26 +2,24 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#include "VideoBackends/Software/SWRenderer.h"
+
#include <algorithm>
#include <atomic>
#include <mutex>
#include <string>
#include "Common/CommonTypes.h"
-#include "Common/FileUtil.h"
#include "Common/Logging/Log.h"
-#include "Common/StringUtil.h"
#include "Core/HW/Memmap.h"
#include "VideoBackends/Software/EfbCopy.h"
#include "VideoBackends/Software/SWOGLWindow.h"
-#include "VideoBackends/Software/SWRenderer.h"
#include "VideoCommon/BoundingBox.h"
-#include "VideoCommon/Fifo.h"
-#include "VideoCommon/ImageWrite.h"
#include "VideoCommon/OnScreenDisplay.h"
+#include "VideoCommon/VideoBackendBase.h"
#include "VideoCommon/VideoConfig.h"
static u8* s_xfbColorTexture[2];