summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/astc.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-11-05 00:47:26 +0100
committerGitHub <noreply@github.com>2018-11-05 00:47:26 +0100
commit38c1c500ab733208d86972f61c29d6679c502c31 (patch)
treecfe859b9c8f92bada0c6902953470e627769d9ec /src/video_core/textures/astc.h
parentMerge pull request #1645 from dharmin/master (diff)
parentFix ASTC Decompressor to support depth parameter (diff)
downloadyuzu-38c1c500ab733208d86972f61c29d6679c502c31.tar
yuzu-38c1c500ab733208d86972f61c29d6679c502c31.tar.gz
yuzu-38c1c500ab733208d86972f61c29d6679c502c31.tar.bz2
yuzu-38c1c500ab733208d86972f61c29d6679c502c31.tar.lz
yuzu-38c1c500ab733208d86972f61c29d6679c502c31.tar.xz
yuzu-38c1c500ab733208d86972f61c29d6679c502c31.tar.zst
yuzu-38c1c500ab733208d86972f61c29d6679c502c31.zip
Diffstat (limited to 'src/video_core/textures/astc.h')
-rw-r--r--src/video_core/textures/astc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/textures/astc.h b/src/video_core/textures/astc.h
index f0d7c0e56..d419dd025 100644
--- a/src/video_core/textures/astc.h
+++ b/src/video_core/textures/astc.h
@@ -10,6 +10,6 @@
namespace Tegra::Texture::ASTC {
std::vector<uint8_t> Decompress(std::vector<uint8_t>& data, uint32_t width, uint32_t height,
- uint32_t block_width, uint32_t block_height);
+ uint32_t depth, uint32_t block_width, uint32_t block_height);
} // namespace Tegra::Texture::ASTC