fix(image): add data_size filed to all c-array images (#5608)

Signed-off-by: Xu Xingliang <xuxingliang@xiaomi.com>
This commit is contained in:
Neo Xu
2024-02-07 12:13:00 +08:00
committed by GitHub
parent d697a3fc95
commit 7579b96b9b
109 changed files with 112 additions and 62 deletions

View File

@@ -116,6 +116,6 @@ const lv_image_dsc_t img_render_arc_bg = {
.header.cf = LV_COLOR_FORMAT_ARGB8888,
.header.w = 100,
.header.h = 100,
.data_size = 0,
.data = img_render_arc_bg_map,
.data_size = sizeof(img_render_arc_bg_map),
};