Searched refs:buf_w (Results 1 – 5 of 5) sorted by relevance
/lvgl-3.7.0/src/hal/ |
D | lv_hal_disp.c | 47 static void set_px_true_color_alpha(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_c… 51 static void set_px_cb_alpha1(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t … 54 static void set_px_cb_alpha2(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t … 57 static void set_px_cb_alpha4(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t … 60 static void set_px_cb_alpha8(lv_disp_drv_t * disp_drv, uint8_t * buf, lv_coord_t buf_w, lv_coord_t … 619 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 627 d.header.w = buf_w; in set_px_cb_alpha1() 633 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 641 d.header.w = buf_w; in set_px_cb_alpha2() 647 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 | 116 …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.7.0/src/draw/sw/ |
D | lv_draw_sw_img.c | 112 uint32_t buf_w = blend_w; in lv_draw_sw_img_decoded() local 122 uint32_t buf_size = buf_w * buf_h; in lv_draw_sw_img_decoded()
|
/lvgl-3.7.0/src/draw/arm2d/ |
D | lv_gpu_arm2d.c | 971 uint32_t buf_w = blend_w; in lv_draw_arm2d_img_decoded() local 981 uint32_t buf_size = buf_w * buf_h; in lv_draw_arm2d_img_decoded() 1002 .iWidth = buf_w, in lv_draw_arm2d_img_decoded() 1009 buf_w, in lv_draw_arm2d_img_decoded() 1389 .iWidth = buf_w, in lv_draw_arm2d_img_decoded() 1396 buf_w, in lv_draw_arm2d_img_decoded()
|
/lvgl-3.7.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;
|