mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
35 lines
752 B
C#
35 lines
752 B
C#
using NvAPIWrapper.Native.GPU.Structures;
|
|
|
|
namespace NvAPIWrapper.Native.GPU
|
|
{
|
|
/// <summary>
|
|
/// Contains the list of clocks available to public
|
|
/// </summary>
|
|
public enum PublicClockDomain
|
|
{
|
|
/// <summary>
|
|
/// Undefined
|
|
/// </summary>
|
|
Undefined = ClockFrequenciesV1.MaxClocksPerGPU,
|
|
|
|
/// <summary>
|
|
/// 3D graphics clock
|
|
/// </summary>
|
|
Graphics = 0,
|
|
|
|
/// <summary>
|
|
/// Memory clock
|
|
/// </summary>
|
|
Memory = 4,
|
|
|
|
/// <summary>
|
|
/// Processor clock
|
|
/// </summary>
|
|
Processor = 7,
|
|
|
|
/// <summary>
|
|
/// Video decoding clock
|
|
/// </summary>
|
|
Video = 8
|
|
}
|
|
} |