1
0
Fork 0
mirror of https://github.com/yuzu-emu/yuzu-android.git synced 2025-03-07 11:09:44 +00:00
yuzu-android/src/video_core/compatible_formats.h

16 lines
397 B
C++
Raw Normal View History

// 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 {
bool IsViewCompatible(PixelFormat format_a, PixelFormat format_b, bool broken_views);
bool IsCopyCompatible(PixelFormat format_a, PixelFormat format_b);
} // namespace VideoCore::Surface