2020-12-28 19:15:37 +04:00
|
|
|
// Copyright 2020 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "video_core/surface.h"
|
|
|
|
|
|
|
|
namespace VideoCore::Surface {
|
|
|
|
|
2021-01-04 12:36:39 +04:00
|
|
|
bool IsViewCompatible(PixelFormat format_a, PixelFormat format_b, bool broken_views);
|
2020-12-28 19:15:37 +04:00
|
|
|
|
|
|
|
bool IsCopyCompatible(PixelFormat format_a, PixelFormat format_b);
|
|
|
|
|
|
|
|
} // namespace VideoCore::Surface
|