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:
31
app/NvAPIWrapper/Native/GPU/GetPerformanceStatesInfoFlags.cs
Normal file
31
app/NvAPIWrapper/Native/GPU/GetPerformanceStatesInfoFlags.cs
Normal file
@@ -0,0 +1,31 @@
|
||||
using System;
|
||||
|
||||
namespace NvAPIWrapper.Native.GPU
|
||||
{
|
||||
/// <summary>
|
||||
/// Contains the flags used by the GPUApi.GetPerformanceStatesInfo() function
|
||||
/// </summary>
|
||||
[Flags]
|
||||
public enum GetPerformanceStatesInfoFlags
|
||||
{
|
||||
/// <summary>
|
||||
/// Current performance states settings
|
||||
/// </summary>
|
||||
Current = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Default performance states settings
|
||||
/// </summary>
|
||||
Default = 1,
|
||||
|
||||
/// <summary>
|
||||
/// Maximum range of performance states values
|
||||
/// </summary>
|
||||
Maximum = 2,
|
||||
|
||||
/// <summary>
|
||||
/// Minimum range of performance states values
|
||||
/// </summary>
|
||||
Minimum = 4
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user