Lines Matching refs:create_info
55 static lv_rlottie_create_info_t create_info; variable
67 create_info.width = width; in lv_rlottie_create_from_file()
68 create_info.height = height; in lv_rlottie_create_from_file()
69 create_info.path = path; in lv_rlottie_create_from_file()
70 create_info.rlottie_desc = NULL; in lv_rlottie_create_from_file()
81 create_info.width = width; in lv_rlottie_create_from_raw()
82 create_info.height = height; in lv_rlottie_create_from_raw()
83 create_info.rlottie_desc = rlottie_desc; in lv_rlottie_create_from_raw()
84 create_info.path = NULL; in lv_rlottie_create_from_raw()
119 if(create_info.rlottie_desc) { in lv_rlottie_constructor()
120 …rlottie->animation = lottie_animation_from_data(create_info.rlottie_desc, create_info.rlottie_desc… in lv_rlottie_constructor()
122 else if(create_info.path) { in lv_rlottie_constructor()
123 rlottie->animation = lottie_animation_from_file(create_info.path); in lv_rlottie_constructor()
134 rlottie->scanline_width = create_info.width * LV_ARGB32 / 8; in lv_rlottie_constructor()
136 size_t allocated_buf_size = (create_info.width * create_info.height * LV_ARGB32 / 8); in lv_rlottie_constructor()
144 rlottie->imgdsc.header.h = create_info.height; in lv_rlottie_constructor()
145 rlottie->imgdsc.header.w = create_info.width; in lv_rlottie_constructor()