Home
last modified time | relevance | path

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

/lvgl-3.7.0/src/draw/sw/
Dlv_draw_sw_img.c210 const uint8_t * src_tmp8 = (const uint8_t *)src_buf; in convert_cb() local
218src_tmp8 += (src_stride * dest_area->y1 * sizeof(lv_color_t)) + dest_area->x1 * sizeof(lv_color_t); in convert_cb()
225 lv_memcpy(cbuf_tmp, src_tmp8, dest_w_byte); in convert_cb()
226 src_tmp8 += src_stride_byte; in convert_cb()
250src_tmp8 += (src_stride * dest_area->y1 * LV_IMG_PX_SIZE_ALPHA_BYTE) + dest_area->x1 * LV_IMG_PX_S… in convert_cb()
259 abuf[x] = src_tmp8[LV_IMG_PX_SIZE_ALPHA_BYTE - 1]; in convert_cb()
261 cbuf[x].full = *src_tmp8; in convert_cb()
263 cbuf[x].full = *src_tmp8 + ((*(src_tmp8 + 1)) << 8); in convert_cb()
265 cbuf[x] = *((lv_color_t *) src_tmp8); in convert_cb()
268 src_tmp8 += LV_IMG_PX_SIZE_ALPHA_BYTE; in convert_cb()
[all …]
/lvgl-3.7.0/src/draw/arm2d/
Dlv_gpu_arm2d.c1460 const uint8_t * src_tmp8 = (const uint8_t *)src_buf; in convert_cb() local
1468src_tmp8 += (src_stride * dest_area->y1 * sizeof(lv_color_t)) + dest_area->x1 * sizeof(lv_color_t); in convert_cb()
1475 lv_memcpy(cbuf_tmp, src_tmp8, dest_w_byte); in convert_cb()
1476 src_tmp8 += src_stride_byte; in convert_cb()
1500src_tmp8 += (src_stride * dest_area->y1 * LV_IMG_PX_SIZE_ALPHA_BYTE) + dest_area->x1 * LV_IMG_PX_S… in convert_cb()
1509 abuf[x] = src_tmp8[LV_IMG_PX_SIZE_ALPHA_BYTE - 1]; in convert_cb()
1511 cbuf[x].full = *src_tmp8; in convert_cb()
1513 cbuf[x].full = *src_tmp8 + ((*(src_tmp8 + 1)) << 8); in convert_cb()
1515 cbuf[x] = *((lv_color_t *) src_tmp8); in convert_cb()
1518 src_tmp8 += LV_IMG_PX_SIZE_ALPHA_BYTE; in convert_cb()
[all …]