GalIndexFormat.cs 133 B

123456789
  1. namespace Ryujinx.Graphics.Gal
  2. {
  3. public enum GalIndexFormat
  4. {
  5. Byte = 0,
  6. Int16 = 1,
  7. Int32 = 2
  8. }
  9. }