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,44 @@
namespace NvAPIWrapper.Native.GPU
{
/// <summary>
/// Holds a list possible reasons for performance decrease
/// </summary>
public enum PerformanceDecreaseReason : uint
{
/// <summary>
/// No performance decrease
/// </summary>
None = 0,
/// <summary>
/// Thermal protection performance decrease
/// </summary>
ThermalProtection = 0x00000001,
/// <summary>
/// Power control performance decrease
/// </summary>
PowerControl = 0x00000002,
/// <summary>
/// AC-BATT event performance decrease
/// </summary>
// ReSharper disable once InconsistentNaming
AC_BATT = 0x00000004,
/// <summary>
/// API triggered performance decrease
/// </summary>
ApiTriggered = 0x00000008,
/// <summary>
/// Insufficient performance decrease (Power Connector Missing)
/// </summary>
InsufficientPower = 0x00000010,
/// <summary>
/// Unknown
/// </summary>
Unknown = 0x80000000
}
}