Experimental GPU overclock

This commit is contained in:
Serge
2023-05-06 14:40:52 +02:00
parent 8e1099545a
commit c61f4d1608
497 changed files with 46937 additions and 232 deletions

View File

@@ -0,0 +1,63 @@
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
}
}