aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowTransform.cs
blob: 650fe3c67aeaaf4ed4d5785faec34bbfb85ffa5e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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
    }
}