summaryrefslogtreecommitdiff
path: root/src/video_core/textures
diff options
context:
space:
mode:
authorGravatar Lioncash2019-04-05 23:59:54 -0400
committerGravatar Lioncash2019-04-06 00:03:35 -0400
commitfbf452ab0e6b4a82ba749ccfdb3f5c89d48b4aee (patch)
tree841a932ace4674b47ab5310daf3b8d0b00caffb4 /src/video_core/textures
parentMerge pull request #2317 from FernandoS27/sync (diff)
downloadyuzu-fbf452ab0e6b4a82ba749ccfdb3f5c89d48b4aee.tar.gz
yuzu-fbf452ab0e6b4a82ba749ccfdb3f5c89d48b4aee.tar.xz
yuzu-fbf452ab0e6b4a82ba749ccfdb3f5c89d48b4aee.zip
video_core/texures/texture: Remove unnecessary includes
Nothing in this header relies on common_funcs or the memory manager. This gets rid of reliance on indirect inclusions in the OpenGL caches.
Diffstat (limited to 'src/video_core/textures')
-rw-r--r--src/video_core/textures/texture.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/video_core/textures/texture.h b/src/video_core/textures/texture.h
index 93ecc6e31..bea0d5bc2 100644
--- a/src/video_core/textures/texture.h
+++ b/src/video_core/textures/texture.h
@@ -7,9 +7,7 @@
7#include <array> 7#include <array>
8#include "common/assert.h" 8#include "common/assert.h"
9#include "common/bit_field.h" 9#include "common/bit_field.h"
10#include "common/common_funcs.h"
11#include "common/common_types.h" 10#include "common/common_types.h"
12#include "video_core/memory_manager.h"
13 11
14namespace Tegra::Texture { 12namespace Tegra::Texture {
15 13