Searched refs:pidx (Results 1 – 2 of 2) sorted by relevance
303 uint8_t pidx = 0; in lv_vglite_create_rect_path_data() local312 path_data[pidx++] = VLC_OP_MOVE; in lv_vglite_create_rect_path_data()313 path_data[pidx++] = coords->x1 + final_radius; in lv_vglite_create_rect_path_data()314 path_data[pidx++] = coords->y1; in lv_vglite_create_rect_path_data()317 path_data[pidx++] = VLC_OP_CUBIC_REL; in lv_vglite_create_rect_path_data()318 path_data[pidx++] = cpoff; in lv_vglite_create_rect_path_data()319 path_data[pidx++] = 0; in lv_vglite_create_rect_path_data()320 path_data[pidx++] = final_radius; in lv_vglite_create_rect_path_data()321 path_data[pidx++] = final_radius - cpoff; in lv_vglite_create_rect_path_data()322 path_data[pidx++] = final_radius; in lv_vglite_create_rect_path_data()[all …]
91 static void add_arc_path(int32_t * arc_path, int * pidx, int32_t radius,125 int pidx = 0; in lv_gpu_nxp_vglite_draw_arc() local132 arc_path[pidx++] = VLC_OP_MOVE; in lv_gpu_nxp_vglite_draw_arc()133 arc_path[pidx++] = center->x + cp_x; in lv_gpu_nxp_vglite_draw_arc()134 arc_path[pidx++] = center->y + cp_y; in lv_gpu_nxp_vglite_draw_arc()137 add_arc_path(arc_path, &pidx, radius, start_angle, end_angle, center, true); in lv_gpu_nxp_vglite_draw_arc()144 arc_path[pidx++] = VLC_OP_LINE; in lv_gpu_nxp_vglite_draw_arc()145 arc_path[pidx++] = center->x + cp_x; in lv_gpu_nxp_vglite_draw_arc()146 arc_path[pidx++] = center->y + cp_y; in lv_gpu_nxp_vglite_draw_arc()151 arc_path[pidx++] = VLC_OP_MOVE; in lv_gpu_nxp_vglite_draw_arc()[all …]