aboutsummaryrefslogtreecommitdiff
path: root/src/Ryujinx.Graphics.Shader/Translation/TranslationFlags.cs
blob: 1874dec3ba507a57fcddbcaf680c15dd54dec8d5 (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
    }
}