Searched refs:track_first_item (Results 1 – 1 of 1) sorted by relevance
/lvgl-3.7.0/src/extra/layouts/flex/ |
D | lv_flex.c | 252 int32_t track_first_item; in flex_update() local 256 track_first_item = f.rev ? cont->spec_attr->child_cnt - 1 : 0; in flex_update() 258 while(track_first_item < (int32_t)cont->spec_attr->child_cnt && track_first_item >= 0) { in flex_update() 261 … next_track_first_item = find_track_end(cont, &f, track_first_item, max_main_size, item_gap, &t); in flex_update() 264 track_first_item = next_track_first_item; in flex_update() 274 track_first_item = f.rev ? cont->spec_attr->child_cnt - 1 : 0; in flex_update() 280 while(track_first_item < (int32_t)cont->spec_attr->child_cnt && track_first_item >= 0) { in flex_update() 284 … next_track_first_item = find_track_end(cont, &f, track_first_item, max_main_size, item_gap, &t); in flex_update() 289 …children_repos(cont, &f, track_first_item, next_track_first_item, abs_x, abs_y, max_main_size, ite… in flex_update() 290 track_first_item = next_track_first_item; in flex_update()
|