Description
What MCU/Processor/Board and compiler are you using?
NUC977
What do you want to achieve?
I want to make button state draw quickly.(In fact i want to improve the lvgl running preference)
What have you tried so far?
I try to use lvgl 6.0.1 and use default theme.It’s quickly when I press the big button.(Button Size 250*50).
But it’s slow in lvgl 7.10.0.I use the same code to test.I can see the draw by eyes at 7.10.0version.
Code to reproduce
Add the relevant code snippets here.
The code block(s) should be between ```c
and ```
tags:
/*You code here*/
lv_obj_t *homeCont;
lv_obj_t *btn, *label;
homeCont = lv_obj_create(lv_scr_act(), NULL);
lv_obj_set_size(homeCont, 800, 480);
lv_obj_set_pos(homeCont, 0, 0);
btn = lv_btn_create(homeCont, NULL);
lv_obj_set_size(btn, 200, 250);
lv_obj_set_pos(btn, 300, 140);
label = lv_label_create(btn, NULL);
lv_label_set_text(label, "Espresso");
Screenshot and/or video
If possible, add screenshots and/or videos about the current state.