namespace NvAPIWrapper.Native.Display
{
///
/// Timing scan modes
///
public enum TimingScanMode : ushort
{
///
/// Progressive scan mode
///
Progressive = 0,
///
/// Interlaced scan mode
///
Interlaced = 1,
///
/// Interlaced scan mode with extra vertical blank
///
InterlacedWithExtraVerticalBlank = 1,
///
/// Interlaced scan mode without extra vertical blank
///
InterlacedWithNoExtraVerticalBlank = 2
}
}