Lines Matching refs:to

8 facilities for high-level applications to manage and use vector fonts.  Currently
13 - Font resource recycling mechanism (buffers recently deleted font resources to
24 :c:macro:`LV_USE_FREETYPE` and :c:macro:`LV_USE_FONT_MANAGER` macros to non-zero
25 values, and configure :c:macro:`LV_FONT_MANAGER_NAME_MAX_LEN` to set the maximum
31 Use :cpp:func:`lv_font_manager_create` to create a font manager, where the
32 :cpp:func:`recycle_cache_size` parameter is used to set the number of font recycling
35 Use :cpp:func:`lv_font_manager_add_path_static` to add a mapping between the font
38 (assigned from a local variable), use :cpp:func:`lv_font_manager_add_path` to
41 Use :cpp:func:`lv_font_manager_remove_path` to remove the font path mapping.
52 /* Add font path mapping to font manager */
54 lv_font_manager_add_path_static(g_font_manager, "MyFont", "./path/to/myfont.ttf");
60 Use :cpp:func:`lv_font_manager_create_font` to create a font. The parameters are
64 (separated by ``,``) to achieve font concatenation (when the corresponding glyph is
87 Use :cpp:func:`lv_font_manager_delete_font` to delete the font when it is no longer needed.
91 Note that you need to delete any Widgets that used the font first, and then
92 delete the font to avoid accessing wild pointers.
104 Use :cpp:func:`lv_font_manager_delete` to destroy the entire font manager. It should
105 be noted that before destruction, it is necessary to ensure that the application has
108 being referenced, the font manager will fail to be destroyed and the function will return false.