Home
last modified time | relevance | path

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

/lvgl-3.5.0/src/draw/sw/
Dlv_draw_sw_img.c209 const uint8_t * src_tmp8 = (const uint8_t *)src_buf; in convert_cb() local
217src_tmp8 += (src_stride * dest_area->y1 * sizeof(lv_color_t)) + dest_area->x1 * sizeof(lv_color_t); in convert_cb()
224 lv_memcpy(cbuf_tmp, src_tmp8, dest_w_byte); in convert_cb()
225 src_tmp8 += src_stride_byte; in convert_cb()
249src_tmp8 += (src_stride * dest_area->y1 * LV_IMG_PX_SIZE_ALPHA_BYTE) + dest_area->x1 * LV_IMG_PX_S… in convert_cb()
258 abuf[x] = src_tmp8[LV_IMG_PX_SIZE_ALPHA_BYTE - 1]; in convert_cb()
260 cbuf[x].full = *src_tmp8; in convert_cb()
262 cbuf[x].full = *src_tmp8 + ((*(src_tmp8 + 1)) << 8); in convert_cb()
264 cbuf[x] = *((lv_color_t *) src_tmp8); in convert_cb()
267 src_tmp8 += LV_IMG_PX_SIZE_ALPHA_BYTE; in convert_cb()
[all …]
/lvgl-3.5.0/src/draw/arm2d/
Dlv_gpu_arm2d.c1481 const uint8_t * src_tmp8 = (const uint8_t *)src_buf; in convert_cb() local
1489src_tmp8 += (src_stride * dest_area->y1 * sizeof(lv_color_t)) + dest_area->x1 * sizeof(lv_color_t); in convert_cb()
1496 lv_memcpy(cbuf_tmp, src_tmp8, dest_w_byte); in convert_cb()
1497 src_tmp8 += src_stride_byte; in convert_cb()
1521src_tmp8 += (src_stride * dest_area->y1 * LV_IMG_PX_SIZE_ALPHA_BYTE) + dest_area->x1 * LV_IMG_PX_S… in convert_cb()
1530 abuf[x] = src_tmp8[LV_IMG_PX_SIZE_ALPHA_BYTE - 1]; in convert_cb()
1532 cbuf[x].full = *src_tmp8; in convert_cb()
1534 cbuf[x].full = *src_tmp8 + ((*(src_tmp8 + 1)) << 8); in convert_cb()
1536 cbuf[x] = *((lv_color_t *) src_tmp8); in convert_cb()
1539 src_tmp8 += LV_IMG_PX_SIZE_ALPHA_BYTE; in convert_cb()
[all …]