summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/OGL/TextureCache.cpp
diff options
context:
space:
mode:
authorMarkus Wick <degasus@users.noreply.github.com>2017-02-01 15:23:18 +0100
committerGitHub <noreply@github.com>2017-02-01 15:23:18 +0100
commit543120c88e1536f3ab01fa6275772250f0945c88 (patch)
tree72dd749cb31ceee2a4019cbcd846216ee52135da /Source/Core/VideoBackends/OGL/TextureCache.cpp
parentf558ae4dd12d767583c3ff756c07ea9fd4a3549e (diff)
parent273ace7bb7408853a31448e73fbd251ed0009e87 (diff)
Merge pull request #4799 from lioncash/light-headered
LightingShaderGen: Remove unnecessary includes
Diffstat (limited to 'Source/Core/VideoBackends/OGL/TextureCache.cpp')
-rw-r--r--Source/Core/VideoBackends/OGL/TextureCache.cpp18
1 files changed, 5 insertions, 13 deletions
diff --git a/Source/Core/VideoBackends/OGL/TextureCache.cpp b/Source/Core/VideoBackends/OGL/TextureCache.cpp
index 8408a1f1b3..2cf0623939 100644
--- a/Source/Core/VideoBackends/OGL/TextureCache.cpp
+++ b/Source/Core/VideoBackends/OGL/TextureCache.cpp
@@ -2,35 +2,27 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#include "VideoBackends/OGL/TextureCache.h"
+
#include <algorithm>
#include <cmath>
+#include <cstring>
#include <fstream>
#include <memory>
#include <vector>
-#include "Common/Common.h"
-#include "Common/CommonPaths.h"
-#include "Common/FileUtil.h"
-#include "Common/Hash.h"
-#include "Common/MemoryUtil.h"
-#include "Common/StringUtil.h"
-
#include "Common/GL/GLInterfaceBase.h"
-
-#include "Core/HW/Memmap.h"
+#include "Common/MsgHandler.h"
+#include "Common/StringUtil.h"
#include "VideoBackends/OGL/FramebufferManager.h"
#include "VideoBackends/OGL/ProgramShaderCache.h"
#include "VideoBackends/OGL/Render.h"
#include "VideoBackends/OGL/SamplerCache.h"
#include "VideoBackends/OGL/StreamBuffer.h"
-#include "VideoBackends/OGL/TextureCache.h"
#include "VideoBackends/OGL/TextureConverter.h"
-#include "VideoCommon/BPStructs.h"
-#include "VideoCommon/HiresTextures.h"
#include "VideoCommon/ImageWrite.h"
-#include "VideoCommon/Statistics.h"
#include "VideoCommon/TextureDecoder.h"
#include "VideoCommon/VideoConfig.h"