mirror of https://github.com/yuzu-mirror/yuzu
hle: nvflinger: Move PixelFormat to its own header.
parent
5a8b9a9706
commit
d456b9d554
@ -0,0 +1,21 @@
|
|||||||
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
||||||
|
// Copyright 2021 yuzu Emulator Project
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "common/common_types.h"
|
||||||
|
|
||||||
|
namespace android {
|
||||||
|
|
||||||
|
enum class PixelFormat : u32 {
|
||||||
|
NoFormat = 0,
|
||||||
|
Rgba8888 = 1,
|
||||||
|
Rgbx8888 = 2,
|
||||||
|
Rgb888 = 3,
|
||||||
|
Rgb565 = 4,
|
||||||
|
Bgra8888 = 5,
|
||||||
|
Rgba5551 = 6,
|
||||||
|
Rgba4444 = 7,
|
||||||
|
};
|
||||||
|
|
||||||
|
} // namespace android
|
Loading…
Reference in New Issue