namespace NvAPIWrapper.Native.Display
{
///
/// Possible scaling modes
///
public enum Scaling
{
///
/// No change
///
Default = 0,
///
/// Balanced - Full Screen
///
ToClosest = 1,
///
/// Force GPU - Full Screen
///
ToNative = 2,
///
/// Force GPU - Centered\No Scaling
///
GPUScanOutToNative = 3,
///
/// Force GPU - Aspect Ratio
///
ToAspectScanOutToNative = 5,
///
/// Balanced - Aspect Ratio
///
ToAspectScanOutToClosest = 6,
///
/// Balanced - Centered\No Scaling
///
GPUScanOutToClosest = 7,
///
/// Customized scaling - For future use
///
Customized = 255
}
}