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