summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures
diff options
context:
space:
mode:
authorameerj <52414509+ameerj@users.noreply.github.com>2022-03-19 05:06:57 +0100
committerameerj <52414509+ameerj@users.noreply.github.com>2022-03-19 20:01:31 +0100
commit1bc7d61b5749ed29108cbbbf0a78a41b79504eff (patch)
tree25b0362101d8f7fc6deeed1bb989d3f33258cee5 /src/video_core/textures
parentcommon: Reduce unused includes (diff)
downloadyuzu-1bc7d61b5749ed29108cbbbf0a78a41b79504eff.tar
yuzu-1bc7d61b5749ed29108cbbbf0a78a41b79504eff.tar.gz
yuzu-1bc7d61b5749ed29108cbbbf0a78a41b79504eff.tar.bz2
yuzu-1bc7d61b5749ed29108cbbbf0a78a41b79504eff.tar.lz
yuzu-1bc7d61b5749ed29108cbbbf0a78a41b79504eff.tar.xz
yuzu-1bc7d61b5749ed29108cbbbf0a78a41b79504eff.tar.zst
yuzu-1bc7d61b5749ed29108cbbbf0a78a41b79504eff.zip
Diffstat (limited to 'src/video_core/textures')
-rw-r--r--src/video_core/textures/astc.h3
-rw-r--r--src/video_core/textures/decoders.cpp2
-rw-r--r--src/video_core/textures/texture.cpp1
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 @@
#pragma once
-#include <bit>
-#include "common/common_types.h"
-
namespace Tegra::Texture::ASTC {
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 @@
#include <cmath>
#include <cstring>
#include <span>
-#include <utility>
#include "common/alignment.h"
#include "common/assert.h"
@@ -14,7 +13,6 @@
#include "common/div_ceil.h"
#include "video_core/gpu.h"
#include "video_core/textures/decoders.h"
-#include "video_core/textures/texture.h"
namespace Tegra::Texture {
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 @@
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
-#include <algorithm>
#include <array>
#include "common/cityhash.h"