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,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
}
}