Gamma Init

This commit is contained in:
Serge
2024-02-16 15:55:37 +01:00
parent 42a598f177
commit cf84fa0616
103 changed files with 7907 additions and 41 deletions

View File

@@ -0,0 +1,31 @@
using System;
namespace WindowsDisplayAPI
{
/// <summary>
/// Contains possible color management capabilities of a display device
/// </summary>
[Flags]
public enum DisplayColorManagementCapabilities
{
/// <summary>
/// Device does not support ICM.
/// </summary>
None = 0,
/// <summary>
/// Device can perform ICM on either the device driver or the device itself.
/// </summary>
DeviceICM = 1,
/// <summary>
/// Device supports gamma ramp modification and retrieval
/// </summary>
GammaRamp = 2,
/// <summary>
/// Device can accept CMYK color space ICC color profile.
/// </summary>
CMYKColor = 4
}
}