namespace NvAPIWrapper.Native.Display
{
///
/// Possible rotate modes
///
public enum Rotate : uint
{
///
/// No rotation
///
Degree0 = 0,
///
/// 90 degree rotation
///
Degree90 = 1,
///
/// 180 degree rotation
///
Degree180 = 2,
///
/// 270 degree rotation
///
Degree270 = 3,
///
/// This value is ignored
///
Ignored = 4
}
}