Lines Matching refs:gradient
73 dst->stroke_dsc.gradient.style = src->stroke_dsc.gradient.style; in _copy_draw_dsc()
74 dst->stroke_dsc.gradient.cx = src->stroke_dsc.gradient.cx; in _copy_draw_dsc()
75 dst->stroke_dsc.gradient.cy = src->stroke_dsc.gradient.cy; in _copy_draw_dsc()
76 dst->stroke_dsc.gradient.cr = src->stroke_dsc.gradient.cr; in _copy_draw_dsc()
77 dst->stroke_dsc.gradient.spread = src->fill_dsc.gradient.spread; in _copy_draw_dsc()
78 … lv_memcpy(&(dst->stroke_dsc.gradient), &(src->stroke_dsc.gradient), sizeof(lv_vector_gradient_t)); in _copy_draw_dsc()
553 dsc->current_dsc.fill_dsc.gradient.style = LV_VECTOR_GRADIENT_STYLE_LINEAR; in lv_vector_dsc_set_fill_linear_gradient()
554 dsc->current_dsc.fill_dsc.gradient.x1 = x1; in lv_vector_dsc_set_fill_linear_gradient()
555 dsc->current_dsc.fill_dsc.gradient.y1 = y1; in lv_vector_dsc_set_fill_linear_gradient()
556 dsc->current_dsc.fill_dsc.gradient.x2 = x2; in lv_vector_dsc_set_fill_linear_gradient()
557 dsc->current_dsc.fill_dsc.gradient.y2 = y2; in lv_vector_dsc_set_fill_linear_gradient()
563 dsc->current_dsc.fill_dsc.gradient.style = LV_VECTOR_GRADIENT_STYLE_RADIAL; in lv_vector_dsc_set_fill_radial_gradient()
564 dsc->current_dsc.fill_dsc.gradient.cx = cx; in lv_vector_dsc_set_fill_radial_gradient()
565 dsc->current_dsc.fill_dsc.gradient.cy = cy; in lv_vector_dsc_set_fill_radial_gradient()
566 dsc->current_dsc.fill_dsc.gradient.cr = radius; in lv_vector_dsc_set_fill_radial_gradient()
571 dsc->current_dsc.fill_dsc.gradient.spread = spread; in lv_vector_dsc_set_fill_gradient_spread()
582 … lv_memcpy(&(dsc->current_dsc.fill_dsc.gradient.stops), stops, sizeof(lv_gradient_stop_t) * count); in lv_vector_dsc_set_fill_gradient_color_stops()
583 dsc->current_dsc.fill_dsc.gradient.stops_count = count; in lv_vector_dsc_set_fill_gradient_color_stops()
656 dsc->current_dsc.stroke_dsc.gradient.style = LV_VECTOR_GRADIENT_STYLE_LINEAR; in lv_vector_dsc_set_stroke_linear_gradient()
657 dsc->current_dsc.stroke_dsc.gradient.x1 = x1; in lv_vector_dsc_set_stroke_linear_gradient()
658 dsc->current_dsc.stroke_dsc.gradient.y1 = y1; in lv_vector_dsc_set_stroke_linear_gradient()
659 dsc->current_dsc.stroke_dsc.gradient.x2 = x2; in lv_vector_dsc_set_stroke_linear_gradient()
660 dsc->current_dsc.stroke_dsc.gradient.y2 = y2; in lv_vector_dsc_set_stroke_linear_gradient()
666 dsc->current_dsc.stroke_dsc.gradient.style = LV_VECTOR_GRADIENT_STYLE_RADIAL; in lv_vector_dsc_set_stroke_radial_gradient()
667 dsc->current_dsc.stroke_dsc.gradient.cx = cx; in lv_vector_dsc_set_stroke_radial_gradient()
668 dsc->current_dsc.stroke_dsc.gradient.cy = cy; in lv_vector_dsc_set_stroke_radial_gradient()
669 dsc->current_dsc.stroke_dsc.gradient.cr = radius; in lv_vector_dsc_set_stroke_radial_gradient()
674 dsc->current_dsc.stroke_dsc.gradient.spread = spread; in lv_vector_dsc_set_stroke_gradient_spread()
685 …lv_memcpy(&(dsc->current_dsc.stroke_dsc.gradient.stops), stops, sizeof(lv_gradient_stop_t) * count… in lv_vector_dsc_set_stroke_gradient_color_stops()
686 dsc->current_dsc.stroke_dsc.gradient.stops_count = count; in lv_vector_dsc_set_stroke_gradient_color_stops()