mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
Experimental GPU overclock
This commit is contained in:
@@ -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
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user