using System;
namespace NvAPIWrapper.Native.GPU
{
///
/// Contains the flags used by the GPUApi.GetPerformanceStatesInfo() function
///
[Flags]
public enum GetPerformanceStatesInfoFlags
{
///
/// Current performance states settings
///
Current = 0,
///
/// Default performance states settings
///
Default = 1,
///
/// Maximum range of performance states values
///
Maximum = 2,
///
/// Minimum range of performance states values
///
Minimum = 4
}
}