Searched refs:track_first_item (Results 1 – 1 of 1) sorted by relevance
/lvgl-3.6.0/src/extra/layouts/flex/ |
D | lv_flex.c | 256 int32_t track_first_item; in flex_update() local 260 track_first_item = f.rev ? cont->spec_attr->child_cnt - 1 : 0; in flex_update() 262 while(track_first_item < (int32_t)cont->spec_attr->child_cnt && track_first_item >= 0) { in flex_update() 265 … next_track_first_item = find_track_end(cont, &f, track_first_item, max_main_size, item_gap, &t); in flex_update() 268 track_first_item = next_track_first_item; in flex_update() 278 track_first_item = f.rev ? cont->spec_attr->child_cnt - 1 : 0; in flex_update() 284 while(track_first_item < (int32_t)cont->spec_attr->child_cnt && track_first_item >= 0) { in flex_update() 288 … next_track_first_item = find_track_end(cont, &f, track_first_item, max_main_size, item_gap, &t); in flex_update() 293 …children_repos(cont, &f, track_first_item, next_track_first_item, abs_x, abs_y, max_main_size, ite… in flex_update() 294 track_first_item = next_track_first_item; in flex_update()
|