aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.HLE/HOS/Services/SurfaceFlinger/NativeWindowApi.cs
blob: 1ae2732f5efb685ef9e4e7074c5ee39c21aca5e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.HLE.HOS.Services.SurfaceFlinger
{
    enum NativeWindowApi : int
    {
        NoApi  = 0,
        NVN    = 1,
        CPU    = 2,
        Media  = 3,
        Camera = 4
    }
}