Searched refs:buf_w (Results 1 – 5 of 5) sorted by relevance
/lvgl-3.5.0/src/hal/ |
D | lv_hal_disp.c | 46 static void set_px_true_color_alpha(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_c… 50 static void set_px_cb_alpha1(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t … 53 static void set_px_cb_alpha2(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t … 56 static void set_px_cb_alpha4(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t … 59 static void set_px_cb_alpha8(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t … 612 static void set_px_cb_alpha1(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t … in set_px_cb_alpha1() argument 620 d.header.w = buf_w; in set_px_cb_alpha1() 626 static void set_px_cb_alpha2(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t … in set_px_cb_alpha2() argument 634 d.header.w = buf_w; in set_px_cb_alpha2() 640 static void set_px_cb_alpha4(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t … in set_px_cb_alpha4() argument [all …]
|
D | lv_hal_disp.h | 115 …void (*set_px_cb)(struct _lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t x,…
|
/lvgl-3.5.0/src/draw/sw/ |
D | lv_draw_sw_img.c | 111 uint32_t buf_w = blend_w; in lv_draw_sw_img_decoded() local 121 uint32_t buf_size = buf_w * buf_h; in lv_draw_sw_img_decoded()
|
/lvgl-3.5.0/src/draw/arm2d/ |
D | lv_gpu_arm2d.c | 990 uint32_t buf_w = blend_w; in lv_draw_arm2d_img_decoded() local 1000 uint32_t buf_size = buf_w * buf_h; in lv_draw_arm2d_img_decoded() 1021 .iWidth = buf_w, in lv_draw_arm2d_img_decoded() 1028 buf_w, in lv_draw_arm2d_img_decoded() 1408 .iWidth = buf_w, in lv_draw_arm2d_img_decoded() 1415 buf_w, in lv_draw_arm2d_img_decoded()
|
/lvgl-3.5.0/docs/porting/ |
D | display.md | 170 void my_set_px_cb(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t x, lv_coord… 174 buf += buf_w * (y >> 3) + x;
|