Enum ColorFormat
Defines the supported color formats in the graphics library.
public enum ColorFormat
Fields
Color12bppRgb444 = 512-bits-per-pixel color format. Every color component is encoded in 4 bits.
Color16bppRgb565 = 616-bits-per-pixel color format. Colors are encoded in 5 bits for red, 6 bits for green and 5 bits for blue.
Color1BitPerPixel = 01-bit-per-pixel color format.
Color2BitPerPixel = 12-bits-per-pixel. This is used by displays that support 3 colors by using 2 separate RAM.
Color4bppGrayscale = 24-bits-per-pixel color format.
Color8bppGrayscale = 38-bits-per-pixel color format.
Color8bppRgb332 = 48-bits-per-pixel color format. Colors are encoded in 3 bits for red, 3 bits for green and 2 bits for blue.