using System; namespace WindowsDisplayAPI { /// /// Contains possible polygon drawing capabilities of a display device /// [Flags] public enum DisplayPolygonalCapabilities { /// /// Device does not support polygons. /// None = 0, /// /// Device can draw alternate-fill polygons. /// Polygon = 1, /// /// Device can draw rectangles. /// Rectangle = 2, /// /// Device can draw winding-fill polygons. /// WindingFillPolygon = 4, /// /// Device can draw a single scan-line. /// ScanLine = 8, /// /// Device can draw wide borders. /// Wide = 16, /// /// Device can draw styled borders. /// Styled = 32, /// /// Device can draw borders that are wide and styled. /// WideStyled = 64, /// /// Device can draw interiors. /// Interiors = 128 } }