aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Shader/IntermediateRepresentation/TextureFlags.cs
blob: 5f0a84276cfe82dfe3dc06b8950ad61935efb7b0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
{
    [Flags]
    enum TextureFlags
    {
        None      = 0,
        Bindless  = 1 << 0,
        Gather    = 1 << 1,
        IntCoords = 1 << 2,
        LodBias   = 1 << 3,
        LodLevel  = 1 << 4,
        Offset    = 1 << 5,
        Offsets   = 1 << 6
    }
}