Home
last modified time | relevance | path

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

/lvgl-latest/src/draw/sw/blend/
Dlv_draw_sw_blend_to_i1.c1058 uint8_t dest_lumi = get_bit(dest_buf, dest_x) * 255; in blend_non_normal_pixel() local
1061 res = LV_MIN(dest_lumi + src_lumi, 255); in blend_non_normal_pixel()
1064 res = LV_MAX(dest_lumi - src_lumi, 0); in blend_non_normal_pixel()
1067 res = (dest_lumi * src_lumi) >> 8; in blend_non_normal_pixel()
1074 lv_color_8_8_mix(res, &dest_lumi, src.alpha); in blend_non_normal_pixel()
1075 if(dest_lumi > I1_LUM_THRESHOLD) { in blend_non_normal_pixel()