yuzu/src/video_core/textures/bcn.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
445 B
C++
Raw Normal View History

// SPDX-FileCopyrightText: Copyright 2023 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
#include <span>
2023-06-06 20:10:06 +00:00
#include "common/common_types.h"
namespace Tegra::Texture::BCN {
2023-06-06 20:10:06 +00:00
void CompressBC1(std::span<const u8> data, u32 width, u32 height, u32 depth, std::span<u8> output);
2023-06-06 20:10:06 +00:00
void CompressBC3(std::span<const u8> data, u32 width, u32 height, u32 depth, std::span<u8> output);
} // namespace Tegra::Texture::BCN