Lines Matching refs:px_map
261 the ``px_map`` parameter.
307 void my_flush_cb(lv_display_t * display, const lv_area_t * area, uint8_t * px_map)
311 uint16_t * buf16 = (uint16_t *)px_map; /* Let's say it's a 16 bit (RGB565) display */
413 void flush_cb(lv_display_t * disp, const lv_area_t * area, uint8_t * px_map)
430 … lv_draw_sw_rotate(px_map, rotated_buf, src_w, src_h, src_stride, dest_stride, rotation, cf);
433 px_map = rotated_buf;
436 my_send_colors(px_map);
446 void flush_cb(lv_display_t * disp, const lv_area_t * area, uint8_t * px_map)
465 lv_memcpy(fb_start, px_map, src_stride);
466 px_map += src_stride;
471 lv_draw_sw_rotate(px_map, fb_start, src_w, src_h, src_stride, fb_stride, rotation, cf);
551 To skip the palette, include the following line in your :ref:`flush_callback` function: ``px_map +=…