nopnop2002 / Raspberry-ili9340spi

ILI9340 SPI TFT Library & XPT2046 Touch Screen Library for Raspberry
MIT License
39 stars 16 forks source link

Suggestion : Simplify function rgb565_conv #16

Closed vanvught closed 6 years ago

vanvught commented 6 years ago

The function https://github.com/nopnop2002/ili9340spi_rpi/blob/master/ili9340.c#L567 can be simplified with:

#define RGB565(r, g, b) ((((r)>>3)<<11) | (((g)>>2)<<5) | ((b)>>3))

or

#define RGB565(r, g, b) ((((r) & 0xF8) << 8) | (((g) & 0xFC) << 3) | ((b) >> 3))

vanvught commented 6 years ago

Applied with commit 73d5ddc