Searched refs:dest_buf_u8 (Results 1 – 3 of 3) sorted by relevance
/lvgl-latest/src/draw/sw/blend/ |
D | lv_draw_sw_blend_to_rgb888.c | 209 uint8_t * dest_buf_u8 = dsc->dest_buf; in lv_draw_sw_blend_color_to_rgb888() local 214 dest_buf_u8[x + 0] = dsc->color.blue; in lv_draw_sw_blend_color_to_rgb888() 215 dest_buf_u8[x + 1] = dsc->color.green; in lv_draw_sw_blend_color_to_rgb888() 216 dest_buf_u8[x + 2] = dsc->color.red; in lv_draw_sw_blend_color_to_rgb888() 219 dest_buf_u8 += dest_stride; in lv_draw_sw_blend_color_to_rgb888() 222 lv_memcpy(dest_buf_u8, dest_buf_ori, w); in lv_draw_sw_blend_color_to_rgb888() 223 dest_buf_u8 += dest_stride; in lv_draw_sw_blend_color_to_rgb888() 364 uint8_t * dest_buf_u8 = dsc->dest_buf; in i1_image_blend() local 381 dest_buf_u8[dest_x + 2] = chan_val; in i1_image_blend() 382 dest_buf_u8[dest_x + 1] = chan_val; in i1_image_blend() [all …]
|
D | lv_draw_sw_blend_to_i1.c | 941 uint8_t * dest_buf_u8 = dsc->dest_buf; in rgb565_image_blend() local 960 set_bit(dest_buf_u8, dest_x + bit_ofs); in rgb565_image_blend() 963 clear_bit(dest_buf_u8, dest_x + bit_ofs); in rgb565_image_blend() 966 dest_buf_u8 = drawbuf_next_row(dest_buf_u8, dest_stride); in rgb565_image_blend() 976 uint8_t dest = get_bit(dest_buf_u8, dest_x + bit_ofs) * 255; in rgb565_image_blend() 979 set_bit(dest_buf_u8, dest_x + bit_ofs); in rgb565_image_blend() 982 clear_bit(dest_buf_u8, dest_x + bit_ofs); in rgb565_image_blend() 985 dest_buf_u8 = drawbuf_next_row(dest_buf_u8, dest_stride); in rgb565_image_blend() 996 uint8_t dest = get_bit(dest_buf_u8, dest_x + bit_ofs) * 255; in rgb565_image_blend() 999 set_bit(dest_buf_u8, dest_x + bit_ofs); in rgb565_image_blend() [all …]
|
D | lv_draw_sw_blend_to_l8.c | 592 uint8_t * dest_buf_u8 = dsc->dest_buf; in rgb565_image_blend() local 608 dest_buf_u8[dest_x] = lv_color16_luminance(src_buf_c16[src_x]); in rgb565_image_blend() 610 dest_buf_u8 += dest_stride; in rgb565_image_blend() 619 … lv_color_8_8_mix(lv_color16_luminance(src_buf_c16[src_x]), &dest_buf_u8[dest_x], opa); in rgb565_image_blend() 621 dest_buf_u8 += dest_stride; in rgb565_image_blend() 630 … lv_color_8_8_mix(lv_color16_luminance(src_buf_c16[src_x]), &dest_buf_u8[dest_x], mask_buf[src_x]); in rgb565_image_blend() 632 dest_buf_u8 += dest_stride; in rgb565_image_blend() 642 …lv_color_8_8_mix(lv_color16_luminance(src_buf_c16[src_x]), &dest_buf_u8[dest_x], LV_OPA_MIX2(opa, … in rgb565_image_blend() 644 dest_buf_u8 += dest_stride; in rgb565_image_blend() 660 blend_non_normal_pixel(&dest_buf_u8[dest_x], src_argb, dsc->blend_mode); in rgb565_image_blend() [all …]
|