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:
23
app/NvAPIWrapper/Native/GPU/ECCConfiguration.cs
Normal file
23
app/NvAPIWrapper/Native/GPU/ECCConfiguration.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
namespace NvAPIWrapper.Native.GPU
|
||||
{
|
||||
/// <summary>
|
||||
/// Holds a list of possible ECC memory configurations
|
||||
/// </summary>
|
||||
public enum ECCConfiguration : uint
|
||||
{
|
||||
/// <summary>
|
||||
/// ECC memory configurations are not supported
|
||||
/// </summary>
|
||||
NotSupported = 0,
|
||||
|
||||
/// <summary>
|
||||
/// Changes require a POST to take effect
|
||||
/// </summary>
|
||||
Deferred,
|
||||
|
||||
/// <summary>
|
||||
/// Changes can optionally be made to take effect immediately
|
||||
/// </summary>
|
||||
Immediate
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user