summaryrefslogtreecommitdiff
path: root/Source
diff options
context:
space:
mode:
Diffstat (limited to 'Source')
-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
{