summaryrefslogtreecommitdiffstats
path: root/src/video_core/textures/astc.h
blob: 9105119bc40d26d2f00bb39378873646684380ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright 2018 yuzu Emulator Project
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.

#pragma once

#include <cstdint>

namespace Tegra::Texture::ASTC {

void Decompress(std::span<const uint8_t> data, uint32_t width, uint32_t height, uint32_t depth,
                uint32_t block_width, uint32_t block_height, std::span<uint8_t> output);

} // namespace Tegra::Texture::ASTC