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