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