mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-28 13:36:27 +08:00
feat(api_mapping): add ability to disable api mapping (#8745)
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com> Co-authored-by: Liam Howatt <30486941+liamHowatt@users.noreply.github.com>
This commit is contained in:
@@ -109,7 +109,7 @@ uint8_t img_benchmark_avatar_map[] = {
|
||||
|
||||
};
|
||||
|
||||
const lv_img_dsc_t img_benchmark_avatar = {
|
||||
const lv_image_dsc_t img_benchmark_avatar = {
|
||||
.header.magic = LV_IMAGE_HEADER_MAGIC,
|
||||
.header.cf = LV_COLOR_FORMAT_ARGB8888,
|
||||
.header.flags = 0,
|
||||
|
||||
@@ -292,7 +292,7 @@ lv_obj_t * lv_demo_music_main_create(lv_obj_t * parent)
|
||||
LV_IMAGE_DECLARE(img_lv_demo_music_logo);
|
||||
lv_obj_t * logo = lv_image_create(lv_screen_active());
|
||||
lv_image_set_src(logo, &img_lv_demo_music_logo);
|
||||
lv_obj_move_foreground(logo);
|
||||
lv_obj_move_to_index(logo, -1);
|
||||
lv_obj_align_to(logo, spectrum_obj, LV_ALIGN_CENTER, 0, 0);
|
||||
|
||||
#if LV_DEMO_MUSIC_SQUARE == 0 && LV_DEMO_MUSIC_ROUND == 0
|
||||
|
||||
@@ -85,7 +85,7 @@ uint8_t img_clothes_map[] = {
|
||||
|
||||
};
|
||||
|
||||
const lv_img_dsc_t img_clothes = {
|
||||
const lv_image_dsc_t img_clothes = {
|
||||
.header.magic = LV_IMAGE_HEADER_MAGIC,
|
||||
.header.cf = LV_COLOR_FORMAT_ARGB8888,
|
||||
.header.flags = 0,
|
||||
|
||||
@@ -183,7 +183,7 @@ uint8_t img_demo_widgets_avatar_map[] = {
|
||||
|
||||
};
|
||||
|
||||
const lv_img_dsc_t img_demo_widgets_avatar = {
|
||||
const lv_image_dsc_t img_demo_widgets_avatar = {
|
||||
.header.magic = LV_IMAGE_HEADER_MAGIC,
|
||||
.header.cf = LV_COLOR_FORMAT_ARGB8888,
|
||||
.header.flags = 0,
|
||||
|
||||
@@ -70,7 +70,7 @@ uint8_t img_lvgl_logo_map[] = {
|
||||
|
||||
};
|
||||
|
||||
const lv_img_dsc_t img_lvgl_logo = {
|
||||
const lv_image_dsc_t img_lvgl_logo = {
|
||||
.header.magic = LV_IMAGE_HEADER_MAGIC,
|
||||
.header.cf = LV_COLOR_FORMAT_ARGB8888,
|
||||
.header.flags = 0,
|
||||
|
||||
Reference in New Issue
Block a user