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:
26
app/NvAPIWrapper/Native/GPU/IlluminationZoneControlMode.cs
Normal file
26
app/NvAPIWrapper/Native/GPU/IlluminationZoneControlMode.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
|
||||
namespace NvAPIWrapper.Native.GPU
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains a list of available illumination zone control modes
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum IlluminationZoneControlMode : uint
|
||||
{
|
||||
/// <summary>
|
||||
/// manual RGB control
|
||||
/// </summary>
|
||||
ManualRGB = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Piecewise linear RGB control
|
||||
/// </summary>
|
||||
PiecewiseLinearRGB,
|
||||
|
||||
/// <summary>
|
||||
/// Invalid control mode
|
||||
/// </summary>
|
||||
Invalid = 0xFF
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user