-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixed memory leaks and added Store policy workaround
- Loading branch information
Showing
14 changed files
with
382 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
ArcticControl/Contracts/Services/IIntelGraphicsControlService.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using ArcticControlGPUInterop; | ||
|
||
namespace ArcticControl.Contracts.Services; | ||
public interface IIntelGraphicsControlService : IDisposable | ||
{ | ||
public bool IsInitialized(); | ||
public bool SetOverclockWaiver(); | ||
public double GetOverclockPowerLimit(); | ||
public double GetOverclockTemperatureLimit(); | ||
public double GetOverclockGPUVoltageOffset(); | ||
public double GetOverclockGPUFrequencyOffset(); | ||
public bool SetOverclockPowerLimit(double newPowerLimit); | ||
public bool SetOverclockTemperatureLimit(double newGPUTemperatureLimit); | ||
public bool SetOverclockGPUVoltageOffset(double newGPUVoltageOffset); | ||
public bool SetOverclockGPUFrequencyOffset(double newGPUFrequencyOffset); | ||
public bool InitPowerDomains(); | ||
public PowerProperties? GetPowerProperties(); | ||
public PowerLimitsCombination? GetPowerLimits(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.