namespace NvAPIWrapper.Native.Display
{
///
/// Horizontal synchronized polarity modes
///
public enum TimingHorizontalSyncPolarity : byte
{
///
/// Positive horizontal synchronized polarity
///
Positive = 0,
///
/// Negative horizontal synchronized polarity
///
Negative = 1,
///
/// Default horizontal synchronized polarity
///
Default = Negative
}
}