Searched refs:Use (Results 1 – 25 of 56) sorted by relevance
123
/lvgl-latest/ |
D | Kconfig | 167 bool "Use RTOS task with a direct notification for synchronization" 365 bool "Use NXP's VG-Lite GPU on iMX RTxxx platforms" 374 bool "Use additional draw thread for VG-Lite processing" 391 bool "Use NXP's PXP on iMX RTxxx platforms" 395 bool "Use PXP for drawing" 400 bool "Use PXP to rotate display" 405 bool "Use additional draw thread for PXP processing" 415 bool "Use Renesas Dave2D on RA platforms" 425 bool "Use VG-Lite GPU" 469 bool "Use Vector Graphic APIs" [all …]
|
/lvgl-latest/docs/details/other-components/ |
D | font_manager.rst | 31 Use :cpp:func:`lv_font_manager_create` to create a font manager, where the 35 Use :cpp:func:`lv_font_manager_add_path_static` to add a mapping between the font 41 Use :cpp:func:`lv_font_manager_remove_path` to remove the font path mapping. 60 Use :cpp:func:`lv_font_manager_create_font` to create a font. The parameters are 87 Use :cpp:func:`lv_font_manager_delete_font` to delete the font when it is no longer needed. 104 Use :cpp:func:`lv_font_manager_delete` to destroy the entire font manager. It should
|
D | snapshot.rst | 29 :cpp:func:`lv_draw_buf_create`. Use API :cpp:func:`lv_draw_buf_destroy` to free the memory it 51 Use Existing Buffer
|
D | monkey.rst | 43 Use :cpp:func:`lv_monkey_get_indev` to get the input device, and use
|
D | fragment.rst | 55 Use ``lv_fragment_manager``
|
/lvgl-latest/docs/details/widgets/ |
D | spangroup.rst | 82 Use :cpp:expr:`lv_spangroup_get_span_count(spangroup)` to get 104 Use function :cpp:expr:`lv_spangroup_set_align(spangroup, LV_TEXT_ALIGN_...)` 117 Use :cpp:expr:`lv_spangroup_set_mode(spangroup, LV_SPAN_MODE_BREAK)` to set its mode. 128 Use :cpp:expr:`lv_spangroup_set_overflow(spangroup, LV_SPAN_OVERFLOW_CLIP)` to set 135 Use :cpp:expr:`lv_spangroup_set_indent(spangroup, 20)` to set the indent of the 144 Use :cpp:expr:`lv_spangroup_set_max_lines(spangroup, 10)` to set the maximum number
|
D | spinner.rst | 36 Use :cpp:expr:`lv_spinner_set_anim_params(spinner, spin_duration, angle)` to
|
D | roller.rst | 27 Use :cpp:func:`lv_obj_set_style_text_line_space` to set this value. 31 milliseconds as specified in the ``anim_duration`` style. Use
|
D | led.rst | 42 Use :cpp:expr:`lv_led_on(led)` and :cpp:expr:`lv_led_off(led)` to set the brightness to
|
D | tabview.rst | 68 - Use :cpp:expr:`lv_tabview_set_active(tabview, tab_id, LV_ANIM_ON / OFF)` function
|
/lvgl-latest/examples/others/imgfont/ |
D | index.rst | 1 Use emojis in a text.
|
/lvgl-latest/examples/libs/freetype/ |
D | index.rst | 7 Use a bitmap font to draw Emojis using FreeType
|
/lvgl-latest/docs/details/base-widget/ |
D | layer.rst | 63 - Use :cpp:expr:`lv_obj_move_foreground(widget)` to bring a Widget to the foreground. 65 - Use :cpp:expr:`lv_obj_move_to_index(widget, idx)` to move a Widget to a given index in the order … 71 - Use :cpp:expr:`lv_obj_swap(widget1, widget2)` to swap the relative layer position of two Widgets.
|
/lvgl-latest/docs/details/libs/ |
D | qrcode.rst | 18 Use :cpp:func:`lv_qrcode_create` to create a qrcode object, and use
|
D | barcode.rst | 18 Use :cpp:func:`lv_barcode_create` to create a barcode object, and use
|
D | tjpgd.rst | 48 - Use lvgl online tool https://lvgl.io/tools/imageconverter
|
D | gif.rst | 25 Use GIF images from file
|
D | bmp.rst | 38 Use GIMP to save the image in the required format. Both RGB888 and
|
/lvgl-latest/docs/ |
D | CODING_STYLE.rst | 10 Use `misc/lv_templ.c <https://github.com/lvgl/lvgl/blob/master/src/misc/lv_templ.c>`__ 71 - Use ``<stdint.h>`` (*uint8_t*, *int32_t* etc). 73 - Use the smallest required scope. 202 - Use back-quotes (\`...\`) around code elements (variables, type names, function names). For type 209 - Use proper grammar for clarity. Descriptions of parameters do not need periods 267 - Use ``enum``\ s instead of macros. If inevitable to use ``define``\ s 270 - Use typed pointers instead of :cpp:expr:`void *` pointers
|
D | CONTRIBUTING.rst | 186 Use code from online source 206 Use MIT licensed code 214 Use GPL licensed code
|
/lvgl-latest/env_support/cmake/ |
D | custom.cmake | 5 "Use #include \"lvgl.h\" instead of #include \"../../lvgl.h\"" ON) 9 "Use #include \"lv_conf.h\" instead of #include \"../../lv_conf.h\"" ON)
|
/lvgl-latest/env_support/cmsis-pack/ |
D | README.md | 145 /*Use lvgl built-in LZ4 lib*/ 148 /*Use external LZ4 library*/
|
/lvgl-latest/tests/src/test_files/fonts/noto/ |
D | README.txt | 30 2. Use your app's font picker to view the font family and all the
|
/lvgl-latest/docs/details/integration/renderers/ |
D | arm2d.rst | 23 How to Use
|
/lvgl-latest/src/libs/thorvg/ |
D | tvgSvgSceneBuilder.cpp | 50 …if (type == SvgNodeType::Doc || type == SvgNodeType::G || type == SvgNodeType::Use || type == SvgN… in _isGroupType() 227 if (node->type == SvgNodeType::Use) { in _appendClipChild() 358 if (node->type == SvgNodeType::G || node->type == SvgNodeType::Use) return; in _applyProperty() 849 if ((*child)->type == SvgNodeType::Use) in _sceneBuildHelper() 851 … else if (!((*child)->type == SvgNodeType::Symbol && node->type != SvgNodeType::Use)) in _sceneBuildHelper()
|
123