| 123456789101112131415 |
- // SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
- // SPDX-License-Identifier: GPL-2.0-or-later
- #pragma once
- #include <span>
- #include "common/common_types.h"
- #include "video_core/texture_cache/types.h"
- namespace VideoCommon {
- void DecompressBC4(std::span<const u8> data, Extent3D extent, std::span<u8> output);
- } // namespace VideoCommon
|