summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/PixelEngine.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-09-02 13:23:26 -0400
committerLioncash <mathew1800@gmail.com>2017-09-02 13:34:21 -0400
commitf6e3a39c0eb9092a2696a87926f8f51de8499294 (patch)
tree1756e91f5e97b2df10a092adc7c288652aac2f64 /Source/Core/VideoCommon/PixelEngine.cpp
parent1191280e76ab596eed78641d9169d270a3332ab4 (diff)
CommandProcessor: Remove unnecessary include
Gets rid of some indirect inclusion.
Diffstat (limited to 'Source/Core/VideoCommon/PixelEngine.cpp')
-rw-r--r--Source/Core/VideoCommon/PixelEngine.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/PixelEngine.cpp b/Source/Core/VideoCommon/PixelEngine.cpp
index 02cda26917..e5136e6d50 100644
--- a/Source/Core/VideoCommon/PixelEngine.cpp
+++ b/Source/Core/VideoCommon/PixelEngine.cpp
@@ -4,6 +4,8 @@
// http://www.nvidia.com/object/General_FAQ.html#t6 !!!!!
+#include "VideoCommon/PixelEngine.h"
+
#include <mutex>
#include "Common/ChunkFile.h"
@@ -15,10 +17,10 @@
#include "Core/HW/MMIO.h"
#include "Core/HW/ProcessorInterface.h"
#include "VideoCommon/BoundingBox.h"
-#include "VideoCommon/CommandProcessor.h"
#include "VideoCommon/Fifo.h"
-#include "VideoCommon/PixelEngine.h"
+#include "VideoCommon/PerfQueryBase.h"
#include "VideoCommon/PixelShaderManager.h"
+#include "VideoCommon/VideoBackendBase.h"
namespace PixelEngine
{