summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/astc.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2019-03-07 03:56:20 +0100
committerGitHub <noreply@github.com>2019-03-07 03:56:20 +0100
commit076c76f4e41602f94c06e23f5d1f1ff1cddca95b (patch)
treeb24cdf1f99ae12647dab27acec7fd0e00efdf506 /src/video_core/textures/astc.h
parentMerge pull request #2197 from lioncash/include (diff)
parentgl_rasterizer_cache: Move format conversion to its own file (diff)
downloadyuzu-076c76f4e41602f94c06e23f5d1f1ff1cddca95b.tar
yuzu-076c76f4e41602f94c06e23f5d1f1ff1cddca95b.tar.gz
yuzu-076c76f4e41602f94c06e23f5d1f1ff1cddca95b.tar.bz2
yuzu-076c76f4e41602f94c06e23f5d1f1ff1cddca95b.tar.lz
yuzu-076c76f4e41602f94c06e23f5d1f1ff1cddca95b.tar.xz
yuzu-076c76f4e41602f94c06e23f5d1f1ff1cddca95b.tar.zst
yuzu-076c76f4e41602f94c06e23f5d1f1ff1cddca95b.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 d419dd025..991cdba72 100644
--- a/src/video_core/textures/astc.h
+++ b/src/video_core/textures/astc.h
@@ -9,7 +9,7 @@
namespace Tegra::Texture::ASTC {
-std::vector<uint8_t> Decompress(std::vector<uint8_t>& data, uint32_t width, uint32_t height,
+std::vector<uint8_t> Decompress(const uint8_t* data, uint32_t width, uint32_t height,
uint32_t depth, uint32_t block_width, uint32_t block_height);
} // namespace Tegra::Texture::ASTC