mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
23 lines
411 B
C#
23 lines
411 B
C#
namespace NvAPIWrapper.DRS.SettingValues
|
|
{
|
|
#pragma warning disable 1591
|
|
public enum VSyncMode : uint
|
|
{
|
|
Passive = 0x60925292,
|
|
|
|
ForceOff = 0x8416747,
|
|
|
|
ForceOn = 0x47814940,
|
|
|
|
FlipInterval2 = 0x32610244,
|
|
|
|
FlipInterval3 = 0x71271021,
|
|
|
|
FlipInterval4 = 0x13245256,
|
|
|
|
Virtual = 0x18888888,
|
|
|
|
Default = 0x60925292
|
|
}
|
|
#pragma warning restore 1591
|
|
} |