mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
23 lines
567 B
C#
23 lines
567 B
C#
namespace NvAPIWrapper.Native.Display
|
|
{
|
|
/// <summary>
|
|
/// Vertical synchronized polarity modes
|
|
/// </summary>
|
|
public enum TimingVerticalSyncPolarity : byte
|
|
{
|
|
/// <summary>
|
|
/// Positive vertical synchronized polarity
|
|
/// </summary>
|
|
Positive = 0,
|
|
|
|
/// <summary>
|
|
/// Negative vertical synchronized polarity
|
|
/// </summary>
|
|
Negative = 1,
|
|
|
|
/// <summary>
|
|
/// Default vertical synchronized polarity
|
|
/// </summary>
|
|
Default = Positive
|
|
}
|
|
} |