2022-04-23 04:59:50 -04:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2020-06-26 18:22:29 -04:00
|
|
|
|
2020-07-21 00:42:17 -04:00
|
|
|
#pragma once
|
|
|
|
|
2020-06-26 18:22:29 -04:00
|
|
|
#include "video_core/surface.h"
|
|
|
|
|
|
|
|
namespace VideoCore::Surface {
|
|
|
|
|
2021-03-04 14:12:25 -05:00
|
|
|
bool IsViewCompatible(PixelFormat format_a, PixelFormat format_b, bool broken_views,
|
|
|
|
bool native_bgr);
|
2020-06-26 18:22:29 -04:00
|
|
|
|
2021-03-04 14:12:25 -05:00
|
|
|
bool IsCopyCompatible(PixelFormat format_a, PixelFormat format_b, bool native_bgr);
|
2020-06-26 18:22:29 -04:00
|
|
|
|
|
|
|
} // namespace VideoCore::Surface
|