aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/GalIndexFormat.cs
blob: 71a50cdba824f5ee1c4494a7d0f571659a072db6 (plain) (blame)
1
2
3
4
5
6
7
8
9
namespace Ryujinx.Graphics.Gal
{
    public enum GalIndexFormat
    {
        Byte  = 0,
        Int16 = 1,
        Int32 = 2
    }
}