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