Home
last modified time | relevance | path

Searched refs:coords_tmp (Results 1 – 1 of 1) sorted by relevance

/lvgl-latest/src/widgets/
Dlv_img.c657 lv_area_t coords_tmp; in draw_img() local
660 coords_tmp.y1 = img_max_area.y1 + offset_y; in draw_img()
661 if(coords_tmp.y1 > img_max_area.y1) coords_tmp.y1 -= img->h; in draw_img()
662 coords_tmp.y2 = coords_tmp.y1 + img->h - 1; in draw_img()
664 …for(; coords_tmp.y1 < img_max_area.y2; coords_tmp.y1 += img_size_final.y, coords_tmp.y2 += img_siz… in draw_img()
665 coords_tmp.x1 = img_max_area.x1 + offset_x; in draw_img()
666 if(coords_tmp.x1 > img_max_area.x1) coords_tmp.x1 -= img->w; in draw_img()
667 coords_tmp.x2 = coords_tmp.x1 + img->w - 1; in draw_img()
669 …for(; coords_tmp.x1 < img_max_area.x2; coords_tmp.x1 += img_size_final.x, coords_tmp.x2 += img_siz… in draw_img()
670 lv_draw_img(draw_ctx, &img_dsc, &coords_tmp, img->src); in draw_img()