mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2025-01-10 04:39:11 +00:00
14 lines
236 B
C#
14 lines
236 B
C#
namespace Ryujinx.HLE.HOS.Services.SurfaceFlinger
|
|
{
|
|
enum PixelFormat : uint
|
|
{
|
|
Unknown,
|
|
Rgba8888,
|
|
Rgbx8888,
|
|
Rgb888,
|
|
Rgb565,
|
|
Bgra8888,
|
|
Rgba5551,
|
|
Rgba4444,
|
|
}
|
|
}
|