1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

ci(img): add reserved field to lv_img_dsc_t for backward comaptibility

This commit is contained in:
Gabor Kiss-Vamosi 2023-08-06 14:50:09 +02:00
parent ae476628be
commit 96cb434a64

View File

@ -63,6 +63,9 @@ typedef struct {
typedef struct {
uint8_t always_zero;
uint8_t cf; /*Color format: See `lv_color_format_t`*/
uint16_t format: 16;
uint16_t user: 4;
uint16_t reserved: 4;
uint16_t w; /*Width of the image*/
uint16_t h; /*Height of the image*/