Home
last modified time | relevance | path

Searched refs:lv_draw_buf_align (Results 1 – 9 of 9) sorted by relevance

/lvgl-latest/tests/src/test_cases/widgets/
Dtest_lottie.c32 lv_lottie_set_buffer(lottie, 100, 100, lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888)); in test_lottie_simple()
57 lv_lottie_set_buffer(lottie, 100, 100, lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888)); in test_lottie_load_from_file()
83 lv_lottie_set_buffer(lottie1, 100, 100, lv_draw_buf_align(tmp_buf, LV_COLOR_FORMAT_ARGB8888)); in test_lottie_missing_settings()
95 lv_lottie_set_buffer(lottie2, 100, 100, lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888)); in test_lottie_missing_settings()
105 lv_lottie_set_buffer(lottie, 100, 100, lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888)); 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()
125 lv_lottie_set_buffer(lottie, 50, 200, lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888)); in test_lottie_non_uniform_shape()
140 lv_lottie_set_buffer(lottie, 100, 100, lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888)); in test_lottie_memory_leak()
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()
/lvgl-latest/tests/src/test_cases/
Dtest_display.c35 …lv_display_set_buffers(disp, lv_draw_buf_align(buf0, LV_COLOR_FORMAT_RGB888), lv_draw_buf_align(bu… in test_get_drawbuf_size_double_buffered()
48 lv_display_set_buffers(disp, lv_draw_buf_align(buf0, LV_COLOR_FORMAT_RGB888), NULL, 200, in test_get_drawbuf_size_single_buffered()
63 lv_display_set_buffers(disp, lv_draw_buf_align(buf0, test_set->color_format), NULL, buffer_size, in exec_invalidated_drawbuf_size_test()
Dtest_bindings.c178 …lv_canvas_set_buffer(canvas, lv_draw_buf_align(canvas_buf, LV_COLOR_FORMAT_RGB565), 400, 100, LV_C… in create_ui()
/lvgl-latest/tests/src/
Dlv_test_init.c54 …lv_display_set_buffers(disp, lv_draw_buf_align(draw_buf->unaligned_data, cf), NULL, draw_buf->data… in color_format_changled_event_cb()
64 …lv_display_set_buffers(disp, lv_draw_buf_align(test_fb, LV_COLOR_FORMAT_ARGB8888), NULL, HOR_RES *… in hal_init()
/lvgl-latest/tests/src/test_cases/draw/
Dtest_draw_blend.c130 …lv_canvas_set_buffer(canvas2, lv_draw_buf_align(canvas2_buf, large_render_cf), 768, 390, large_ren… in canvas_draw()
/lvgl-latest/src/draw/
Dlv_draw_buf.h142 void * lv_draw_buf_align(void * buf, lv_color_format_t color_format);
Dlv_draw_buf.c108 void * lv_draw_buf_align(void * data, lv_color_format_t color_format) in lv_draw_buf_align() function
297 if(lv_draw_buf_align(data, cf) != draw_buf->unaligned_data) { in lv_draw_buf_init()
338 draw_buf->data = lv_draw_buf_align(buf, cf); in lv_draw_buf_create_ex()
/lvgl-latest/src/widgets/lottie/
Dlv_lottie.c77 buf = lv_draw_buf_align(buf, LV_COLOR_FORMAT_ARGB8888); in lv_lottie_set_buffer()
/lvgl-latest/src/display/
Dlv_display.c435 LV_ASSERT_FORMAT_MSG(buf1 == lv_draw_buf_align(buf1, cf), "buf1 is not aligned: %p", buf1); in lv_display_set_buffers()
436 …LV_ASSERT_FORMAT_MSG(buf2 == NULL || buf2 == lv_draw_buf_align(buf2, cf), "buf2 is not aligned: %p… in lv_display_set_buffers()