aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowAttribute.cs
blob: d499422606cb19dd668005b79d0e56601990d5ce (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,
    }
}