2020-06-27 00:22:29 +02:00
|
|
|
// Copyright 2020 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2020-07-21 06:42:17 +02:00
|
|
|
#pragma once
|
|
|
|
|
2020-06-27 00:22:29 +02:00
|
|
|
#include "video_core/surface.h"
|
|
|
|
|
|
|
|
namespace VideoCore::Surface {
|
|
|
|
|
2021-03-04 20:12:25 +01:00
|
|
|
bool IsViewCompatible(PixelFormat format_a, PixelFormat format_b, bool broken_views,
|
|
|
|
bool native_bgr);
|
2020-06-27 00:22:29 +02:00
|
|
|
|
2021-03-04 20:12:25 +01:00
|
|
|
bool IsCopyCompatible(PixelFormat format_a, PixelFormat format_b, bool native_bgr);
|
2020-06-27 00:22:29 +02:00
|
|
|
|
|
|
|
} // namespace VideoCore::Surface
|