mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-07-21 00:27:10 +02:00
13 lines
353 B
C#
13 lines
353 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
|
|
}
|
|
}
|