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:
37
app/NvAPIWrapper/Native/Interfaces/GPU/IUtilizationStatus.cs
Normal file
37
app/NvAPIWrapper/Native/Interfaces/GPU/IUtilizationStatus.cs
Normal file
@@ -0,0 +1,37 @@
|
||||
using System.Collections.Generic;
|
||||
using NvAPIWrapper.Native.Interfaces.GPU;
|
||||
|
||||
namespace NvAPIWrapper.Native.GPU.Structures
|
||||
{
|
||||
/// <summary>
|
||||
/// Holds information about the GPU utilization domains
|
||||
/// </summary>
|
||||
public interface IUtilizationStatus
|
||||
{
|
||||
|
||||
/// <summary>
|
||||
/// Gets the Bus interface (BUS) utilization
|
||||
/// </summary>
|
||||
IUtilizationDomainInfo BusInterface { get; }
|
||||
/// <summary>
|
||||
/// Gets all valid utilization domains and information
|
||||
/// </summary>
|
||||
Dictionary<UtilizationDomain, IUtilizationDomainInfo> Domains { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the frame buffer (FB) utilization
|
||||
/// </summary>
|
||||
IUtilizationDomainInfo FrameBuffer { get; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the graphic engine (GPU) utilization
|
||||
/// </summary>
|
||||
IUtilizationDomainInfo GPU { get; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Gets the Video engine (VID) utilization
|
||||
/// </summary>
|
||||
IUtilizationDomainInfo VideoEngine { get; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user