aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Shader/Translation/TranslationFlags.cs
blob: df1e76a1fe5602ac5b2175985e9f575d31e4d4c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
using System;

namespace Ryujinx.Graphics.Shader.Translation
{
    [Flags]
    public enum TranslationFlags
    {
        None = 0,

        VertexA = 1 << 0,
        Compute = 1 << 1,
        DebugMode = 1 << 2,
    }
}