Searched refs:lv_vector_dsc_t (Results 1 – 8 of 8) sorted by relevance
/lvgl-latest/src/draw/ |
D | lv_draw_vector.h | 225 lv_vector_dsc_t * lv_vector_dsc_create(lv_layer_t * layer); 231 void lv_vector_dsc_delete(lv_vector_dsc_t * dsc); 238 void lv_vector_dsc_set_transform(lv_vector_dsc_t * dsc, const lv_matrix_t * matrix); 245 void lv_vector_dsc_set_blend_mode(lv_vector_dsc_t * dsc, lv_vector_blend_t blend); 252 void lv_vector_dsc_set_fill_color32(lv_vector_dsc_t * dsc, lv_color32_t color); 259 void lv_vector_dsc_set_fill_color(lv_vector_dsc_t * dsc, lv_color_t color); 266 void lv_vector_dsc_set_fill_opa(lv_vector_dsc_t * dsc, lv_opa_t opa); 273 void lv_vector_dsc_set_fill_rule(lv_vector_dsc_t * dsc, lv_vector_fill_t rule); 280 void lv_vector_dsc_set_fill_image(lv_vector_dsc_t * dsc, const lv_draw_image_dsc_t * img_dsc); 290 void lv_vector_dsc_set_fill_linear_gradient(lv_vector_dsc_t * dsc, float x1, float y1, float x2, fl… [all …]
|
D | lv_draw_vector.c | 469 lv_vector_dsc_t * lv_vector_dsc_create(lv_layer_t * layer) in lv_vector_dsc_create() 471 lv_vector_dsc_t * dsc = lv_malloc(sizeof(lv_vector_dsc_t)); in lv_vector_dsc_create() 473 lv_memzero(dsc, sizeof(lv_vector_dsc_t)); in lv_vector_dsc_create() 501 void lv_vector_dsc_delete(lv_vector_dsc_t * dsc) in lv_vector_dsc_delete() 512 void lv_vector_dsc_set_blend_mode(lv_vector_dsc_t * dsc, lv_vector_blend_t blend) in lv_vector_dsc_set_blend_mode() 517 void lv_vector_dsc_set_transform(lv_vector_dsc_t * dsc, const lv_matrix_t * matrix) in lv_vector_dsc_set_transform() 522 void lv_vector_dsc_set_fill_color(lv_vector_dsc_t * dsc, lv_color_t color) in lv_vector_dsc_set_fill_color() 528 void lv_vector_dsc_set_fill_color32(lv_vector_dsc_t * dsc, lv_color32_t color) in lv_vector_dsc_set_fill_color32() 534 void lv_vector_dsc_set_fill_opa(lv_vector_dsc_t * dsc, lv_opa_t opa) in lv_vector_dsc_set_fill_opa() 539 void lv_vector_dsc_set_fill_rule(lv_vector_dsc_t * dsc, lv_vector_fill_t rule) in lv_vector_dsc_set_fill_rule() [all …]
|
/lvgl-latest/demos/vector_graphic/ |
D | lv_demo_vector_graphic.c | 26 static void draw_pattern(lv_vector_dsc_t * ctx, lv_vector_path_t * path) in draw_pattern() 51 static void draw_gradient(lv_vector_dsc_t * ctx, lv_vector_path_t * path) in draw_gradient() 81 static void draw_radial_gradient(lv_vector_dsc_t * ctx, lv_vector_path_t * path) in draw_radial_gradient() 108 static void draw_shapes(lv_vector_dsc_t * ctx, lv_vector_path_t * path) in draw_shapes() 148 static void draw_lines(lv_vector_dsc_t * ctx, lv_vector_path_t * path) in draw_lines() 172 static void draw_blend(lv_vector_dsc_t * ctx, lv_vector_path_t * path) in draw_blend() 188 static void draw_arc(lv_vector_dsc_t * ctx, lv_vector_path_t * path) in draw_arc() 221 lv_vector_dsc_t * ctx = lv_vector_dsc_create(layer); in draw_vector()
|
/lvgl-latest/src/libs/svg/ |
D | lv_svg_render.h | 48 …void (*render)(const struct _lv_svg_render_obj * obj, lv_vector_dsc_t * dsc, const lv_matrix_t * m… 87 void lv_draw_svg_render(lv_vector_dsc_t * dsc, const lv_svg_render_obj_t * render);
|
D | lv_svg_render.c | 69 static void _prepare_render(const lv_svg_render_obj_t * obj, lv_vector_dsc_t * dsc); 70 static void _special_render(const lv_svg_render_obj_t * obj, lv_vector_dsc_t * dsc); 172 lv_vector_dsc_t * dsc, lv_matrix_t * matrix); 991 static void _copy_draw_dsc_from_ref(lv_vector_dsc_t * dsc, const lv_svg_render_obj_t * obj) in _copy_draw_dsc_from_ref() 1196 static void _setup_matrix(lv_matrix_t * matrix, lv_vector_dsc_t * dsc, const lv_svg_render_obj_t * … in _setup_matrix() 1202 static void _restore_matrix(lv_matrix_t * matrix, lv_vector_dsc_t * dsc) in _restore_matrix() 1207 static void _prepare_render(const lv_svg_render_obj_t * obj, lv_vector_dsc_t * dsc) in _prepare_render() 1212 static void _special_render(const lv_svg_render_obj_t * obj, lv_vector_dsc_t * dsc) in _special_render() 1260 static void _render_viewport(const lv_svg_render_obj_t * obj, lv_vector_dsc_t * dsc, const lv_matri… in _render_viewport() 1272 static void _render_rect(const lv_svg_render_obj_t * obj, lv_vector_dsc_t * dsc, const lv_matrix_t … in _render_rect() [all …]
|
/lvgl-latest/examples/widgets/canvas/ |
D | lv_example_canvas_8.c | 27 lv_vector_dsc_t * dsc = lv_vector_dsc_create(&layer); in lv_example_canvas_8()
|
/lvgl-latest/tests/src/test_cases/draw/ |
D | test_draw_vector.c | 20 lv_vector_dsc_t * ctx = lv_vector_dsc_create(layer); in draw_shapes() 138 lv_vector_dsc_t * ctx = lv_vector_dsc_create(layer); in draw_lines() 315 lv_vector_dsc_t * dsc = lv_vector_dsc_create(layer); in event_cb()
|
/lvgl-latest/src/misc/ |
D | lv_types.h | 290 typedef struct _lv_vector_dsc_t lv_vector_dsc_t; typedef
|