yuzu/src/video_core/textures/astc.h

12 lines
380 B
C
Raw Normal View History

2022-04-23 22:49:07 +04:00
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-12-28 19:15:37 +04:00
#pragma once
namespace Tegra::Texture::ASTC {
2021-06-14 18:57:42 +04:00
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);
2020-12-28 19:15:37 +04:00
} // namespace Tegra::Texture::ASTC