diff options
| author | 2019-02-23 22:45:47 -0300 | |
|---|---|---|
| committer | 2019-02-26 20:08:27 -0300 | |
| commit | 0ad3c031f4f0e1db16e271ed1329e2c4bad33e10 (patch) | |
| tree | aaa115aafde8dbd657453317e698d62c72d07df8 /src/video_core/textures/astc.h | |
| parent | decoders: Minor style changes (diff) | |
| download | yuzu-0ad3c031f4f0e1db16e271ed1329e2c4bad33e10.tar.gz yuzu-0ad3c031f4f0e1db16e271ed1329e2c4bad33e10.tar.xz yuzu-0ad3c031f4f0e1db16e271ed1329e2c4bad33e10.zip | |
gl_rasterizer_cache: Move format conversion to its own file
Diffstat (limited to 'src/video_core/textures/astc.h')
| -rw-r--r-- | src/video_core/textures/astc.h | 2 |
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 @@ | |||
| 9 | 9 | ||
| 10 | namespace Tegra::Texture::ASTC { | 10 | namespace Tegra::Texture::ASTC { |
| 11 | 11 | ||
| 12 | std::vector<uint8_t> Decompress(std::vector<uint8_t>& data, uint32_t width, uint32_t height, | 12 | std::vector<uint8_t> Decompress(const uint8_t* data, uint32_t width, uint32_t height, |
| 13 | uint32_t depth, uint32_t block_width, uint32_t block_height); | 13 | uint32_t depth, uint32_t block_width, uint32_t block_height); |
| 14 | 14 | ||
| 15 | } // namespace Tegra::Texture::ASTC | 15 | } // namespace Tegra::Texture::ASTC |