mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-24 02:20:54 -05:00
15 lines
233 B
C#
15 lines
233 B
C#
namespace Ryujinx.HLE.HOS.Services.SurfaceFlinger
|
|
{
|
|
enum PixelFormat : uint
|
|
{
|
|
Unknown,
|
|
Rgba8888,
|
|
Rgbx8888,
|
|
Rgb888,
|
|
Rgb565,
|
|
Bgra8888,
|
|
Rgba5551,
|
|
Rgba4444,
|
|
}
|
|
}
|