aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowTransform.cs
blob: 66482b12376b8d739521dd76a0c333ee0b2eec37 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using System;

namespace Ryujinx.HLE.HOS.Services.SurfaceFlinger
{
    [Flags]
    enum NativeWindowTransform : uint
    {
        None              = 0,
        FlipX             = 1,
        FlipY             = 2,
        Rotate90          = 4,
        Rotate180         = FlipX | FlipY,
        Rotate270         = Rotate90 | Rotate180,
        InverseDisplay    = 8,
        NoVSyncCapability = 0x10,
        ReturnFrameNumber = 0x20
    }
}