52 unsigned ro,
unsigned go,
unsigned bo,
53 unsigned rw,
unsigned gw,
unsigned bw,
57 byte_order(_byte_order),
79 word |= p[
i] << (8 *
i);
82 word |= p[
i] << (8 * (length -
i - 1));
93 p[
i] = (word >> (8 *
i)) & 0xFF;
96 p[
i] = (word >> (8 * (length -
i - 1))) & 0xFF;
unsigned length
Bytes per pixel when stored in memory (including padding)
Channel(unsigned offset, unsigned width)
static const PixelConverter rgb565_be
Predefined 16-bit RGB565 (red in least significant bits, big endian) conversion helper.
PixelConverter(unsigned length, unsigned ro, unsigned go, unsigned bo, unsigned rw, unsigned gw, unsigned bw, ByteOrder byte_order=LittleEndianByteOrder)
ByteOrder byte_order
Byte order when stored to memory.
static const PixelConverter rgba8888_le
Predefined 32-bit RGB (red in least significant bits, 8 bits/channel, little endian) conversion helpe...
uint32_t readWord(const uint8_t *p) const
Read a word of a given length and endianness from memory.
static const PixelConverter rgb565_le
Predefined 16-bit RGB565 (red in least significant bits, little endian) conversion helper...
Configurable RGB pixel converter.
static const PixelConverter rgba8888_be
Predefined 32-bit RGB (red in least significant bits, 8 bits/channel, big endian) conversion helper...
void writeWord(uint8_t *p, uint32_t word) const
Write a word of a given length and endianness to memory.