mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2025-02-01 02:34:04 -05:00
16 lines
448 B
C++
Executable File
16 lines
448 B
C++
Executable File
// Copyright 2018 yuzu Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <bit>
|
|
#include "common/common_types.h"
|
|
|
|
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
|