diff options
| author | 2022-03-19 00:06:57 -0400 | |
|---|---|---|
| committer | 2022-03-19 15:01:31 -0400 | |
| commit | 1bc7d61b5749ed29108cbbbf0a78a41b79504eff (patch) | |
| tree | 25b0362101d8f7fc6deeed1bb989d3f33258cee5 /src/video_core/textures | |
| parent | common: Reduce unused includes (diff) | |
| download | yuzu-1bc7d61b5749ed29108cbbbf0a78a41b79504eff.tar.gz yuzu-1bc7d61b5749ed29108cbbbf0a78a41b79504eff.tar.xz yuzu-1bc7d61b5749ed29108cbbbf0a78a41b79504eff.zip | |
video_core: Reduce unused includes
Diffstat (limited to 'src/video_core/textures')
| -rw-r--r-- | src/video_core/textures/astc.h | 3 | ||||
| -rw-r--r-- | src/video_core/textures/decoders.cpp | 2 | ||||
| -rw-r--r-- | src/video_core/textures/texture.cpp | 1 |
3 files changed, 0 insertions, 6 deletions
diff --git a/src/video_core/textures/astc.h b/src/video_core/textures/astc.h index 14d2beec0..564ae1e36 100644 --- a/src/video_core/textures/astc.h +++ b/src/video_core/textures/astc.h | |||
| @@ -4,9 +4,6 @@ | |||
| 4 | 4 | ||
| 5 | #pragma once | 5 | #pragma once |
| 6 | 6 | ||
| 7 | #include <bit> | ||
| 8 | #include "common/common_types.h" | ||
| 9 | |||
| 10 | namespace Tegra::Texture::ASTC { | 7 | namespace Tegra::Texture::ASTC { |
| 11 | 8 | ||
| 12 | void Decompress(std::span<const uint8_t> data, uint32_t width, uint32_t height, uint32_t depth, | 9 | void Decompress(std::span<const uint8_t> data, uint32_t width, uint32_t height, uint32_t depth, |
diff --git a/src/video_core/textures/decoders.cpp b/src/video_core/textures/decoders.cpp index 24e943e4c..6dae23049 100644 --- a/src/video_core/textures/decoders.cpp +++ b/src/video_core/textures/decoders.cpp | |||
| @@ -6,7 +6,6 @@ | |||
| 6 | #include <cmath> | 6 | #include <cmath> |
| 7 | #include <cstring> | 7 | #include <cstring> |
| 8 | #include <span> | 8 | #include <span> |
| 9 | #include <utility> | ||
| 10 | 9 | ||
| 11 | #include "common/alignment.h" | 10 | #include "common/alignment.h" |
| 12 | #include "common/assert.h" | 11 | #include "common/assert.h" |
| @@ -14,7 +13,6 @@ | |||
| 14 | #include "common/div_ceil.h" | 13 | #include "common/div_ceil.h" |
| 15 | #include "video_core/gpu.h" | 14 | #include "video_core/gpu.h" |
| 16 | #include "video_core/textures/decoders.h" | 15 | #include "video_core/textures/decoders.h" |
| 17 | #include "video_core/textures/texture.h" | ||
| 18 | 16 | ||
| 19 | namespace Tegra::Texture { | 17 | namespace Tegra::Texture { |
| 20 | namespace { | 18 | namespace { |
diff --git a/src/video_core/textures/texture.cpp b/src/video_core/textures/texture.cpp index 06954963d..f56b4b9f9 100644 --- a/src/video_core/textures/texture.cpp +++ b/src/video_core/textures/texture.cpp | |||
| @@ -2,7 +2,6 @@ | |||
| 2 | // Licensed under GPLv2 or any later version | 2 | // Licensed under GPLv2 or any later version |
| 3 | // Refer to the license.txt file included. | 3 | // Refer to the license.txt file included. |
| 4 | 4 | ||
| 5 | #include <algorithm> | ||
| 6 | #include <array> | 5 | #include <array> |
| 7 | 6 | ||
| 8 | #include "common/cityhash.h" | 7 | #include "common/cityhash.h" |