Lines Matching refs:blend_fp

404 …set_px_argb_blend(uint8_t * buf, lv_color_t color, lv_opa_t opa, lv_color_t (*blend_fp)(lv_color_t,  in set_px_argb_blend()
431 last_res_color = blend_fp(last_src_color, last_dest_color, last_opa); in set_px_argb_blend()
545 lv_color_t (*blend_fp)(lv_color_t, lv_color_t, lv_opa_t); in fill_blended() local
548 blend_fp = color_blend_true_color_additive; in fill_blended()
551 blend_fp = color_blend_true_color_subtractive; in fill_blended()
554 blend_fp = color_blend_true_color_multiply; in fill_blended()
564 lv_color_t last_res_color = blend_fp(color, dest_buf[0], opa); in fill_blended()
569 last_res_color = blend_fp(color, dest_buf[x], opa); in fill_blended()
584 last_res_color = blend_fp(color, last_dest_color, opa_tmp); in fill_blended()
592 last_res_color = blend_fp(color, dest_buf[x], opa_tmp); in fill_blended()
751 lv_color_t (*blend_fp)(lv_color_t, lv_color_t, lv_opa_t); in map_argb() local
754 blend_fp = color_blend_true_color_additive; in map_argb()
757 blend_fp = color_blend_true_color_subtractive; in map_argb()
760 blend_fp = color_blend_true_color_multiply; in map_argb()
763 blend_fp = NULL; in map_argb()
769 if(blend_fp == NULL && LV_COLOR_DEPTH == 32) { in map_argb()
779 if(blend_fp == NULL) { in map_argb()
787 set_px_argb_blend(dest_buf8, src_buf[x], LV_OPA_COVER, blend_fp); in map_argb()
802 if(blend_fp == NULL) { in map_argb()
810 set_px_argb_blend(dest_buf8, src_buf[x], opa, blend_fp); in map_argb()
827 if(blend_fp == NULL) { in map_argb()
835 set_px_argb_blend(dest_buf8, src_buf[x], mask[x], blend_fp); in map_argb()
849 if(blend_fp == NULL) { in map_argb()
862 set_px_argb_blend(dest_buf8, src_buf[x], opa_tmp, blend_fp); in map_argb()
889 lv_color_t (*blend_fp)(lv_color_t, lv_color_t, lv_opa_t); in map_blended() local
892 blend_fp = color_blend_true_color_additive; in map_blended()
895 blend_fp = color_blend_true_color_subtractive; in map_blended()
898 blend_fp = color_blend_true_color_multiply; in map_blended()
911 lv_color_t last_res_color = blend_fp(last_src_color, last_dest_color, opa); in map_blended()
917 last_res_color = blend_fp(last_src_color, last_dest_color, opa); in map_blended()
930 lv_color_t last_res_color = blend_fp(last_src_color, last_dest_color, last_opa); in map_blended()
939 last_res_color = blend_fp(last_src_color, last_dest_color, last_opa); in map_blended()