summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/PixelShaderGen.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-01-31 23:29:29 -0500
committerLioncash <mathew1800@gmail.com>2017-02-01 01:06:00 -0500
commit273ace7bb7408853a31448e73fbd251ed0009e87 (patch)
tree9b4c8723b53c70e0e8438518422d8fcaf8941aba /Source/Core/VideoCommon/PixelShaderGen.cpp
parenta9627ac88191f7127fbf51ccc761bcacaf13f19e (diff)
LightingShaderGen: Remove unnecessary includes
Diffstat (limited to 'Source/Core/VideoCommon/PixelShaderGen.cpp')
-rw-r--r--Source/Core/VideoCommon/PixelShaderGen.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/PixelShaderGen.cpp b/Source/Core/VideoCommon/PixelShaderGen.cpp
index 7a718c8f38..3c09e200f0 100644
--- a/Source/Core/VideoCommon/PixelShaderGen.cpp
+++ b/Source/Core/VideoCommon/PixelShaderGen.cpp
@@ -2,6 +2,8 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#include "VideoCommon/PixelShaderGen.h"
+
#include <cmath>
#include <cstdio>
#include <cstring>
@@ -13,7 +15,7 @@
#include "VideoCommon/BoundingBox.h"
#include "VideoCommon/DriverDetails.h"
#include "VideoCommon/LightingShaderGen.h"
-#include "VideoCommon/PixelShaderGen.h"
+#include "VideoCommon/NativeVertexFormat.h"
#include "VideoCommon/VertexLoaderManager.h"
#include "VideoCommon/VideoCommon.h"
#include "VideoCommon/VideoConfig.h"