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:
@@ -0,0 +1,28 @@
|
||||
namespace NvAPIWrapper.Native.Display
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains possible values for the AVI RGB quantization
|
||||
/// </summary>
|
||||
public enum InfoFrameVideoRGBQuantization : uint
|
||||
{
|
||||
/// <summary>
|
||||
/// Default setting
|
||||
/// </summary>
|
||||
Default = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Limited RGB range [16-235] (86%)
|
||||
/// </summary>
|
||||
LimitedRange,
|
||||
|
||||
/// <summary>
|
||||
/// Full RGB range [0-255] (100%)
|
||||
/// </summary>
|
||||
FullRange,
|
||||
|
||||
/// <summary>
|
||||
/// Auto (Unspecified)
|
||||
/// </summary>
|
||||
Auto = 7
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user