mirror of
https://github.com/jkocon/g-helper.git
synced 2026-02-23 13:00:52 +01:00
13 lines
413 B
C#
13 lines
413 B
C#
namespace NvAPIWrapper.Native.Interfaces.GPU
|
|
{
|
|
/// <summary>
|
|
/// Holds information regarding the clock frequency of a fixed frequency clock domain
|
|
/// </summary>
|
|
public interface IPerformanceStates20ClockDependentSingleFrequency
|
|
{
|
|
/// <summary>
|
|
/// Gets the clock frequency of a clock domain in kHz
|
|
/// </summary>
|
|
uint FrequencyInkHz { get; }
|
|
}
|
|
} |