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:
42
app/NvAPIWrapper/Native/Interfaces/GPU/IClockFrequencies.cs
Normal file
42
app/NvAPIWrapper/Native/Interfaces/GPU/IClockFrequencies.cs
Normal file
@@ -0,0 +1,42 @@
|
||||
using System.Collections.Generic;
|
||||
using NvAPIWrapper.Native.GPU;
|
||||
using NvAPIWrapper.Native.GPU.Structures;
|
||||
|
||||
namespace NvAPIWrapper.Native.Interfaces.GPU
|
||||
{
|
||||
/// <summary>
|
||||
/// Interface for all ClockFrequencies structures
|
||||
/// </summary>
|
||||
public interface IClockFrequencies
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets all valid clocks
|
||||
/// </summary>
|
||||
IReadOnlyDictionary<PublicClockDomain, ClockDomainInfo> Clocks { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the type of clock frequencies provided with this object
|
||||
/// </summary>
|
||||
ClockType ClockType { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets graphics engine clock
|
||||
/// </summary>
|
||||
ClockDomainInfo GraphicsClock { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets memory decoding clock
|
||||
/// </summary>
|
||||
ClockDomainInfo MemoryClock { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets processor clock
|
||||
/// </summary>
|
||||
ClockDomainInfo ProcessorClock { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets video decoding clock
|
||||
/// </summary>
|
||||
ClockDomainInfo VideoDecodingClock { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user