aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Graphics3d/Texture/TextureSwizzle.cs
blob: 2cc426ab9dc649be93032931589ee48a7ee0dc68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
namespace Ryujinx.Graphics.Texture
{
    public enum TextureSwizzle
    {
        _1DBuffer           = 0,
        PitchColorKey       = 1,
        Pitch               = 2,
        BlockLinear         = 3,
        BlockLinearColorKey = 4
    }
}