namespace WindowsDisplayAPI.Native.DisplayConfig { /// /// Possible values for display scan line ordering /// https://msdn.microsoft.com/en-us/library/windows/hardware/ff553977(v=vs.85).aspx /// public enum DisplayConfigScanLineOrdering : uint { /// /// Indicates that scan-line ordering of the output is unspecified. /// NotSpecified = 0, /// /// Indicates that the output is a progressive image. /// Progressive = 1, /// /// Indicates that the output is an interlaced image that is created beginning with the upper field. /// InterlacedWithUpperFieldFirst = 2, /// /// Indicates that the output is an interlaced image that is created beginning with the lower field. /// InterlacedWithLowerFieldFirst = 3 } }