summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/TextureCacheBase.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-07-16 20:18:48 -0400
committerLioncash <mathew1800@gmail.com>2019-07-16 20:54:34 -0400
commit2b9389202e0d1c8451aff176233cf211feef59dd (patch)
treec4ab726caa7d4f7470ccf11a120117dc1154b650 /Source/Core/VideoCommon/TextureCacheBase.h
parent9dd8f82e78648a34bf3246dea6758215b7224aff (diff)
VideoCommon: Remove unused MathUtil.h include from VideoCommon.h
This header doesn't actually make use of MathUtil.h within itself, so this can be removed. Many other source files used VideoCommon.h as an indirect include to include MathUtil.h, so these includes can also be adjusted. While we're at it, we can also migrate valid inclusions of VideoCommon.h into cpp files where it can feasibly be done to minimize propagating it via other headers.
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.h')
-rw-r--r--Source/Core/VideoCommon/TextureCacheBase.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/TextureCacheBase.h b/Source/Core/VideoCommon/TextureCacheBase.h
index 2f42df9a05..12b39039dd 100644
--- a/Source/Core/VideoCommon/TextureCacheBase.h
+++ b/Source/Core/VideoCommon/TextureCacheBase.h
@@ -16,15 +16,15 @@
#include <vector>
#include "Common/CommonTypes.h"
+#include "Common/MathUtil.h"
#include "VideoCommon/AbstractTexture.h"
#include "VideoCommon/BPMemory.h"
#include "VideoCommon/TextureConfig.h"
#include "VideoCommon/TextureDecoder.h"
-#include "VideoCommon/VideoCommon.h"
-struct VideoConfig;
class AbstractFramebuffer;
class AbstractStagingTexture;
+struct VideoConfig;
struct TextureAndTLUTFormat
{