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:
23
app/NvAPIWrapper/Native/Display/InfoFrameBoolean.cs
Normal file
23
app/NvAPIWrapper/Native/Display/InfoFrameBoolean.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace NvAPIWrapper.Native.Display
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains possible values for info-frame properties that accept or return a boolean value
|
||||
/// </summary>
|
||||
public enum InfoFrameBoolean : uint
|
||||
{
|
||||
/// <summary>
|
||||
/// False
|
||||
/// </summary>
|
||||
False = 0,
|
||||
|
||||
/// <summary>
|
||||
/// True
|
||||
/// </summary>
|
||||
True,
|
||||
|
||||
/// <summary>
|
||||
/// Auto (Unspecified)
|
||||
/// </summary>
|
||||
Auto = 3
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user