Home
last modified time | relevance | path

Searched refs:seg_point (Results 1 – 1 of 1) sorted by relevance

/lvgl-latest/src/draw/nema_gfx/
Dlv_nema_gfx_path.c47 static int seg_point = 0; variable
59 seg_point = 0; in lv_nema_gfx_path_create()
107 LV_ASSERT(path->seg_size > seg_point); in lv_nema_gfx_path_move_to()
108 path->seg[seg_point++] = NEMA_VG_PRIM_MOVE; in lv_nema_gfx_path_move_to()
117 LV_ASSERT(path->seg_size > seg_point); in lv_nema_gfx_path_line_to()
118 path->seg[seg_point++] = NEMA_VG_PRIM_LINE; in lv_nema_gfx_path_line_to()
128 LV_ASSERT(path->seg_size > seg_point); in lv_nema_gfx_path_quad_to()
129 path->seg[seg_point++] = NEMA_VG_PRIM_BEZIER_QUAD; in lv_nema_gfx_path_quad_to()
140 LV_ASSERT(path->seg_size > seg_point); in lv_nema_gfx_path_cubic_to()
141 path->seg[seg_point++] = NEMA_VG_PRIM_BEZIER_CUBIC; in lv_nema_gfx_path_cubic_to()
[all …]