namespace NvAPIWrapper.Native.Display { /// /// Contains possible values for the AVI RGB quantization /// public enum InfoFrameVideoRGBQuantization : uint { /// /// Default setting /// Default = 0, /// /// Limited RGB range [16-235] (86%) /// LimitedRange, /// /// Full RGB range [0-255] (100%) /// FullRange, /// /// Auto (Unspecified) /// Auto = 7 } }