Home
last modified time | relevance | path

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

/lvgl-3.7.0/src/draw/sw/
Dlv_draw_sw_blend.c408 static lv_color_t last_src_color; in set_px_argb_blend() local
427 …if(last_dest_color.full != bg_color.full || last_src_color.full != color.full || last_opa != opa) { in set_px_argb_blend()
429 last_src_color = color; in set_px_argb_blend()
431 last_res_color = blend_fp(last_src_color, last_dest_color, last_opa); in set_px_argb_blend()
906 lv_color_t last_src_color; in map_blended() local
910 last_src_color = src_buf[0]; in map_blended()
911 lv_color_t last_res_color = blend_fp(last_src_color, last_dest_color, opa); in map_blended()
914 … if(last_src_color.full != src_buf[x].full || last_dest_color.full != dest_buf[x].full) { in map_blended()
916 last_src_color = src_buf[x]; in map_blended()
917 last_res_color = blend_fp(last_src_color, last_dest_color, opa); in map_blended()
[all …]