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/GPU/IlluminationZoneLocation.cs
Normal file
23
app/NvAPIWrapper/Native/GPU/IlluminationZoneLocation.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace NvAPIWrapper.Native.GPU
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains a list of possible illumination zone locations
|
||||
/// </summary>
|
||||
public enum IlluminationZoneLocation : uint
|
||||
{
|
||||
/// <summary>
|
||||
/// Located on the top of GPU
|
||||
/// </summary>
|
||||
GPUTop = 0x00,
|
||||
|
||||
/// <summary>
|
||||
/// Located on the top of SLI bridge
|
||||
/// </summary>
|
||||
SLITop = 0x20,
|
||||
|
||||
/// <summary>
|
||||
/// Invalid zone location
|
||||
/// </summary>
|
||||
Invalid = 0xFFFFFFFF
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user