| 123456789101112131415161718192021222324 |
- //
- // System.Drawing.Drawing2D.CompostingQuality.cs
- //
- // Author:
- // Stefan Maierhofer <[email protected]>
- // Dennis Hayes ([email protected])
- //
- // (C) 2002/3 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Drawing2D {
- /// <summary>
- /// Summary description for CompostingQuality.
- /// </summary>
- public enum CompositingQuality {
- AssumeLinear = 4,
- Default = 0,
- GammaCorrected = 3,
- HighQuality = 2,
- HighSpeed = 1,
- Invalid = -1
- }
- }
|