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