GalTextureFilter.cs 120 B

12345678
  1. namespace Ryujinx.Graphics.Gal
  2. {
  3. public enum GalTextureFilter
  4. {
  5. Nearest = 1,
  6. Linear = 2
  7. }
  8. }