aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalTextureFormat.cs
blob: cf948526a5ab6a78dace060df6162c4aea202026 (plain)
1
2
3
4
5
6
7
8
9
10
namespace Ryujinx.Graphics.Gal
{
    public enum GalTextureFormat
    {
        A8B8G8R8 = 0x8,
        BC1      = 0x24,
        BC2      = 0x25,
        BC3      = 0x26
    }
}