mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
28 lines
763 B
C#
28 lines
763 B
C#
namespace NvAPIWrapper.Native.Interfaces.Display
|
|
{
|
|
/// <summary>
|
|
/// Holds the Digital Vibrance Control information regarding the saturation level.
|
|
/// </summary>
|
|
public interface IDisplayDVCInfo
|
|
{
|
|
/// <summary>
|
|
/// Gets the current saturation level
|
|
/// </summary>
|
|
int CurrentLevel { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the default saturation level
|
|
/// </summary>
|
|
int DefaultLevel { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the maximum valid saturation level
|
|
/// </summary>
|
|
int MaximumLevel { get; }
|
|
|
|
/// <summary>
|
|
/// Gets the minimum valid saturation level
|
|
/// </summary>
|
|
int MinimumLevel { get; }
|
|
}
|
|
} |