summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/GeometryShaderGen.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-02-01 10:56:13 -0500
committerLioncash <mathew1800@gmail.com>2017-02-01 12:19:55 -0500
commit468f623d2744ad47009b655c2720e82b302ea102 (patch)
treeb5e2b3032117c50a3866e7e967c1f04986749528 /Source/Core/VideoCommon/GeometryShaderGen.cpp
parent543120c88e1536f3ab01fa6275772250f0945c88 (diff)
ShaderGenCommon: Remove unnecessary includes
Diffstat (limited to 'Source/Core/VideoCommon/GeometryShaderGen.cpp')
-rw-r--r--Source/Core/VideoCommon/GeometryShaderGen.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/GeometryShaderGen.cpp b/Source/Core/VideoCommon/GeometryShaderGen.cpp
index aeb7f76b4b..5695e9c256 100644
--- a/Source/Core/VideoCommon/GeometryShaderGen.cpp
+++ b/Source/Core/VideoCommon/GeometryShaderGen.cpp
@@ -2,16 +2,17 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#include "VideoCommon/GeometryShaderGen.h"
+
#include <cmath>
#include <cstring>
#include "Common/CommonTypes.h"
-#include "VideoCommon/BPMemory.h"
#include "VideoCommon/DriverDetails.h"
-#include "VideoCommon/GeometryShaderGen.h"
#include "VideoCommon/LightingShaderGen.h"
#include "VideoCommon/VideoCommon.h"
#include "VideoCommon/VideoConfig.h"
+#include "VideoCommon/XFMemory.h"
static const char* primitives_ogl[] = {"points", "lines", "triangles"};