CompostingQuality.cs 500 B

12345678910111213141516171819202122232425
  1. //
  2. // System.Drawing.Drawing2D.CompostingQuality.cs
  3. //
  4. // Author:
  5. // Stefan Maierhofer <[email protected]>
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) 2002/3 Ximian, Inc
  9. //
  10. using System;
  11. namespace System.Drawing.Drawing2D {
  12. /// <summary>
  13. /// Summary description for CompostingQuality.
  14. /// </summary>
  15. [Serializable]
  16. public enum CompositingQuality {
  17. AssumeLinear = 4,
  18. Default = 0,
  19. GammaCorrected = 3,
  20. HighQuality = 2,
  21. HighSpeed = 1,
  22. Invalid = -1
  23. }
  24. }