ReductionFilter.cs 297 B

12345678910111213
  1. namespace Ryujinx.Graphics.Gpu.Image
  2. {
  3. /// <summary>
  4. /// Represents a filter used with texture minification linear filtering.
  5. /// This feature is only supported on NVIDIA GPUs.
  6. /// </summary>
  7. enum ReductionFilter
  8. {
  9. Average,
  10. Minimum,
  11. Maximum
  12. }
  13. }