Searched refs:frame_id (Results 1 – 13 of 13) sorted by relevance
/lvgl-3.5.0/src/draw/ |
D | lv_img_cache.c | 63 _lv_img_cache_entry_t * _lv_img_cache_open(const void * src, lv_color_t color, int32_t frame_id) in _lv_img_cache_open() argument 86 frame_id == cache[i].dec_dsc.frame_id && in _lv_img_cache_open() 123 lv_res_t open_res = lv_img_decoder_open(&cached_src->dec_dsc, src, color, frame_id); in _lv_img_cache_open()
|
D | lv_img_decoder.h | 110 int32_t frame_id; member 168 …img_decoder_open(lv_img_decoder_dsc_t * dsc, const void * src, lv_color_t color, int32_t frame_id);
|
D | lv_img_cache.h | 53 _lv_img_cache_entry_t * _lv_img_cache_open(const void * src, lv_color_t color, int32_t frame_id);
|
D | lv_draw_img.h | 44 int32_t frame_id; member
|
D | lv_img_decoder.c | 107 …_img_decoder_open(lv_img_decoder_dsc_t * dsc, const void * src, lv_color_t color, int32_t frame_id) in lv_img_decoder_open() argument 120 dsc->frame_id = frame_id; in lv_img_decoder_open()
|
D | lv_draw_img.c | 236 _lv_img_cache_entry_t * cdsc = _lv_img_cache_open(src, draw_dsc->recolor, draw_dsc->frame_id); in decode_and_draw()
|
/lvgl-3.5.0/src/draw/sdl/ |
D | lv_draw_sdl_texture_cache.h | 66 int32_t frame_id; member 91 …w_sdl_cache_key_head_img_t * lv_draw_sdl_texture_img_key_create(const void * src, int32_t frame_id,
|
D | lv_draw_sdl_texture_cache.c | 118 …_head_img_t * lv_draw_sdl_texture_img_key_create(const void * src, int32_t frame_id, size_t * size) in lv_draw_sdl_texture_img_key_create() argument 125 header.frame_id = frame_id; in lv_draw_sdl_texture_img_key_create()
|
D | lv_draw_sdl_img.h | 60 const void * src, int32_t frame_id, SDL_Texture ** texture,
|
D | lv_draw_sdl_img.c | 104 …ache_key_head_img_t * key = lv_draw_sdl_texture_img_key_create(src, draw_dsc->frame_id, &key_size); in lv_draw_sdl_img_core() 110 … lv_draw_sdl_img_load_texture(ctx, key, key_size, src, draw_dsc->frame_id, &texture, &header); in lv_draw_sdl_img_core() 187 const void * src, int32_t frame_id, SDL_Texture ** texture, in lv_draw_sdl_img_load_texture() argument 190 _lv_img_cache_entry_t * cdsc = _lv_img_cache_open(src, lv_color_white(), frame_id); in lv_draw_sdl_img_load_texture()
|
D | lv_draw_sdl_rect.c | 549 img_dsc.frame_id = 0; in draw_bg_img()
|
/lvgl-3.5.0/docs/overview/ |
D | image.md | 267 `frame_id` can be used if the image to open is an animation. 274 res = lv_img_decoder_open(&dsc, &my_img_dsc, color, frame_id);
|
/lvgl-3.5.0/docs/ |
D | CHANGELOG.md | 1212 - docs(image) mention the frame_id parameter of lv_img_decoder_open [`2433732`](https://github.com/…
|