8000 update LVGL · phires/lv_binding_micropython@99bffb8 · GitHub
[go: up one dir, main page]

Skip to content

Commit 99bffb8

Browse files
committed
update LVGL
1 parent 3470666 commit 99bffb8

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

lv_conf.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
22
* @file lv_conf.h
3-
* Configuration file for v8.1.0-dev
3+
* Configuration file for v8.1.1-dev
44
*/
55

66
/*
@@ -38,6 +38,10 @@
3838
*Requires `LV_COLOR_DEPTH = 32` colors and the screen's `bg_opa` should be set to non LV_OPA_COVER value*/
3939
#define LV_COLOR_SCREEN_TRANSP 0
4040

41+
/* Adjust color mix functions rounding. GPUs might calculate color mix (blending) differently.
42+
* 0: round down, 64: round up from x.75, 128: round up from half, 192: round up from x.25, 254: round up */
43+
#define LV_COLOR_MIX_ROUND_OFS (LV_COLOR_DEPTH == 32 ? 0: 128)
44+
4145
/*Images pixels with this color will not be drawn if they are chroma keyed)*/
4246
#define LV_COLOR_CHROMA_KEY lv_color_hex(0x00ff00) /*pure green*/
4347

@@ -585,7 +589,7 @@ e.g. "stm32f769xx.h" or "stm32f429xx.h"*/
585589
# define LV_FREETYPE_CACHE_SIZE (16 * 1024)
586590
#endif
587591

588-
/* Rlottie library, if available */
592+
/*Rlottie library, if available */
589593
#ifdef MICROPY_RLOTTIE
590594
#define LV_USE_RLOTTIE 1
591595
#else

lvgl

Submodule lvgl updated 75 files

0 commit comments

Comments
 (0)
0