namespace NvAPIWrapper.Native.Display
{
///
/// Holds a list of possible scan out composition parameter values
///
public enum ScanOutCompositionParameterValue : uint
{
///
/// Default parameter value
///
Default = 0,
///
/// BiLinear value for the warping re-sampling method parameter
///
WarpingReSamplingMethodBiLinear = 0x100,
///
/// Bicubic Triangular value for the warping re-sampling method parameter
///
WarpingReSamplingMethodBicubicTriangular = 0x101,
///
/// Bicubic Bell Shaped value for the warping re-sampling method parameter
///
WarpingReSamplingMethodBicubicBellShaped = 0x102,
///
/// Bicubic B-Spline value for the warping re-sampling method parameter
///
WarpingReSamplingMethodBicubicBSpline = 0x103,
///
/// Bicubic Adaptive Triangular value for the warping re-sampling method parameter
///
WarpingReSamplingMethodBicubicAdaptiveTriangular = 0x104,
///
/// Bicubic Adaptive Bell Shaped value for the warping re-sampling method parameter
///
WarpingReSamplingMethodBicubicAdaptiveBellShaped = 0x105,
///
/// Bicubic Adaptive B-Spline value for the warping re-sampling method parameter
///
WarpingReSamplingMethodBicubicAdaptiveBSpline = 0x106
}
}