sRGB and Custom gammas support

This commit is contained in:
Serge
2024-03-05 15:21:26 +01:00
parent 947e32b97c
commit aeef62afa4
4 changed files with 1595 additions and 260 deletions

View File

@@ -257,6 +257,15 @@ namespace GHelper
panelPerformance.Focus();
InitBrightness();
checkSRGB.Checked = screenControl.GetSRGB();
checkSRGB.CheckedChanged += CheckSRGB_CheckedChanged;
}
private void CheckSRGB_CheckedChanged(object? sender, EventArgs e)
{
screenControl.ToggleSRGB();
}
public void InitBrightness()