No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

SampleCount.cs 484B

123456789101112131415161718192021222324
  1. namespace UnityEngine.Rendering.Universal
  2. {
  3. // Should be made obsolete
  4. /// <summary>
  5. /// Options for Sample Count.
  6. /// </summary>
  7. public enum SampleCount
  8. {
  9. /// <summary>
  10. /// Use this for 1 sample.
  11. /// </summary>
  12. One = 1,
  13. /// <summary>
  14. /// Use this for 2 samples.
  15. /// </summary>
  16. Two = 2,
  17. /// <summary>
  18. /// Use this for 4 samples.
  19. /// </summary>
  20. Four = 4,
  21. }
  22. }