TextureScaleMode.cs 498 B

12345678910111213141516
  1. namespace Ryujinx.Graphics.Gpu.Image
  2. {
  3. /// <summary>
  4. /// The scale mode for a given texture.
  5. /// Blacklisted textures cannot be scaled, Eligible textures have not been scaled yet,
  6. /// and Scaled textures have been scaled already.
  7. /// Undesired textures will stay at 1x until a situation where they must match a scaled texture.
  8. /// </summary>
  9. enum TextureScaleMode
  10. {
  11. Eligible = 0,
  12. Scaled = 1,
  13. Blacklisted = 2,
  14. Undesired = 3
  15. }
  16. }