mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
18 lines
422 B
C#
18 lines
422 B
C#
namespace NvAPIWrapper.Native.GPU
|
|
{
|
|
/// <summary>
|
|
/// Contains a list of valid illumination attributes
|
|
/// </summary>
|
|
public enum IlluminationAttribute : uint
|
|
{
|
|
/// <summary>
|
|
/// Logo brightness control
|
|
/// </summary>
|
|
LogoBrightness = 0,
|
|
|
|
/// <summary>
|
|
/// SLI bridge brightness control
|
|
/// </summary>
|
|
SLIBrightness
|
|
}
|
|
} |