summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2017-06-18 23:28:28 -0400
committerLioncash <mathew1800@gmail.com>2017-06-18 23:29:22 -0400
commit07cddf6f7fe7399be9c3ba279726afcb2b052d63 (patch)
tree0f934ea41b28d2e5600bf40c38fa774b62faa182 /Source/Core
parent4c2b0780173f2a7b29510cd9cd63e55c3eb7df6f (diff)
AbstractTexture: Add missing includes (and remove unnecessary ones)
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/VideoBackends/D3D/DXTexture.h1
-rw-r--r--Source/Core/VideoBackends/Null/NullTexture.h1
-rw-r--r--Source/Core/VideoBackends/OGL/OGLTexture.h1
-rw-r--r--Source/Core/VideoBackends/Software/SWTexture.h1
-rw-r--r--Source/Core/VideoBackends/Vulkan/VKTexture.h1
-rw-r--r--Source/Core/VideoCommon/AbstractTexture.h4
6 files changed, 3 insertions, 6 deletions
diff --git a/Source/Core/VideoBackends/D3D/DXTexture.h b/Source/Core/VideoBackends/D3D/DXTexture.h
index 73055343f8..a57c104fa0 100644
--- a/Source/Core/VideoBackends/D3D/DXTexture.h
+++ b/Source/Core/VideoBackends/D3D/DXTexture.h
@@ -7,7 +7,6 @@
#include "Common/CommonTypes.h"
#include "VideoCommon/AbstractTexture.h"
-#include "VideoCommon/VideoCommon.h"
class D3DTexture2D;
diff --git a/Source/Core/VideoBackends/Null/NullTexture.h b/Source/Core/VideoBackends/Null/NullTexture.h
index c8f8e77004..65f4252050 100644
--- a/Source/Core/VideoBackends/Null/NullTexture.h
+++ b/Source/Core/VideoBackends/Null/NullTexture.h
@@ -7,7 +7,6 @@
#include "Common/CommonTypes.h"
#include "VideoCommon/AbstractTexture.h"
-#include "VideoCommon/VideoCommon.h"
namespace Null
{
diff --git a/Source/Core/VideoBackends/OGL/OGLTexture.h b/Source/Core/VideoBackends/OGL/OGLTexture.h
index 34322bf120..029afe272f 100644
--- a/Source/Core/VideoBackends/OGL/OGLTexture.h
+++ b/Source/Core/VideoBackends/OGL/OGLTexture.h
@@ -7,7 +7,6 @@
#include "Common/GL/GLUtil.h"
#include "VideoCommon/AbstractTexture.h"
-#include "VideoCommon/VideoCommon.h"
namespace OGL
{
diff --git a/Source/Core/VideoBackends/Software/SWTexture.h b/Source/Core/VideoBackends/Software/SWTexture.h
index 8737792cc0..4d6189bb4f 100644
--- a/Source/Core/VideoBackends/Software/SWTexture.h
+++ b/Source/Core/VideoBackends/Software/SWTexture.h
@@ -7,7 +7,6 @@
#include "Common/CommonTypes.h"
#include "VideoCommon/AbstractTexture.h"
-#include "VideoCommon/VideoCommon.h"
namespace SW
{
diff --git a/Source/Core/VideoBackends/Vulkan/VKTexture.h b/Source/Core/VideoBackends/Vulkan/VKTexture.h
index 0983703db5..056f50c6e8 100644
--- a/Source/Core/VideoBackends/Vulkan/VKTexture.h
+++ b/Source/Core/VideoBackends/Vulkan/VKTexture.h
@@ -8,7 +8,6 @@
#include <vulkan/vulkan.h>
#include "VideoCommon/AbstractTexture.h"
-#include "VideoCommon/VideoCommon.h"
namespace Vulkan
{
diff --git a/Source/Core/VideoCommon/AbstractTexture.h b/Source/Core/VideoCommon/AbstractTexture.h
index 2b06d9c401..433aae60ac 100644
--- a/Source/Core/VideoCommon/AbstractTexture.h
+++ b/Source/Core/VideoCommon/AbstractTexture.h
@@ -4,10 +4,12 @@
#pragma once
+#include <cstddef>
+#include <string>
+
#include "Common/CommonTypes.h"
#include "Common/MathUtil.h"
#include "VideoCommon/TextureConfig.h"
-#include "VideoCommon/VideoCommon.h"
class AbstractTexture
{