RGBA4444
RGBA4444 is a 16-bit per pixel color format in which each of the red, green, blue, and alpha channels is allocated 4 bits. With 4 bits per channel, each component can take 16 discrete levels, so a single pixel has 65,536 possible color values. The four 4-bit components are packed into a 16-bit word, and the order of the channels can vary depending on the specific format (for example RGBA, ARGB, or ABGR arrangements).
Because each channel is only 4 bits wide, RGBA4444 provides reduced color precision compared with 8-bit-per-channel
RGBA4444 is used in certain graphics pipelines, textures, and image data where memory or bandwidth constraints
Variants of the 4-4-4-4 scheme include different channel orders (for instance RGBA4444, ARGB4444, or ABGR4444) depending
---