using NvAPIWrapper.Native.GPU; namespace NvAPIWrapper.Native.Interfaces.GPU { /// /// Holds information regarding a performance state /// public interface IPerformanceState { /// /// Gets a boolean value indicating if this performance state is overclockable /// bool IsOverclockable { get; } /// /// Gets a boolean value indicating if this performance state is currently overclocked /// bool IsOverclocked { get; } /// /// Gets a boolean value indicating if this performance state is limited to use PCIE generation 1 or PCIE generation 2 /// bool IsPCIELimited { get; } /// /// Gets the performance state identification /// PerformanceStateId StateId { get; } } }