Searched refs:LV_HOR_RES_MAX (Results 1 – 9 of 9) sorted by relevance
/AliOS-Things-master/components/littlevgl/porting/ |
A D | lv_port_disp_template.c | 76 static lv_color_t buf1_1[LV_HOR_RES_MAX * 10]; /*A buffer for 10 rows*/ 77 …lv_disp_buf_init(&disp_buf_1, buf1_1, NULL, LV_HOR_RES_MAX * 10); /*Initialize the display buffe… 81 static lv_color_t buf2_1[LV_HOR_RES_MAX * 10]; /*A buffer for 10 rows*/ 82 …static lv_color_t buf2_2[LV_HOR_RES_MAX * 10]; /*An other buffer for 10 row… 83 …lv_disp_buf_init(&disp_buf_2, buf2_1, buf2_2, LV_HOR_RES_MAX * 10); /*Initialize the display buf… 87 static lv_color_t buf3_1[LV_HOR_RES_MAX * LV_VER_RES_MAX]; /*A screen sized buffer*/ 88 …static lv_color_t buf3_2[LV_HOR_RES_MAX * LV_VER_RES_MAX]; /*An other screen sized buff… 89 …lv_disp_buf_init(&disp_buf_3, buf3_1, buf3_2, LV_HOR_RES_MAX * LV_VER_RES_MAX); /*Initialize the…
|
/AliOS-Things-master/components/littlevgl/src/ |
A D | lv_conf_checker.h | 18 #ifndef LV_HOR_RES_MAX 19 #define LV_HOR_RES_MAX (480) macro
|
/AliOS-Things-master/components/littlevgl/src/lv_hal/ |
A D | lv_hal_disp.c | 60 driver->hor_res = LV_HOR_RES_MAX; in lv_disp_drv_init() 227 return LV_HOR_RES_MAX; in lv_disp_get_hor_res()
|
/AliOS-Things-master/components/littlevgl/ |
A D | lv_conf.h | 23 #define LV_HOR_RES_MAX (128) macro
|
A D | lv_conf_template.h | 23 #define LV_HOR_RES_MAX (480)
|
A D | README.md | 108 …_templ.h` as `lv_conf.h` next to the `lvgl` folder and set at least `LV_HOR_RES_MAX`, `LV_VER_RES_… 115 static lv_color_t buf[LV_HOR_RES_MAX * 10]; /*Declare a buffer for 10 lines*/ 116 lv_disp_buf_init(&disp_buf, buf, NULL, LV_HOR_RES_MAX * 10); /*Initialize the display buffer*/
|
/AliOS-Things-master/components/littlevgl/src/lv_draw/ |
A D | lv_img_decoder.c | 597 uint8_t fs_buf[LV_HOR_RES_MAX]; in lv_img_decoder_built_in_line_alpha() 684 uint8_t fs_buf[LV_HOR_RES_MAX]; in lv_img_decoder_built_in_line_indexed()
|
A D | lv_draw_basic.c | 156 …static LV_ATTRIBUTE_MEM_ALIGN lv_color_t color_array_tmp[LV_HOR_RES_MAX]; /*Used by 'lv_disp_mem_b… in lv_draw_fill()
|
/AliOS-Things-master/components/littlevgl/src/lv_core/ |
A D | lv_obj.h | 38 #if LV_HOR_RES_MAX == 0 || LV_VER_RES_MAX == 0
|
Completed in 13 milliseconds