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