Home
last modified time | relevance | path

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

/lvgl-3.7.0/src/draw/nxp/vglite/
Dlv_draw_vglite_arc.c74 int32_t p2y; member
251 dst->p2y = src->p2y; in copy_arc()
287 fullarc->p2y = fullarc->rad; in set_full_arc()
298 fullarc->p2y = (int32_t)tang; in set_full_arc()
309 fullarc->p2y = 0 - fullarc->rad; in set_full_arc()
320 fullarc->p2y = 0 - (int32_t)tang; in set_full_arc()
409 float b2y = lerp((float)fullarc.p1y, (float)fullarc.p2y, t2); in get_subarc_control_points()
412 float c2y = lerp((float)fullarc.p2y, (float)fullarc.p3y, t2); in get_subarc_control_points()
432 float b1y = lerp((float)fullarc.p1y, (float)fullarc.p2y, t1); in get_subarc_control_points()
435 float c1y = lerp((float)fullarc.p2y, (float)fullarc.p3y, t1); in get_subarc_control_points()
[all …]
/lvgl-3.7.0/src/draw/
Dlv_draw_mask.c295 lv_coord_t p2y, lv_draw_mask_line_side_t side) in lv_draw_mask_line_points_init() argument
299 if(p1y == p2y && side == LV_DRAW_MASK_LINE_SIDE_BOTTOM) { in lv_draw_mask_line_points_init()
301 p2y--; in lv_draw_mask_line_points_init()
304 if(p1y > p2y) { in lv_draw_mask_line_points_init()
310 t = p2y; in lv_draw_mask_line_points_init()
311 p2y = p1y; in lv_draw_mask_line_points_init()
318 param->cfg.p2.y = p2y; in lv_draw_mask_line_points_init()
323 param->flat = (LV_ABS(p2x - p1x) > LV_ABS(p2y - p1y)) ? 1 : 0; in lv_draw_mask_line_points_init()
330 int32_t dy = p2y - p1y; in lv_draw_mask_line_points_init()
398 int32_t p2y; in lv_draw_mask_line_angle_init() local
[all …]
Dlv_draw_mask.h320 lv_coord_t p2y, lv_draw_mask_line_side_t side);