Files
archived-g-helper/app/NvAPIWrapper/DRS/SettingValues/VSyncVRRControl.cs
2023-05-06 14:40:52 +02:00

15 lines
258 B
C#

namespace NvAPIWrapper.DRS.SettingValues
{
#pragma warning disable 1591
public enum VSyncVRRControl : uint
{
Disable = 0x0,
Enable = 0x1,
NotSupported = 0x9F95128E,
Default = 0x1
}
#pragma warning restore 1591
}