/lvgl-latest/src/draw/sw/blend/ |
D | lv_draw_sw_blend_to_rgb888.c | 372 int32_t src_x; in i1_image_blend() local 379 for(dest_x = 0, src_x = 0; src_x < w; dest_x += dest_px_size, src_x++) { in i1_image_blend() 380 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() 393 for(dest_x = 0, src_x = 0; src_x < w; dest_x += dest_px_size, src_x++) { in i1_image_blend() 394 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() 405 for(dest_x = 0, src_x = 0; src_x < w; dest_x += dest_px_size, src_x++) { in i1_image_blend() 406 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() 407 lv_color_8_24_mix(chan_val, &dest_buf_u8[dest_x], mask_buf[src_x]); in i1_image_blend() 418 for(dest_x = 0, src_x = 0; src_x < w; dest_x += dest_px_size, src_x++) { in i1_image_blend() 419 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() [all …]
|
D | lv_draw_sw_blend_to_l8.c | 343 int32_t src_x; in i1_image_blend() local 350 for(dest_x = 0, src_x = 0; src_x < w; dest_x++, src_x++) { in i1_image_blend() 351 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() 362 for(dest_x = 0, src_x = 0; src_x < w; dest_x++, src_x++) { in i1_image_blend() 363 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() 374 for(dest_x = 0, src_x = 0; src_x < w; dest_x++, src_x++) { in i1_image_blend() 375 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() 376 lv_color_8_8_mix(chan_val, &dest_buf_l8[dest_x], mask_buf[src_x]); in i1_image_blend() 387 for(dest_x = 0, src_x = 0; src_x < w; dest_x++, src_x++) { in i1_image_blend() 388 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() [all …]
|
D | lv_draw_sw_blend_to_i1.c | 368 int32_t src_x; in i1_image_blend() local 377 for(dest_x = 0, src_x = 0; src_x < w; dest_x++, src_x++) { in i1_image_blend() 378 if(get_bit(src_buf_i1, src_x)) { in i1_image_blend() 393 for(dest_x = 0, src_x = 0; src_x < w; dest_x++, src_x++) { in i1_image_blend() 394 uint8_t src = get_bit(src_buf_i1, src_x); in i1_image_blend() 412 for(dest_x = 0, src_x = 0; src_x < w; dest_x++, src_x++) { in i1_image_blend() 413 uint8_t mask_val = mask_buf[src_x]; in i1_image_blend() 414 uint8_t src = get_bit(src_buf_i1, src_x); in i1_image_blend() 433 for(dest_x = 0, src_x = 0; src_x < w; dest_x++, src_x++) { in i1_image_blend() 434 uint8_t mask_val = mask_buf[src_x]; in i1_image_blend() [all …]
|
D | lv_draw_sw_blend_to_rgb565.c | 422 int32_t src_x; in i1_image_blend() local 429 for(dest_x = 0, src_x = 0; dest_x < w; dest_x++, src_x++) { in i1_image_blend() 430 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() 441 for(dest_x = 0, src_x = 0; dest_x < w; dest_x++, src_x++) { in i1_image_blend() 442 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() 454 for(dest_x = 0, src_x = 0; dest_x < w; dest_x++, src_x++) { in i1_image_blend() 455 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() 467 for(dest_x = 0, src_x = 0; dest_x < w; dest_x++, src_x++) { in i1_image_blend() 468 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() 480 for(dest_x = 0, src_x = 0; dest_x < w; dest_x++, src_x += 4) { in i1_image_blend() [all …]
|
D | lv_draw_sw_blend_to_argb8888.c | 378 int32_t src_x; in i1_image_blend() local 385 for(dest_x = 0, src_x = 0; src_x < w; dest_x++, src_x++) { in i1_image_blend() 386 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() 400 for(dest_x = 0, src_x = 0; src_x < w; dest_x++, src_x++) { in i1_image_blend() 401 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() 412 for(dest_x = 0, src_x = 0; src_x < w; dest_x++, src_x++) { in i1_image_blend() 413 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() 414 lv_color_8_32_mix(chan_val, &dest_buf_c32[dest_x], mask_buf[src_x]); in i1_image_blend() 425 for(dest_x = 0, src_x = 0; src_x < w; dest_x++, src_x++) { in i1_image_blend() 426 uint8_t chan_val = get_bit(src_buf_i1, src_x) * 255; in i1_image_blend() [all …]
|
D | lv_draw_sw_blend_to_al88.c | 741 int32_t src_x; in rgb888_image_blend() local 749 for(dest_x = 0, src_x = 0; dest_x < w; dest_x++, src_x += src_px_size) { in rgb888_image_blend() 750 dest_buf_al88[dest_x].lumi = lv_color24_luminance(&src_buf_u8[src_x]); in rgb888_image_blend() 761 for(dest_x = 0, src_x = 0; dest_x < w; dest_x++, src_x += src_px_size) { in rgb888_image_blend() 763 src_color.lumi = lv_color24_luminance(&src_buf_u8[src_x]); in rgb888_image_blend() 776 … for(mask_x = 0, dest_x = 0, src_x = 0; dest_x < w; mask_x++, dest_x++, src_x += src_px_size) { in rgb888_image_blend() 778 src_color.lumi = lv_color24_luminance(&src_buf_u8[src_x]); in rgb888_image_blend() 792 … for(mask_x = 0, dest_x = 0, src_x = 0; dest_x < w; mask_x++, dest_x++, src_x += src_px_size) { in rgb888_image_blend() 794 src_color.lumi = lv_color24_luminance(&src_buf_u8[src_x]); in rgb888_image_blend() 807 for(dest_x = 0, src_x = 0; dest_x < w; dest_x++, src_x += src_px_size) { in rgb888_image_blend() [all …]
|
/lvgl-latest/libs/nema_gfx/include/ |
D | nema_graphics.h | 718 void nema_blit_subrect(int dst_x, int dst_y, int w, int h, int src_x, int src_y); 747 int src_x, int src_y, int src_w, int src_h);
|