Lines Matching refs:vg
61 } vg; member
182 if(lv_array_size(&stroke_item->vg.dash_pattern)) { in lv_vg_lite_stroke_get_path()
187 return stroke_item->vg.path; in lv_vg_lite_stroke_get_path()
217 item->vg.path = lv_vg_lite_path_create(VG_LITE_FP32); in stroke_create_cb()
218 lv_vg_lite_path_append_path(item->vg.path, item->lv.path); in stroke_create_cb()
226 lv_array_init(&item->vg.dash_pattern, size, sizeof(float)); in stroke_create_cb()
227 lv_array_copy(&item->vg.dash_pattern, &item->lv.dash_pattern); in stroke_create_cb()
231 vg_dash_pattern = lv_array_front(&item->vg.dash_pattern); in stroke_create_cb()
235 vg_lite_path_t * vg_path = lv_vg_lite_path_get_path(item->vg.path); in stroke_create_cb()
282 if(item->vg.path) { in stroke_free_cb()
283 lv_vg_lite_path_destroy(item->vg.path); in stroke_free_cb()
284 item->vg.path = NULL; in stroke_free_cb()
288 lv_array_deinit(&item->vg.dash_pattern); in stroke_free_cb()
298 &lhs->vg.dash_pattern; in dash_pattern_compare()
301 &rhs->vg.dash_pattern; in dash_pattern_compare()
334 const vg_lite_path_t * lhs_path = lhs->vg.path ? in path_compare()
335 lv_vg_lite_path_get_path(lhs->vg.path) : in path_compare()
337 const vg_lite_path_t * rhs_path = rhs->vg.path ? in path_compare()
338 lv_vg_lite_path_get_path(rhs->vg.path) : in path_compare()