mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Experimental GPU overclock
This commit is contained in:
21
app/NvAPIWrapper/Native/GPU/FanCoolersControlMode.cs
Normal file
21
app/NvAPIWrapper/Native/GPU/FanCoolersControlMode.cs
Normal file
@@ -0,0 +1,21 @@
|
||||
using System;
|
||||
|
||||
namespace NvAPIWrapper.Native.GPU
|
||||
{
|
||||
/// <summary>
|
||||
/// Holds possible fan cooler control modes
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum FanCoolersControlMode : uint
|
||||
{
|
||||
/// <summary>
|
||||
/// Automatic fan cooler control
|
||||
/// </summary>
|
||||
Auto = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Manual fan cooler control
|
||||
/// </summary>
|
||||
Manual = 0b1,
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user