mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
23 lines
579 B
C#
23 lines
579 B
C#
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
|
|
}
|
|
} |