Searched refs:dst_buf (Results 1 – 4 of 4) sorted by relevance
/lvgl-latest/tests/src/test_cases/draw/ |
D | test_draw_sw_post_process.c | 321 uint8_t dst_buf[8] = {0}; in test_vtile_small() local 326 lv_draw_sw_i1_convert_to_vtiled(src_buf, 8, 8, 8, dst_buf, 8, false); in test_vtile_small() 327 TEST_ASSERT_EQUAL_UINT8_ARRAY(expected_buf_msb, dst_buf, 8); in test_vtile_small() 329 lv_draw_sw_i1_convert_to_vtiled(src_buf, 8, 8, 8, dst_buf, 8, true); in test_vtile_small() 330 TEST_ASSERT_EQUAL_UINT8_ARRAY(expected_buf_lsb, dst_buf, 8); in test_vtile_small() 353 uint8_t dst_buf[80] = {0}; in test_vtile_rectangular() local 440 lv_draw_sw_i1_convert_to_vtiled(src_buf, 80, 40, 16, dst_buf, 80, false); in test_vtile_rectangular() 441 TEST_ASSERT_EQUAL_UINT8_ARRAY(expected_buf_msb, dst_buf, 8); in test_vtile_rectangular() 443 lv_draw_sw_i1_convert_to_vtiled(src_buf, 80, 40, 16, dst_buf, 80, true); in test_vtile_rectangular() 444 TEST_ASSERT_EQUAL_UINT8_ARRAY(expected_buf_lsb, dst_buf, 8); in test_vtile_rectangular()
|
/lvgl-latest/src/draw/sw/blend/helium/ |
D | lv_blend_helium.h | 288 void * dst_buf; member 305 .dst_buf = dsc->dest_buf, in lv_color_blend_to_rgb565_helium() 321 .dst_buf = dsc->dest_buf, in lv_color_blend_to_rgb565_with_opa_helium() 335 .dst_buf = dsc->dest_buf, in lv_color_blend_to_rgb565_with_mask_helium() 352 .dst_buf = dsc->dest_buf, in lv_color_blend_to_rgb565_mix_mask_opa_helium() 368 .dst_buf = dsc->dest_buf, in lv_rgb565_blend_normal_to_rgb565_helium() 384 .dst_buf = dsc->dest_buf, in lv_rgb565_blend_normal_to_rgb565_with_opa_helium() 399 .dst_buf = dsc->dest_buf, in lv_rgb565_blend_normal_to_rgb565_with_mask_helium() 417 .dst_buf = dsc->dest_buf, in lv_rgb565_blend_normal_to_rgb565_mix_mask_opa_helium() 436 .dst_buf = dsc->dest_buf, in lv_rgb888_blend_normal_to_rgb565_helium() [all …]
|
/lvgl-latest/src/draw/sw/blend/neon/ |
D | lv_blend_neon.h | 280 void * dst_buf; member 297 .dst_buf = dsc->dest_buf, in lv_color_blend_to_rgb565_neon() 313 .dst_buf = dsc->dest_buf, in lv_color_blend_to_rgb565_with_opa_neon() 327 .dst_buf = dsc->dest_buf, in lv_color_blend_to_rgb565_with_mask_neon() 344 .dst_buf = dsc->dest_buf, in lv_color_blend_to_rgb565_mix_mask_opa_neon() 360 .dst_buf = dsc->dest_buf, in lv_rgb565_blend_normal_to_rgb565_neon() 376 .dst_buf = dsc->dest_buf, in lv_rgb565_blend_normal_to_rgb565_with_opa_neon() 391 .dst_buf = dsc->dest_buf, in lv_rgb565_blend_normal_to_rgb565_with_mask_neon() 409 .dst_buf = dsc->dest_buf, in lv_rgb565_blend_normal_to_rgb565_mix_mask_opa_neon() 428 .dst_buf = dsc->dest_buf, in lv_rgb888_blend_normal_to_rgb565_neon() [all …]
|
/lvgl-latest/src/draw/sw/ |
D | lv_draw_sw_utils.c | 226 uint8_t * dst_buf = (uint8_t *)out_buf; in lv_draw_sw_i1_convert_to_vtiled() local 234 dst_buf[dst_index / 8] |= (bit << (dst_index % 8)); in lv_draw_sw_i1_convert_to_vtiled() 237 dst_buf[dst_index / 8] |= (bit << (7 - (dst_index % 8))); in lv_draw_sw_i1_convert_to_vtiled()
|