summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-04-06 06:14:34 +0200
committerLioncash <mathew1800@gmail.com>2019-04-06 06:14:36 +0200
commit89c106e31b28b8d2c4e874878f2795f340c9a532 (patch)
tree09002fed0b7cff39ff3ad978f788eb256a09bf37 /src/video_core/textures
parentvideo_core/texures/texture: Remove unnecessary includes (diff)
downloadyuzu-89c106e31b28b8d2c4e874878f2795f340c9a532.tar
yuzu-89c106e31b28b8d2c4e874878f2795f340c9a532.tar.gz
yuzu-89c106e31b28b8d2c4e874878f2795f340c9a532.tar.bz2
yuzu-89c106e31b28b8d2c4e874878f2795f340c9a532.tar.lz
yuzu-89c106e31b28b8d2c4e874878f2795f340c9a532.tar.xz
yuzu-89c106e31b28b8d2c4e874878f2795f340c9a532.tar.zst
yuzu-89c106e31b28b8d2c4e874878f2795f340c9a532.zip
Diffstat (limited to 'src/video_core/textures')
-rw-r--r--src/video_core/textures/convert.cpp1
-rw-r--r--src/video_core/textures/convert.h5
2 files changed, 5 insertions, 1 deletions
diff --git a/src/video_core/textures/convert.cpp b/src/video_core/textures/convert.cpp
index 5e439f036..82050bd51 100644
--- a/src/video_core/textures/convert.cpp
+++ b/src/video_core/textures/convert.cpp
@@ -10,6 +10,7 @@
#include "common/assert.h"
#include "common/common_types.h"
#include "common/logging/log.h"
+#include "video_core/surface.h"
#include "video_core/textures/astc.h"
#include "video_core/textures/convert.h"
diff --git a/src/video_core/textures/convert.h b/src/video_core/textures/convert.h
index 07cd8b5da..12542e71c 100644
--- a/src/video_core/textures/convert.h
+++ b/src/video_core/textures/convert.h
@@ -5,7 +5,10 @@
#pragma once
#include "common/common_types.h"
-#include "video_core/surface.h"
+
+namespace VideoCore::Surface {
+enum class PixelFormat;
+}
namespace Tegra::Texture {