mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
28 lines
692 B
C#
28 lines
692 B
C#
namespace NvAPIWrapper.Native.Display
|
|
{
|
|
/// <summary>
|
|
/// Timing scan modes
|
|
/// </summary>
|
|
public enum TimingScanMode : ushort
|
|
{
|
|
/// <summary>
|
|
/// Progressive scan mode
|
|
/// </summary>
|
|
Progressive = 0,
|
|
|
|
/// <summary>
|
|
/// Interlaced scan mode
|
|
/// </summary>
|
|
Interlaced = 1,
|
|
|
|
/// <summary>
|
|
/// Interlaced scan mode with extra vertical blank
|
|
/// </summary>
|
|
InterlacedWithExtraVerticalBlank = 1,
|
|
|
|
/// <summary>
|
|
/// Interlaced scan mode without extra vertical blank
|
|
/// </summary>
|
|
InterlacedWithNoExtraVerticalBlank = 2
|
|
}
|
|
} |