mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
23 lines
546 B
C#
23 lines
546 B
C#
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
|
|
}
|
|
} |