2018-06-18 03:50:44 +00:00
|
|
|
// Copyright 2018 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace Tegra::Texture::ASTC {
|
|
|
|
|
2019-02-24 01:45:47 +00:00
|
|
|
std::vector<uint8_t> Decompress(const uint8_t* data, uint32_t width, uint32_t height,
|
2018-10-30 02:46:09 +00:00
|
|
|
uint32_t depth, uint32_t block_width, uint32_t block_height);
|
2018-06-18 03:50:44 +00:00
|
|
|
|
|
|
|
} // namespace Tegra::Texture::ASTC
|