Lines Matching full:path
92 vg_lite_path_t path; in _vglite_draw_line() local
111 /*** Init path ***/ in _vglite_draw_line()
114 int32_t line_path[] = { /*VG line path*/ in _vglite_draw_line()
120 …VGLITE_CHECK_ERROR(vg_lite_init_path(&path, VG_LITE_S32, VG_LITE_HIGH, sizeof(line_path), line_pat… in _vglite_draw_line()
128 VGLITE_CHECK_ERROR(vg_lite_set_draw_path_type(&path, VG_LITE_DRAW_STROKE_PATH)); in _vglite_draw_line()
130 …VGLITE_CHECK_ERROR(vg_lite_set_stroke(&path, cap_style, join_style, width, 8, stroke_dash_pattern,… in _vglite_draw_line()
133 VGLITE_CHECK_ERROR(vg_lite_update_stroke(&path)); in _vglite_draw_line()
135 VGLITE_CHECK_ERROR(vg_lite_draw(vgbuf, &path, VG_LITE_FILL_NON_ZERO, NULL, vgblend, vgcol)); in _vglite_draw_line()
139 VGLITE_CHECK_ERROR(vg_lite_clear_path(&path)); in _vglite_draw_line()