diff options
| author | Lioncash <mathew1800@gmail.com> | 2017-01-31 23:29:29 -0500 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2017-02-01 01:06:00 -0500 |
| commit | 273ace7bb7408853a31448e73fbd251ed0009e87 (patch) | |
| tree | 9b4c8723b53c70e0e8438518422d8fcaf8941aba /Source/Core/VideoBackends/OGL/TextureCache.cpp | |
| parent | a9627ac88191f7127fbf51ccc761bcacaf13f19e (diff) | |
LightingShaderGen: Remove unnecessary includes
Diffstat (limited to 'Source/Core/VideoBackends/OGL/TextureCache.cpp')
| -rw-r--r-- | Source/Core/VideoBackends/OGL/TextureCache.cpp | 18 |
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" |
