Searched refs:pos_x (Results 1 – 1 of 1) sorted by relevance
/lvgl-2.7.6/src/lv_draw/ |
D | lv_draw_label.c | 38 LV_ATTRIBUTE_FAST_MEM static void draw_letter_normal(lv_coord_t pos_x, lv_coord_t pos_y, lv_font_gl… 41 static void draw_letter_subpx(lv_coord_t pos_x, lv_coord_t pos_y, lv_font_glyph_dsc_t * g, const lv… 427 int32_t pos_x = pos_p->x + g.ofs_x; in lv_draw_letter() local 431 if(pos_x + g.box_w < clip_area->x1 || in lv_draw_letter() 432 pos_x > clip_area->x2 || in lv_draw_letter() 446 draw_letter_subpx(pos_x, pos_y, &g, clip_area, map_p, color, opa, blend_mode); in lv_draw_letter() 449 draw_letter_normal(pos_x, pos_y, &g, clip_area, map_p, color, opa, blend_mode); in lv_draw_letter() 454 LV_ATTRIBUTE_FAST_MEM static void draw_letter_normal(lv_coord_t pos_x, lv_coord_t pos_y, lv_font_gl… in draw_letter_normal() argument 512 int32_t col_start = pos_x >= clip_area->x1 ? 0 : clip_area->x1 - pos_x; in draw_letter_normal() 513 int32_t col_end = pos_x + box_w <= clip_area->x2 ? box_w : clip_area->x2 - pos_x + 1; in draw_letter_normal() [all …]
|