We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc41021 commit 76958e5Copy full SHA for 76958e5
ext_mod/lcd_bus/esp32_include/rgb565_dither.h
@@ -9,7 +9,6 @@
9
static uint8_t *green_thresh;
10
static uint8_t *blue_thresh;
11
12
- bool rgb565_dither_init(void);
13
14
static inline void rgb565_dither_pixel(uint8_t treshold_id, uint16_t *pixel)
15
{
@@ -18,6 +17,7 @@
18
17
((((*pixel & 0x1F) << 3) + blue_thresh[treshold_id]) >> 3));
19
}
20
+
21
static inline bool rgb565_dither_init(void)
22
23
if (red_thresh == NULL) {
0 commit comments