Lines Matching full:path
141 lv_vector_path_t * path; member
165 lv_vector_path_t * path; member
183 lv_vector_path_t * path; member
467 lv_vector_path_clear(poly->path); in _set_polyline_attr()
474 lv_vector_path_move_to(poly->path, &pt); in _set_polyline_attr()
478 lv_vector_path_line_to(poly->path, &pt); in _set_polyline_attr()
489 lv_vector_path_close(poly->path); in _set_polygen_attr()
514 lv_vector_path_clear(poly->path); in _set_path_attr()
526 lv_vector_path_move_to(poly->path, &pt); in _set_path_attr()
532 lv_vector_path_line_to(poly->path, &pt); in _set_path_attr()
541 lv_vector_path_quad_to(poly->path, &pt[0], &pt[1]); in _set_path_attr()
552 lv_vector_path_cubic_to(poly->path, &pt[0], &pt[1], &pt[2]); in _set_path_attr()
559 lv_vector_path_close(poly->path); in _set_path_attr()
579 lv_vector_path_clear((obj)->path); \
593 lv_vector_path_clear((obj)->path); \
604 lv_vector_path_clear((obj)->path); \
618 lv_vector_path_clear((obj)->path); \
632 lv_vector_path_clear((obj)->path); \
1083 poly->path = lv_vector_path_create(LV_VECTOR_PATH_QUALITY_MEDIUM); in _init_poly()
1098 text->path = lv_vector_path_create(LV_VECTOR_PATH_QUALITY_MEDIUM); in _init_text()
1128 span->path = lv_vector_path_create(LV_VECTOR_PATH_QUALITY_MEDIUM); in _init_tspan()
1286 lv_vector_path_t * path = lv_vector_path_create(LV_VECTOR_PATH_QUALITY_MEDIUM); in _render_rect() local
1288 lv_vector_path_append_rect(path, &rc, rect->rx, rect->ry); in _render_rect()
1291 lv_vector_dsc_add_path(dsc, path); in _render_rect()
1292 lv_vector_path_delete(path); in _render_rect()
1307 lv_vector_path_t * path = lv_vector_path_create(LV_VECTOR_PATH_QUALITY_MEDIUM); in _render_circle() local
1309 lv_vector_path_append_circle(path, &cp, circle->r, circle->r); in _render_circle()
1312 lv_vector_dsc_add_path(dsc, path); in _render_circle()
1313 lv_vector_path_delete(path); in _render_circle()
1328 lv_vector_path_t * path = lv_vector_path_create(LV_VECTOR_PATH_QUALITY_MEDIUM); in _render_ellipse() local
1330 lv_vector_path_append_circle(path, &cp, ellipse->rx, ellipse->ry); in _render_ellipse()
1333 lv_vector_dsc_add_path(dsc, path); in _render_ellipse()
1334 lv_vector_path_delete(path); in _render_ellipse()
1349 lv_vector_path_t * path = lv_vector_path_create(LV_VECTOR_PATH_QUALITY_MEDIUM); in _render_line() local
1351 lv_vector_path_move_to(path, &sp); in _render_line()
1353 lv_vector_path_line_to(path, &ep); in _render_line()
1356 lv_vector_dsc_add_path(dsc, path); in _render_line()
1357 lv_vector_path_delete(path); in _render_line()
1374 lv_vector_dsc_add_path(dsc, poly->path); in _render_poly()
1417 lv_vector_path_t * path = lv_vector_path_create(LV_VECTOR_PATH_QUALITY_MEDIUM); in _render_image() local
1419 lv_vector_path_append_rect(path, &rc, 0, 0); in _render_image()
1504 lv_vector_dsc_add_path(dsc, path); in _render_image()
1505 lv_vector_path_delete(path); in _render_image()
1568 if(lv_array_size(&text->path->ops) == 0) { /* empty path */ in _render_text()
1597 lv_vector_path_append_path(text->path, glyph_path); in _render_text()
1604 lv_vector_path_get_bounding(text->path, &text->bounds); in _render_text()
1608 lv_vector_dsc_add_path(dsc, text->path); in _render_text()
1641 if(lv_array_size(&span->path->ops) == 0) { /* empty path */ in _render_span()
1661 lv_vector_path_append_path(span->path, glyph_path); in _render_span()
1666 lv_vector_path_get_bounding(span->path, &span->bounds); in _render_span()
1669 lv_vector_dsc_add_path(dsc, span->path); in _render_span()
1737 lv_vector_path_delete(poly->path); in _destroy_poly()
1765 lv_vector_path_delete(text->path); in _destroy_text()
1788 lv_vector_path_delete(span->path); in _destroy_tspan()