aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowAttribute.cs
blob: c40b4fa10b9d0b24c9886fe6d3950e698150a469 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace Ryujinx.HLE.HOS.Services.SurfaceFlinger
{
    enum NativeWindowAttribute : uint
    {
        Width                 = 0,
        Height                = 1,
        Format                = 2,
        MinUnqueuedBuffers    = 3,
        ConsumerRunningBehind = 9,
        ConsumerUsageBits     = 10,
        MaxBufferCountAsync   = 12
    }
}