GalTextureMipFilter.cs 144 B

123456789
  1. namespace Ryujinx.Graphics.Gal
  2. {
  3. public enum GalTextureMipFilter
  4. {
  5. None = 1,
  6. Nearest = 2,
  7. Linear = 3
  8. }
  9. }