Lines Matching refs:lottie

31     lv_obj_t * lottie = lv_lottie_create(lv_screen_active());  in test_lottie_simple()  local
32 lv_lottie_set_buffer(lottie, 100, 100, lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888)); in test_lottie_simple()
33 lv_lottie_set_src_data(lottie, test_lottie_approve, test_lottie_approve_size); in test_lottie_simple()
34 lv_obj_center(lottie); in test_lottie_simple()
47 lv_lottie_set_src_data(lottie, test_lottie_approve, test_lottie_approve_size); in test_lottie_simple()
56 lv_obj_t * lottie = lv_lottie_create(lv_screen_active()); in test_lottie_load_from_file() local
57 lv_lottie_set_buffer(lottie, 100, 100, lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888)); in test_lottie_load_from_file()
58 lv_lottie_set_src_file(lottie, "src/test_assets/test_lottie_approve.json"); in test_lottie_load_from_file()
59 lv_obj_center(lottie); in test_lottie_load_from_file()
71 lv_lottie_set_src_data(lottie, test_lottie_approve, test_lottie_approve_size); in test_lottie_load_from_file()
104 lv_obj_t * lottie = lv_lottie_create(lv_screen_active()); in test_lottie_rescale() local
105 lv_lottie_set_buffer(lottie, 100, 100, lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888)); in test_lottie_rescale()
106 lv_lottie_set_src_data(lottie, test_lottie_approve, test_lottie_approve_size); in test_lottie_rescale()
107 lv_obj_center(lottie); in test_lottie_rescale()
113 lv_lottie_set_buffer(lottie, 50, 50, lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888)); in test_lottie_rescale()
124 lv_obj_t * lottie = lv_lottie_create(lv_screen_active()); in test_lottie_non_uniform_shape() local
125 lv_lottie_set_buffer(lottie, 50, 200, lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888)); in test_lottie_non_uniform_shape()
126 lv_lottie_set_src_data(lottie, test_lottie_approve, test_lottie_approve_size); in test_lottie_non_uniform_shape()
127 lv_obj_center(lottie); in test_lottie_non_uniform_shape()
139 lv_obj_t * lottie = lv_lottie_create(lv_screen_active()); in test_lottie_memory_leak() local
140 lv_lottie_set_buffer(lottie, 100, 100, lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888)); in test_lottie_memory_leak()
141 lv_lottie_set_src_data(lottie, test_lottie_approve, test_lottie_approve_size); in test_lottie_memory_leak()
142 lv_obj_center(lottie); in test_lottie_memory_leak()
145 lv_obj_delete(lottie); in test_lottie_memory_leak()
152 lv_obj_t * lottie = lv_lottie_create(lv_screen_active()); in test_lottie_no_jump_when_visible_again() local
153 lv_lottie_set_buffer(lottie, 100, 100, lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888)); in test_lottie_no_jump_when_visible_again()
154 lv_lottie_set_src_data(lottie, test_lottie_approve, test_lottie_approve_size); in test_lottie_no_jump_when_visible_again()
155 lv_obj_center(lottie); in test_lottie_no_jump_when_visible_again()
161 lv_obj_add_flag(lottie, LV_OBJ_FLAG_HIDDEN); in test_lottie_no_jump_when_visible_again()
166 lv_obj_clear_flag(lottie, LV_OBJ_FLAG_HIDDEN); in test_lottie_no_jump_when_visible_again()