Home
last modified time | relevance | path

Searched refs:tiled (Results 1 – 12 of 12) sorted by relevance

/lvgl-latest/src/libs/barcode/
Dlv_barcode.c99 void lv_barcode_set_tiled(lv_obj_t * obj, bool tiled) in lv_barcode_set_tiled() argument
104 barcode->tiled = tiled; in lv_barcode_set_tiled()
105 lv_image_set_inner_align(obj, tiled ? LV_IMAGE_ALIGN_TILE : LV_IMAGE_ALIGN_DEFAULT); in lv_barcode_set_tiled()
140 if(barcode->tiled) { in lv_barcode_update()
182 if(barcode->tiled) { in lv_barcode_update()
194 if(!barcode->tiled && barcode->direction == LV_DIR_HOR && buf_h > 1) { in lv_barcode_update()
Dlv_barcode_private.h37 bool tiled; member
Dlv_barcode.h77 void lv_barcode_set_tiled(lv_obj_t * obj, bool tiled);
/lvgl-latest/src/draw/vg_lite/
Dlv_vg_lite_utils.c428 LV_LOG_USER("tiled: %d", (int)((buffer)->tiled)); in lv_vg_lite_buffer_dump_info()
679 bool tiled) in lv_vg_lite_buffer_init() argument
690 if(tiled || format == VG_LITE_RGBA8888_ETC2_EAC) { in lv_vg_lite_buffer_init()
691 buffer->tiled = VG_LITE_TILED; in lv_vg_lite_buffer_init()
694 buffer->tiled = VG_LITE_LINEAR; in lv_vg_lite_buffer_init()
966 if(!(buffer->tiled == VG_LITE_LINEAR || buffer->tiled == VG_LITE_TILED)) { in lv_vg_lite_buffer_check()
967 LV_LOG_ERROR("buffer tiled(%d) is invalid", (int)buffer->tiled); in lv_vg_lite_buffer_check()
Dlv_vg_lite_utils.h125 bool tiled);
/lvgl-latest/src/draw/nxp/vglite/
Dlv_vglite_buf.c91 vgbuf->tiled = VG_LITE_LINEAR; in vglite_set_buf()
/lvgl-latest/docs/details/widgets/
Dimagebutton.rst46 (using e.g. :cpp:expr:`lv_obj_set_width`) and the middle image will be tiled to fill the given size.
/lvgl-latest/src/others/vg_lite_tvg/
Dvg_lite.h806 …vg_lite_buffer_layout_t tiled; /*! Indicating the buffer memory layout is linear or tiled… member
Dvg_lite_tvg.cpp536 buffer->tiled = VG_LITE_TILED; in vg_lite_allocate()
/lvgl-latest/docs/details/integration/chip/
Dnxp.rst387 tiled (4x4) buffer layouts. The pixel engine has no additional alignment
/lvgl-latest/docs/
DCHANGELOG.rst67 - **feat(barcode): add none tiled mode** `6462 <https://github.com/lvgl/lvgl/pull/6462>`__
318 - **fix(image): set the draw_task area correctly for tiled image** `6029 <https://github.com/lvgl/l…
/lvgl-latest/docs/details/base-widget/styles/
Dstyle-properties.rst674 If enabled the background image will be tiled. Possible values are `true` or `false`.