Searched refs:gd_GIF (Results 1 – 3 of 3) sorted by relevance
/lvgl-3.7.0/src/extra/libs/gif/ |
D | gifdec.h | 24 typedef struct gd_GIF { struct 37 struct gd_GIF *gif, uint16_t tx, uint16_t ty, argument 41 void (*comment)(struct gd_GIF *gif); argument 42 void (*application)(struct gd_GIF *gif, char id[8], char auth[3]); argument 46 } gd_GIF; argument 48 gd_GIF * gd_open_gif_file(const char *fname); 50 gd_GIF * gd_open_gif_data(const void *data); 52 void gd_render_frame(gd_GIF *gif, uint8_t *buffer); 54 int gd_get_frame(gd_GIF *gif); 55 void gd_rewind(gd_GIF *gif); [all …]
|
D | gifdec.c | 26 static gd_GIF * gif_open(gd_GIF * gif); 27 static bool f_gif_open(gd_GIF * gif, const void * path, bool is_file); 28 static void f_gif_read(gd_GIF * gif, void * buf, size_t len); 29 static int f_gif_seek(gd_GIF * gif, size_t pos, int k); 30 static void f_gif_close(gd_GIF * gif); 33 read_num(gd_GIF * gif) in read_num() 43 gd_GIF * 46 gd_GIF gif_base; in gd_open_gif_file() 56 gd_GIF * 59 gd_GIF gif_base; in gd_open_gif_data() [all …]
|
D | lv_gif.h | 32 gd_GIF * gif;
|