Open Zaltora opened 7 years ago
Can be implemented RGB565 color ? exemple:
RGB888: 0x64646 RGB565: 0x632C
macro C example :#define RGB2COLOR(r, g, b) ((((r>>3)<<11) | ((g>>2)<<5) | (b>>3))) i found online converter : converter
#define RGB2COLOR(r, g, b) ((((r>>3)<<11) | ((g>>2)<<5) | (b>>3)))
and the possibility to see color in atom ? regards
Can be implemented RGB565 color ? exemple:
RGB888: 0x64646 RGB565: 0x632C
macro C example :
#define RGB2COLOR(r, g, b) ((((r>>3)<<11) | ((g>>2)<<5) | (b>>3)))
i found online converter : converterand the possibility to see color in atom ? regards