2020-06-26 18:22:29 -04:00
|
|
|
// Copyright 2020 yuzu Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
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-01-03 23:56:44 -05:00
|
|
|
bool IsViewCompatible(PixelFormat format_a, PixelFormat format_b, bool broken_views);
|
2020-06-26 18:22:29 -04:00
|
|
|
|
2020-12-30 00:25:23 -05:00
|
|
|
bool IsCopyCompatible(PixelFormat format_a, PixelFormat format_b);
|
2020-06-26 18:22:29 -04:00
|
|
|
|
|
|
|
} // namespace VideoCore::Surface
|