Searched refs:lv_grad_t (Results 1 – 4 of 4) sorted by relevance
/lvgl-3.7.0/src/draw/sw/ |
D | lv_draw_sw_gradient.c | 38 static lv_grad_t * next_in_cache(lv_grad_t * item); 40 typedef lv_res_t (*op_cache_t)(lv_grad_t * c, void * ctx); 41 static lv_res_t iterate_cache(op_cache_t func, void * ctx, lv_grad_t ** out); 42 static size_t get_cache_item_size(lv_grad_t * c); 43 static lv_grad_t * allocate_item(const lv_grad_dsc_t * g, lv_coord_t w, lv_coord_t h); 44 static lv_res_t find_oldest_item_life(lv_grad_t * c, void * ctx); 45 static lv_res_t kill_oldest_item(lv_grad_t * c, void * ctx); 46 static lv_res_t find_item(lv_grad_t * c, void * ctx); 47 static void free_item(lv_grad_t * c); 71 static size_t get_cache_item_size(lv_grad_t * c) in get_cache_item_size() [all …]
|
D | lv_draw_sw_gradient.h | 59 } lv_grad_t; typedef 83 lv_grad_t * lv_gradient_get(const lv_grad_dsc_t * gradient, lv_coord_t w, lv_coord_t h); 89 void lv_gradient_cleanup(lv_grad_t * grad);
|
D | lv_draw_sw_dither.c | 19 void LV_ATTRIBUTE_FAST_MEM lv_dither_none(lv_grad_t * grad, lv_coord_t x, lv_coord_t y, lv_coord_t … in lv_dither_none() 41 void LV_ATTRIBUTE_FAST_MEM lv_dither_ordered_hor(lv_grad_t * grad, lv_coord_t x, lv_coord_t y, lv_c… in lv_dither_ordered_hor() 65 void LV_ATTRIBUTE_FAST_MEM lv_dither_ordered_ver(lv_grad_t * grad, lv_coord_t x, lv_coord_t y, lv_c… in lv_dither_ordered_ver() 100 void LV_ATTRIBUTE_FAST_MEM lv_dither_err_diff_hor(lv_grad_t * grad, lv_coord_t xs, lv_coord_t y, lv… in lv_dither_err_diff_hor() 154 void LV_ATTRIBUTE_FAST_MEM lv_dither_err_diff_ver(lv_grad_t * grad, lv_coord_t xs, lv_coord_t y, lv… in lv_dither_err_diff_ver()
|
D | lv_draw_sw_rect.c | 167 lv_grad_t * grad = lv_gradient_get(&dsc->bg_grad, coords_bg_w, coords_bg_h); in draw_bg()
|