namespace WindowsDisplayAPI.Native.DisplayConfig
{
///
/// Possible pixel formats
/// https://msdn.microsoft.com/en-us/library/windows/hardware/ff553963(v=vs.85).aspx
///
public enum DisplayConfigPixelFormat : uint
{
///
/// Pixel format is not specified
///
NotSpecified = 0,
///
/// Indicates 8 bits per pixel format.
///
PixelFormat8Bpp = 1,
///
/// Indicates 16 bits per pixel format.
///
PixelFormat16Bpp = 2,
///
/// Indicates 24 bits per pixel format.
///
PixelFormat24Bpp = 3,
///
/// Indicates 32 bits per pixel format.
///
PixelFormat32Bpp = 4,
///
/// Indicates that the current display is not an 8, 16, 24, or 32 bits per pixel GDI desktop mode.
///
PixelFormatNonGDI = 5
}
}