aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/Gpu/Texture/TextureSwizzle.cs
blob: 076df97ab51924d60b6c8d21fd3a11a4da38f885 (plain)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.HLE.Gpu.Texture
{
    enum TextureSwizzle
    {
        _1dBuffer           = 0,
        PitchColorKey       = 1,
        Pitch               = 2,
        BlockLinear         = 3,
        BlockLinearColorKey = 4
    }
}