mirror of
https://git.zaroz.cloud/nintendo-back-up/Ryujinx.git
synced 2025-12-21 18:02:40 +00:00
14 lines
296 B
C#
14 lines
296 B
C#
namespace Ryujinx.HLE.HOS.Services.SurfaceFlinger
|
|
{
|
|
enum NativeWindowAttribute : uint
|
|
{
|
|
Width = 0,
|
|
Height = 1,
|
|
Format = 2,
|
|
MinUnqueuedBuffers = 3,
|
|
ConsumerRunningBehind = 9,
|
|
ConsumerUsageBits = 10,
|
|
MaxBufferCountAsync = 12,
|
|
}
|
|
}
|