Files
archived-g-helper/app/NvAPIWrapper/Native/Display/InfoFrameVideoPixelRepetition.cs
2023-05-06 14:40:52 +02:00

63 lines
1.2 KiB
C#

namespace NvAPIWrapper.Native.Display
{
/// <summary>
/// Contains possible AVI pixel repetition values
/// </summary>
public enum InfoFrameVideoPixelRepetition : uint
{
/// <summary>
/// No pixel repetition
/// </summary>
None = 0,
/// <summary>
/// Two pixel repetition
/// </summary>
X2,
/// <summary>
/// Three pixel repetition
/// </summary>
X3,
/// <summary>
/// Four pixel repetition
/// </summary>
X4,
/// <summary>
/// Five pixel repetition
/// </summary>
X5,
/// <summary>
/// Six pixel repetition
/// </summary>
X6,
/// <summary>
/// Seven pixel repetition
/// </summary>
X7,
/// <summary>
/// Eight pixel repetition
/// </summary>
X8,
/// <summary>
/// Nine pixel repetition
/// </summary>
X9,
/// <summary>
/// Ten pixel repetition
/// </summary>
X10,
/// <summary>
/// Auto (Unspecified)
/// </summary>
Auto = 31
}
}