Searched refs:nema_gfx_path (Results 1 – 3 of 3) sorted by relevance
/lvgl-latest/src/draw/nema_gfx/ |
D | lv_nema_gfx_path.c | 52 lv_nema_gfx_path_t * nema_gfx_path = lv_malloc_zeroed(sizeof(lv_nema_gfx_path_t)); in lv_nema_gfx_path_create() local 53 LV_ASSERT_MALLOC(nema_gfx_path); in lv_nema_gfx_path_create() 54 nema_gfx_path->seg = NULL; in lv_nema_gfx_path_create() 55 nema_gfx_path->data = NULL; in lv_nema_gfx_path_create() 56 nema_gfx_path->seg_size = 0; in lv_nema_gfx_path_create() 57 nema_gfx_path->data_size = 0; in lv_nema_gfx_path_create() 61 return nema_gfx_path; in lv_nema_gfx_path_create() 64 void lv_nema_gfx_path_alloc(lv_nema_gfx_path_t * nema_gfx_path) in lv_nema_gfx_path_alloc() argument 67 nema_gfx_path->path = nema_vg_path_create(); in lv_nema_gfx_path_alloc() 68 nema_gfx_path->paint = nema_vg_paint_create(); in lv_nema_gfx_path_alloc() [all …]
|
D | lv_nema_gfx_path.h | 67 void lv_nema_gfx_path_alloc(lv_nema_gfx_path_t * nema_gfx_path); 69 void lv_nema_gfx_path_destroy(lv_nema_gfx_path_t * nema_gfx_path); 71 void lv_nema_gfx_path_move_to(lv_nema_gfx_path_t * nema_gfx_path, 74 void lv_nema_gfx_path_line_to(lv_nema_gfx_path_t * nema_gfx_path, 77 void lv_nema_gfx_path_quad_to(lv_nema_gfx_path_t * nema_gfx_path, 81 void lv_nema_gfx_path_cubic_to(lv_nema_gfx_path_t * nema_gfx_path, 86 void lv_nema_gfx_path_end(lv_nema_gfx_path_t * nema_gfx_path);
|
D | lv_draw_nema_gfx_label.c | 157 lv_nema_gfx_path_t * nema_gfx_path = (lv_nema_gfx_path_t *)glyph_draw_dsc->glyph_data; in _draw_nema_gfx_outline() local 170 nema_vg_path_clear(nema_gfx_path->path); in _draw_nema_gfx_outline() 171 nema_vg_paint_clear(nema_gfx_path->paint); in _draw_nema_gfx_outline() 175 …nema_vg_path_set_shape(nema_gfx_path->path, nema_gfx_path->seg_size, nema_gfx_path->seg, nema_gfx_… in _draw_nema_gfx_outline() 176 nema_gfx_path->data); in _draw_nema_gfx_outline() 178 nema_vg_paint_set_type(nema_gfx_path->paint, NEMA_VG_PAINT_COLOR); in _draw_nema_gfx_outline() 183 nema_vg_paint_set_paint_color(nema_gfx_path->paint, nema_dsc_color); in _draw_nema_gfx_outline() 185 nema_vg_path_set_matrix(nema_gfx_path->path, matrix); in _draw_nema_gfx_outline() 186 nema_vg_draw_path(nema_gfx_path->path, nema_gfx_path->paint); in _draw_nema_gfx_outline()
|