pineapple-src/src/video_core/compatible_formats.h

16 lines
434 B
C
Raw Normal View History

2022-04-23 18:49:07 +00:00
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
// SPDX-License-Identifier: GPL-2.0-or-later
2020-12-28 15:15:37 +00:00
#pragma once
#include "video_core/surface.h"
namespace VideoCore::Surface {
2021-02-28 04:08:39 +00:00
bool IsViewCompatible(PixelFormat format_a, PixelFormat format_b, bool broken_views,
bool native_bgr);
2020-12-28 15:15:37 +00:00
2021-02-28 04:08:39 +00:00
bool IsCopyCompatible(PixelFormat format_a, PixelFormat format_b, bool native_bgr);
2020-12-28 15:15:37 +00:00
} // namespace VideoCore::Surface