├── .devcontainer ├── __CMakeLists.txt__ ├── __build_all.sh__ ├── __c_cpp_properties.json__ ├── __main.c__ ├── __settings.json__ ├── devcontainer.json ├── lv_conf.defaults ├── lvgl_shell.html └── setup.sh ├── .github ├── .codecov.yml ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.yml │ ├── config.yml │ ├── dev-discussion.yml │ └── feat-planning.yml ├── auto-comment.yml ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── arduino.yml │ ├── build_examples_with_cxx_compiler.yml │ ├── build_micropython.yml │ ├── ccpp.yml │ ├── check_bom.yml │ ├── check_conf.yml │ ├── check_properties.yml │ ├── check_style.yml │ ├── check_templ.yml │ ├── close_old_issues.yml │ ├── compile_docs.yml │ ├── esp_upload_component.yml │ ├── gen_json.yml │ ├── main.yml │ ├── makefile.yml │ ├── makefile_uefi.yml │ ├── perf_emulation.yml │ ├── perf_emulation_handle_results.yml │ ├── perf_tests.yml │ ├── platformio_publish.yaml │ ├── release.yml │ ├── release_branch_updater.yml │ ├── verify_font_license.yml │ └── verify_kconfig.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .typos.toml ├── CMakeLists.txt ├── CMakePresets.json ├── COPYRIGHTS.md ├── Kconfig ├── LICENCE.txt ├── README.md ├── SConscript ├── component.mk ├── configs ├── ci │ ├── docs │ │ └── lv_conf_docs.defaults │ ├── examples │ │ └── lv_conf_examples.defaults │ └── perf │ │ ├── lv_conf_perf32b.defaults │ │ └── lv_conf_perf64b.defaults └── defconfigs │ └── default.defconfig ├── demos ├── README.md ├── benchmark │ ├── assets │ │ ├── img_benchmark_avatar.c │ │ ├── img_benchmark_avatar.png │ │ ├── img_benchmark_lvgl_logo_argb.c │ │ ├── img_benchmark_lvgl_logo_argb.png │ │ ├── img_benchmark_lvgl_logo_rgb.c │ │ ├── img_benchmark_lvgl_logo_rgb.png │ │ ├── lv_font_benchmark_montserrat_12_aligned.c │ │ ├── lv_font_benchmark_montserrat_14_aligned.c │ │ ├── lv_font_benchmark_montserrat_16_aligned.c │ │ ├── lv_font_benchmark_montserrat_18_aligned.c │ │ ├── lv_font_benchmark_montserrat_20_aligned.c │ │ ├── lv_font_benchmark_montserrat_24_aligned.c │ │ └── lv_font_benchmark_montserrat_26_aligned.c │ ├── lv_demo_benchmark.c │ ├── lv_demo_benchmark.h │ ├── screenshot1.png │ └── screenshot2.png ├── keypad_encoder │ ├── README.md │ ├── lv_demo_keypad_encoder.c │ ├── lv_demo_keypad_encoder.h │ ├── screenshot1.gif │ └── screenshot1.png ├── lv_demos.c ├── lv_demos.h ├── music │ ├── README.md │ ├── assets │ │ ├── img_lv_demo_music_btn_corner_large.c │ │ ├── img_lv_demo_music_btn_list_pause.c │ │ ├── img_lv_demo_music_btn_list_pause_large.c │ │ ├── img_lv_demo_music_btn_list_play.c │ │ ├── img_lv_demo_music_btn_list_play_large.c │ │ ├── img_lv_demo_music_btn_loop.c │ │ ├── img_lv_demo_music_btn_loop_large.c │ │ ├── img_lv_demo_music_btn_next.c │ │ ├── img_lv_demo_music_btn_next_large.c │ │ ├── img_lv_demo_music_btn_pause.c │ │ ├── img_lv_demo_music_btn_pause_large.c │ │ ├── img_lv_demo_music_btn_play.c │ │ ├── img_lv_demo_music_btn_play_large.c │ │ ├── img_lv_demo_music_btn_prev.c │ │ ├── img_lv_demo_music_btn_prev_large.c │ │ ├── img_lv_demo_music_btn_rnd.c │ │ ├── img_lv_demo_music_btn_rnd_large.c │ │ ├── img_lv_demo_music_corner_left.c │ │ ├── img_lv_demo_music_corner_left_large.c │ │ ├── img_lv_demo_music_corner_right.c │ │ ├── img_lv_demo_music_corner_right_large.c │ │ ├── img_lv_demo_music_cover_1.c │ │ ├── img_lv_demo_music_cover_1_large.c │ │ ├── img_lv_demo_music_cover_2.c │ │ ├── img_lv_demo_music_cover_2_large.c │ │ ├── img_lv_demo_music_cover_3.c │ │ ├── img_lv_demo_music_cover_3_large.c │ │ ├── img_lv_demo_music_icon_1.c │ │ ├── img_lv_demo_music_icon_1_large.c │ │ ├── img_lv_demo_music_icon_2.c │ │ ├── img_lv_demo_music_icon_2_large.c │ │ ├── img_lv_demo_music_icon_3.c │ │ ├── img_lv_demo_music_icon_3_large.c │ │ ├── img_lv_demo_music_icon_4.c │ │ ├── img_lv_demo_music_icon_4_large.c │ │ ├── img_lv_demo_music_list_border.c │ │ ├── img_lv_demo_music_list_border_large.c │ │ ├── img_lv_demo_music_logo.c │ │ ├── img_lv_demo_music_slider_knob.c │ │ ├── img_lv_demo_music_slider_knob_large.c │ │ ├── img_lv_demo_music_wave_bottom.c │ │ ├── img_lv_demo_music_wave_bottom_large.c │ │ ├── img_lv_demo_music_wave_top.c │ │ ├── img_lv_demo_music_wave_top_large.c │ │ ├── png │ │ │ ├── 272_png │ │ │ │ ├── btn_list_pause.png │ │ │ │ ├── btn_list_play.png │ │ │ │ ├── btn_loop.png │ │ │ │ ├── btn_next.png │ │ │ │ ├── btn_pause.png │ │ │ │ ├── btn_play.png │ │ │ │ ├── btn_prev.png │ │ │ │ ├── btn_rnd.png │ │ │ │ ├── corner_1.png │ │ │ │ ├── corner_2.png │ │ │ │ ├── cover_1.png │ │ │ │ ├── cover_2.png │ │ │ │ ├── cover_3.png │ │ │ │ ├── icn_chart.png │ │ │ │ ├── icn_chat.png │ │ │ │ ├── icn_download.png │ │ │ │ ├── icn_heart.png │ │ │ │ ├── icn_slider.png │ │ │ │ ├── list_border.png │ │ │ │ ├── wave_bottom.png │ │ │ │ └── wave_top.png │ │ │ └── 480_png │ │ │ │ ├── btn_list_pause.png │ │ │ │ ├── btn_list_play.png │ │ │ │ ├── btn_loop.png │ │ │ │ ├── btn_next.png │ │ │ │ ├── btn_pause.png │ │ │ │ ├── btn_play.png │ │ │ │ ├── btn_prev.png │ │ │ │ ├── btn_rnd.png │ │ │ │ ├── corner_1.png │ │ │ │ ├── corner_2.png │ │ │ │ ├── cover_1.png │ │ │ │ ├── cover_2.png │ │ │ │ ├── cover_3.png │ │ │ │ ├── icn_chart.png │ │ │ │ ├── icn_chat.png │ │ │ │ ├── icn_download.png │ │ │ │ ├── icn_heart.png │ │ │ │ ├── icn_slider.png │ │ │ │ ├── list_border.png │ │ │ │ ├── wave_bottom.png │ │ │ │ └── wave_top.png │ │ ├── spectrum.py │ │ ├── spectrum_1.h │ │ ├── spectrum_2.h │ │ └── spectrum_3.h │ ├── lv_demo_music.c │ ├── lv_demo_music.h │ ├── lv_demo_music_list.c │ ├── lv_demo_music_list.h │ ├── lv_demo_music_main.c │ ├── lv_demo_music_main.h │ └── screenshot1.gif ├── render │ ├── assets │ │ ├── img_render_arc_bg.c │ │ ├── img_render_lvgl_logo_argb.png │ │ ├── img_render_lvgl_logo_argb8888.c │ │ ├── img_render_lvgl_logo_argb8888_premultiplied.c │ │ ├── img_render_lvgl_logo_i1.c │ │ ├── img_render_lvgl_logo_i1.png │ │ ├── img_render_lvgl_logo_l8.c │ │ ├── img_render_lvgl_logo_l8.png │ │ ├── img_render_lvgl_logo_rgb.png │ │ ├── img_render_lvgl_logo_rgb565.c │ │ ├── img_render_lvgl_logo_rgb565_swapped.c │ │ ├── img_render_lvgl_logo_rgb565a8.c │ │ ├── img_render_lvgl_logo_rgb888.c │ │ └── img_render_lvgl_logo_xrgb8888.c │ ├── lv_demo_render.c │ └── lv_demo_render.h ├── stress │ ├── README.md │ ├── lv_demo_stress.c │ ├── lv_demo_stress.h │ ├── screenshot1.gif │ └── screenshot1.png ├── vector_graphic │ ├── assets │ │ ├── avatar.png │ │ └── img_demo_vector_avatar.c │ ├── lv_demo_vector_graphic.c │ └── lv_demo_vector_graphic.h └── widgets │ ├── assets │ ├── avatar.png │ ├── clothes.png │ ├── font │ │ ├── montserrat-12.fnt │ │ ├── montserrat-14.fnt │ │ ├── montserrat-16.fnt │ │ ├── montserrat-18.fnt │ │ ├── montserrat-20.fnt │ │ └── montserrat-24.fnt │ ├── img_clothes.c │ ├── img_demo_widgets_avatar.c │ ├── img_demo_widgets_needle.c │ ├── img_lvgl_logo.c │ └── lvgl_logo.png │ ├── lv_demo_widgets.c │ ├── lv_demo_widgets.h │ ├── lv_demo_widgets.py │ ├── screenshot1.gif │ └── screenshot1.png ├── docs ├── .gitignore ├── CODE_OF_CONDUCT.md ├── Doxyfile ├── Makefile ├── README.md ├── README_he.md ├── README_jp.md ├── README_pt_BR.md ├── README_zh.md ├── _obsolete │ ├── btn_example.png │ ├── button_style_example.gif │ ├── button_style_example.png │ ├── codeblocks.jpg │ ├── eclipse.jpg │ ├── home_banner.jpg │ ├── js_calculator.gif │ ├── js_code.png │ ├── js_on_device.jpg │ ├── js_widgets_demo.gif │ ├── platformio.jpg │ ├── qtcreator.jpg │ ├── simple_button_example.gif │ ├── simple_button_example.png │ ├── sys.png │ └── visualstudio.jpg ├── add_translation.py ├── announce.py ├── api_doc_builder.py ├── build.py ├── config_builder.py ├── doxygen_config.py ├── doxygen_xml.py ├── example_list.py ├── flyers │ └── LVGL-Chinese-Flyer.pdf ├── make.bat ├── requirements.txt └── src │ ├── API │ └── index.rst │ ├── CHANGELOG.rst │ ├── _ext │ ├── link_roles.py │ └── lv_example.py │ ├── _static │ ├── css │ │ ├── brands.min.css │ │ ├── custom.css │ │ ├── fontawesome.min.css │ │ └── solid.min.css │ ├── fonts │ │ ├── fontawesome-webfont.woff │ │ └── fontawesome-webfont.woff2 │ ├── images │ │ ├── align.png │ │ ├── anim-timeline.png │ │ ├── bidi.png │ │ ├── boxmodel.png │ │ ├── favicon.png │ │ ├── gh-header.webp │ │ ├── home_1.png │ │ ├── home_2.png │ │ ├── home_3.png │ │ ├── home_4.png │ │ ├── home_5.png │ │ ├── home_6.png │ │ ├── intro_data_flow.png │ │ ├── layers.png │ │ ├── logo-dark.svg │ │ ├── logo-light.svg │ │ ├── par_child1.png │ │ ├── par_child2.png │ │ ├── par_child3.png │ │ ├── perfetto_ui.png │ │ ├── renesas │ │ │ ├── debug_btn.png │ │ │ ├── debug_ra6.png │ │ │ ├── debug_ra8.png │ │ │ ├── debug_rx72.png │ │ │ ├── generate.png │ │ │ ├── generate_smc.png │ │ │ ├── glcdc.png │ │ │ └── toolchains.png │ │ ├── scale.png │ │ ├── scale_ticks_below.png │ │ ├── scale_ticks_on_top.png │ │ └── symbols.png │ ├── jquery.js │ └── js │ │ ├── custom.js │ │ └── include_html.js │ ├── _templates │ ├── partials │ │ └── icons.html │ └── sidebar │ │ ├── search.html │ │ └── version-selector.html │ ├── conf.py │ ├── contributing │ ├── coding_style.rst │ ├── dco.rst │ ├── index.rst │ ├── introduction.rst │ ├── pull_requests.rst │ └── ways_to_contribute.rst │ ├── details │ ├── auxiliary-modules │ │ ├── file_explorer.rst │ │ ├── font_manager.rst │ │ ├── fragment.rst │ │ ├── gridnav.rst │ │ ├── ime_pinyin.rst │ │ ├── imgfont.rst │ │ ├── index.rst │ │ ├── monkey.rst │ │ ├── obj_id.rst │ │ ├── obj_property.rst │ │ ├── observer │ │ │ ├── index.rst │ │ │ ├── observer.rst │ │ │ └── observer_examples.rst │ │ ├── snapshot.rst │ │ ├── test.rst │ │ └── translation.rst │ ├── common-widget-features │ │ ├── basics.rst │ │ ├── coordinates.rst │ │ ├── events.rst │ │ ├── index.rst │ │ ├── layers.rst │ │ ├── layouts │ │ │ ├── flex.rst │ │ │ ├── grid.rst │ │ │ └── index.rst │ │ ├── scrolling.rst │ │ └── styles │ │ │ ├── index.rst │ │ │ ├── style-properties.rst │ │ │ └── styles.rst │ ├── debugging │ │ ├── gdb_plugin.rst │ │ ├── index.rst │ │ ├── log.rst │ │ ├── profiler.rst │ │ └── vg_lite_tvg.rst │ ├── integration │ │ ├── adding-lvgl-to-your-project │ │ │ ├── building_lvgl.rst │ │ │ ├── configuration.rst │ │ │ ├── connecting_lvgl.rst │ │ │ ├── getting_lvgl.rst │ │ │ ├── index.rst │ │ │ ├── other_platforms.rst │ │ │ ├── threading.rst │ │ │ └── timer_handler.rst │ │ ├── bindings │ │ │ ├── api_json.rst │ │ │ ├── cpp.rst │ │ │ ├── index.rst │ │ │ ├── javascript.rst │ │ │ ├── micropython.rst │ │ │ └── pikascript.rst │ │ ├── boards │ │ │ ├── index.rst │ │ │ ├── riverdi.rst │ │ │ ├── toradex.rst │ │ │ └── viewe.rst │ │ ├── building │ │ │ ├── cmake.rst │ │ │ ├── index.rst │ │ │ └── make.rst │ │ ├── chip │ │ │ ├── alif.rst │ │ │ ├── arm.rst │ │ │ ├── espressif.rst │ │ │ ├── index.rst │ │ │ ├── nxp.rst │ │ │ ├── renesas │ │ │ │ ├── built_in_drivers.rst │ │ │ │ ├── index.rst │ │ │ │ ├── ra_family.rst │ │ │ │ ├── rx_family.rst │ │ │ │ ├── rza_family.rst │ │ │ │ ├── rzg_family.rst │ │ │ │ └── supported_boards.rst │ │ │ └── stm32.rst │ │ ├── driver │ │ │ ├── X11.rst │ │ │ ├── display │ │ │ │ ├── fbdev.rst │ │ │ │ ├── ft81x.rst │ │ │ │ ├── gen_mipi.rst │ │ │ │ ├── ili9341.rst │ │ │ │ ├── index.rst │ │ │ │ ├── lcd_stm32_guide.rst │ │ │ │ ├── nxp_elcdif.rst │ │ │ │ ├── renesas_glcdc.rst │ │ │ │ ├── st7735.rst │ │ │ │ ├── st7789.rst │ │ │ │ ├── st7796.rst │ │ │ │ └── st_ltdc.rst │ │ │ ├── index.rst │ │ │ ├── libinput.rst │ │ │ ├── opengles.rst │ │ │ ├── sdl.rst │ │ │ ├── touchpad │ │ │ │ ├── evdev.rst │ │ │ │ ├── ft6x36.rst │ │ │ │ └── index.rst │ │ │ ├── uefi.rst │ │ │ ├── wayland.rst │ │ │ └── windows.rst │ │ ├── framework │ │ │ ├── arduino.rst │ │ │ ├── index.rst │ │ │ ├── platformio.rst │ │ │ └── tasmota-berry.rst │ │ ├── ide │ │ │ ├── index.rst │ │ │ ├── mdk.rst │ │ │ └── pc-simulator.rst │ │ ├── index.rst │ │ ├── os │ │ │ ├── buildroot │ │ │ │ ├── image_generation.rst │ │ │ │ ├── index.rst │ │ │ │ ├── lvgl_app.rst │ │ │ │ └── quick_setup.rst │ │ │ ├── freertos.rst │ │ │ ├── index.rst │ │ │ ├── mqx.rst │ │ │ ├── nuttx.rst │ │ │ ├── px5.rst │ │ │ ├── qnx.rst │ │ │ ├── rt-thread.rst │ │ │ ├── torizon_os.rst │ │ │ ├── yocto │ │ │ │ ├── core_components.rst │ │ │ │ ├── index.rst │ │ │ │ ├── lvgl_recipe.rst │ │ │ │ └── terms_and_variables.rst │ │ │ └── zephyr.rst │ │ └── renderers │ │ │ ├── arm2d.rst │ │ │ ├── espressif_ppa.rst │ │ │ ├── index.rst │ │ │ ├── nema_gfx.rst │ │ │ ├── nxp_g2d.rst │ │ │ ├── nxp_pxp.rst │ │ │ ├── nxp_vglite_gpu.rst │ │ │ ├── sdl.rst │ │ │ ├── stm32_dma2d.rst │ │ │ ├── sw.rst │ │ │ └── vg_lite.rst │ ├── libs │ │ ├── arduino_esp_littlefs.rst │ │ ├── arduino_sd.rst │ │ ├── barcode.rst │ │ ├── bmp.rst │ │ ├── ffmpeg.rst │ │ ├── freetype.rst │ │ ├── fs.rst │ │ ├── gif.rst │ │ ├── index.rst │ │ ├── lfs.rst │ │ ├── libjpeg_turbo.rst │ │ ├── libpng.rst │ │ ├── lodepng.rst │ │ ├── qrcode.rst │ │ ├── rle-compress-statistics.png │ │ ├── rle.rst │ │ ├── rlottie.rst │ │ ├── svg.rst │ │ ├── tiny_ttf.rst │ │ └── tjpgd.rst │ ├── main-modules │ │ ├── animation.rst │ │ ├── color.rst │ │ ├── display │ │ │ ├── color_format.rst │ │ │ ├── display_events.rst │ │ │ ├── display_events_list.txt │ │ │ ├── extending_combining.rst │ │ │ ├── inactivity.rst │ │ │ ├── index.rst │ │ │ ├── overview.rst │ │ │ ├── redraw_area.rst │ │ │ ├── refreshing.rst │ │ │ ├── resolution.rst │ │ │ ├── rotation.rst │ │ │ ├── screen_layers.rst │ │ │ ├── setup.rst │ │ │ └── tiling.rst │ │ ├── draw │ │ │ ├── draw_api.rst │ │ │ ├── draw_descriptors.rst │ │ │ ├── draw_layers.rst │ │ │ ├── draw_pipeline.rst │ │ │ └── index.rst │ │ ├── font.rst │ │ ├── fs.rst │ │ ├── image.rst │ │ ├── indev.rst │ │ ├── index.rst │ │ └── timer.rst │ ├── widgets │ │ ├── 3dtexture.rst │ │ ├── animimg.rst │ │ ├── arc.rst │ │ ├── arclabel.rst │ │ ├── bar.rst │ │ ├── base_widget.rst │ │ ├── button.rst │ │ ├── buttonmatrix.rst │ │ ├── calendar.rst │ │ ├── canvas.rst │ │ ├── chart.rst │ │ ├── checkbox.rst │ │ ├── dropdown.rst │ │ ├── image.rst │ │ ├── imagebutton.rst │ │ ├── index.rst │ │ ├── keyboard.rst │ │ ├── label.rst │ │ ├── led.rst │ │ ├── line.rst │ │ ├── list.rst │ │ ├── lottie.rst │ │ ├── menu.rst │ │ ├── msgbox.rst │ │ ├── new_widget.rst │ │ ├── roller.rst │ │ ├── scale.rst │ │ ├── slider.rst │ │ ├── spangroup.rst │ │ ├── spinbox.rst │ │ ├── spinner.rst │ │ ├── switch.rst │ │ ├── table.rst │ │ ├── tabview.rst │ │ ├── textarea.rst │ │ ├── tileview.rst │ │ └── win.rst │ └── xml │ │ ├── build_ui │ │ ├── assets │ │ │ ├── fonts.rst │ │ │ ├── images.rst │ │ │ └── index.rst │ │ ├── events.rst │ │ ├── index.rst │ │ ├── main_tags │ │ │ ├── animations.rst │ │ │ ├── api.rst │ │ │ ├── consts.rst │ │ │ ├── index.rst │ │ │ ├── preview.rst │ │ │ ├── styles.rst │ │ │ └── view.rst │ │ ├── root_elements │ │ │ ├── components.rst │ │ │ ├── index.rst │ │ │ ├── screens.rst │ │ │ └── widgets.rst │ │ ├── subjects.rst │ │ └── translation.rst │ │ ├── index.rst │ │ ├── license.rst │ │ ├── overview │ │ ├── component_library.rst │ │ ├── index.rst │ │ ├── intro.rst │ │ ├── project.rst │ │ └── syntax.rst │ │ └── test.rst │ ├── index.rst │ ├── intro │ ├── getting_started │ │ ├── examples.rst │ │ ├── index.rst │ │ ├── learn_the_basics.rst │ │ └── whats_next.rst │ └── introduction │ │ ├── faq.rst │ │ ├── index.rst │ │ ├── key_features.rst │ │ ├── license.rst │ │ ├── repo.rst │ │ └── requirements.rst │ └── lvgl_version.py ├── env_support ├── cmake │ ├── esp.cmake │ ├── kconfig.cmake │ ├── micropython.cmake │ ├── os_desktop.cmake │ ├── version.cmake │ └── zephyr.cmake ├── cmsis-pack │ ├── LVGL.lvgl.9.3.0.pack │ ├── LVGL.lvgl.pdsc │ ├── LVGL.pidx │ ├── README.md │ ├── gen_pack.sh │ ├── lv_cmsis_pack.txt │ ├── lv_conf_cmsis.h │ ├── lv_os_custom_c.txt │ └── lv_os_custom_h.txt ├── esp │ └── rlottie │ │ ├── 0001-changes-to-compile-with-esp-idf.patch │ │ └── CMakeLists.txt ├── pikascript │ ├── README.md │ ├── pika_lv_point_t.c │ ├── pika_lv_timer_t.c │ ├── pika_lv_wegit.c │ ├── pika_lvgl.c │ ├── pika_lvgl.pyi │ ├── pika_lvgl_indev_t.c │ ├── pika_lvgl_lv_event.c │ ├── pika_lvgl_lv_obj.c │ └── pika_lvgl_lv_style_t.c ├── qnx │ ├── Makefile │ ├── aarch64 │ │ ├── Makefile │ │ ├── a.le │ │ │ └── Makefile │ │ └── so.le │ │ │ └── Makefile │ ├── common.mk │ └── x86_64 │ │ ├── Makefile │ │ ├── a │ │ └── Makefile │ │ └── so │ │ └── Makefile └── rt-thread │ ├── SConscript │ ├── lv_rt_thread_conf.h │ ├── lv_rt_thread_port.c │ └── squareline │ ├── README.md │ ├── SConscript │ ├── lv_ui_entry.c │ └── ui │ └── lvgl │ └── lvgl.h ├── examples ├── anim │ ├── index.rst │ ├── lv_example_anim.h │ ├── lv_example_anim_1.c │ ├── lv_example_anim_2.c │ ├── lv_example_anim_3.c │ ├── lv_example_anim_4.c │ └── lv_example_anim_timeline_1.c ├── arduino │ └── LVGL_Arduino │ │ └── LVGL_Arduino.ino ├── assets │ ├── animimg001.c │ ├── animimg001.png │ ├── animimg002.c │ ├── animimg002.png │ ├── animimg003.c │ ├── animimg003.png │ ├── caret_down.png │ ├── emoji │ │ ├── F600.png │ │ ├── F617.png │ │ └── img_emoji_F617.c │ ├── font │ │ ├── lv_font_simsun_16_cjk.fnt │ │ ├── montserrat-16.fnt │ │ ├── montserrat-18.fnt │ │ └── montserrat-22.fnt │ ├── img_caret_down.c │ ├── img_caret_down.png │ ├── img_cogwheel_argb.c │ ├── img_cogwheel_argb.png │ ├── img_cogwheel_chroma_keyed.png │ ├── img_cogwheel_indexed16.c │ ├── img_cogwheel_indexed16.png │ ├── img_cogwheel_rgb.c │ ├── img_cogwheel_rgb.png │ ├── img_hand.c │ ├── img_hand_hour.png │ ├── img_hand_min.png │ ├── img_skew_strip.c │ ├── img_skew_strip.png │ ├── img_skew_strip_80x20_argb8888.fnt │ ├── img_star.c │ ├── img_star.png │ ├── img_strip.png │ ├── img_svg_img.c │ ├── imgbtn_left.c │ ├── imgbtn_left.png │ ├── imgbtn_mid.c │ ├── imgbtn_mid.png │ ├── imgbtn_right.c │ └── imgbtn_right.png ├── event │ ├── index.rst │ ├── lv_example_event.h │ ├── lv_example_event_bubble.c │ ├── lv_example_event_button.c │ ├── lv_example_event_click.c │ ├── lv_example_event_draw.c │ ├── lv_example_event_streak.c │ └── lv_example_event_trickle.c ├── get_started │ ├── index.rst │ ├── lv_example_get_started.h │ ├── lv_example_get_started_1.c │ ├── lv_example_get_started_2.c │ ├── lv_example_get_started_3.c │ └── lv_example_get_started_4.c ├── grad │ ├── index.rst │ ├── lv_example_grad.h │ ├── lv_example_grad_1.c │ ├── lv_example_grad_2.c │ ├── lv_example_grad_3.c │ └── lv_example_grad_4.c ├── header.py ├── layouts │ ├── flex │ │ ├── index.rst │ │ ├── lv_example_flex.h │ │ ├── lv_example_flex_1.c │ │ ├── lv_example_flex_2.c │ │ ├── lv_example_flex_3.c │ │ ├── lv_example_flex_4.c │ │ ├── lv_example_flex_5.c │ │ └── lv_example_flex_6.c │ ├── grid │ │ ├── index.rst │ │ ├── lv_example_grid.h │ │ ├── lv_example_grid_1.c │ │ ├── lv_example_grid_2.c │ │ ├── lv_example_grid_3.c │ │ ├── lv_example_grid_4.c │ │ ├── lv_example_grid_5.c │ │ └── lv_example_grid_6.c │ └── lv_example_layout.h ├── libs │ ├── barcode │ │ ├── index.rst │ │ ├── lv_example_barcode.h │ │ └── lv_example_barcode_1.c │ ├── bmp │ │ ├── example_16bit.bmp │ │ ├── example_24bit.bmp │ │ ├── example_32bit.bmp │ │ ├── index.rst │ │ ├── lv_example_bmp.h │ │ └── lv_example_bmp_1.c │ ├── ffmpeg │ │ ├── birds.mp4 │ │ ├── ffmpeg.png │ │ ├── index.rst │ │ ├── lv_example_ffmpeg.h │ │ ├── lv_example_ffmpeg_1.c │ │ └── lv_example_ffmpeg_2.c │ ├── freetype │ │ ├── Lato-Regular.ttf │ │ ├── NotoColorEmoji-32.subset.ttf │ │ ├── OFL.txt │ │ ├── index.rst │ │ ├── lv_example_freetype.h │ │ ├── lv_example_freetype_1.c │ │ ├── lv_example_freetype_2.c │ │ └── lv_example_freetype_3.c │ ├── gif │ │ ├── bulb.gif │ │ ├── img_bulb_gif.c │ │ ├── index.rst │ │ ├── lv_example_gif.h │ │ └── lv_example_gif_1.c │ ├── libjpeg_turbo │ │ ├── flower.jpg │ │ ├── index.rst │ │ ├── lv_example_libjpeg_turbo.h │ │ └── lv_example_libjpeg_turbo_1.c │ ├── libpng │ │ ├── img_png_demo.c │ │ ├── index.rst │ │ ├── lv_example_libpng.h │ │ ├── lv_example_libpng_1.c │ │ └── png_demo.png │ ├── lodepng │ │ ├── img_wink_png.c │ │ ├── index.rst │ │ ├── lv_example_lodepng.h │ │ ├── lv_example_lodepng_1.c │ │ └── wink.png │ ├── lv_example_libs.h │ ├── qrcode │ │ ├── index.rst │ │ ├── lv_example_qrcode.h │ │ └── lv_example_qrcode_1.c │ ├── rlottie │ │ ├── index.rst │ │ ├── lv_example_rlottie.h │ │ ├── lv_example_rlottie_1.c │ │ ├── lv_example_rlottie_2.c │ │ ├── lv_example_rlottie_approve.c │ │ └── lv_example_rlottie_approve.json │ ├── svg │ │ ├── index.rst │ │ ├── lv_example_svg.h │ │ └── lv_example_svg_1.c │ ├── tiny_ttf │ │ ├── Ubuntu-Medium.ttf │ │ ├── index.rst │ │ ├── lv_example_tiny_ttf.h │ │ ├── lv_example_tiny_ttf_1.c │ │ ├── lv_example_tiny_ttf_2.c │ │ ├── lv_example_tiny_ttf_3.c │ │ └── ubuntu_font.c │ └── tjpgd │ │ ├── img_lvgl_logo.jpg │ │ ├── index.rst │ │ ├── lv_example_tjpgd.h │ │ └── lv_example_tjpgd_1.c ├── lv_examples.h ├── others │ ├── file_explorer │ │ ├── index.rst │ │ ├── lv_example_file_explorer.h │ │ ├── lv_example_file_explorer_1.c │ │ ├── lv_example_file_explorer_2.c │ │ └── lv_example_file_explorer_3.c │ ├── font_manager │ │ ├── index.rst │ │ ├── lv_example_font_manager.h │ │ ├── lv_example_font_manager_1.c │ │ ├── lv_example_font_manager_2.c │ │ └── lv_example_font_manager_3.c │ ├── fragment │ │ ├── index.rst │ │ ├── lv_example_fragment.h │ │ ├── lv_example_fragment_1.c │ │ └── lv_example_fragment_2.c │ ├── gestures │ │ ├── lv_example_gestures.c │ │ └── lv_example_gestures.h │ ├── gridnav │ │ ├── index.rst │ │ ├── lv_example_gridnav.h │ │ ├── lv_example_gridnav_1.c │ │ ├── lv_example_gridnav_2.c │ │ ├── lv_example_gridnav_3.c │ │ ├── lv_example_gridnav_4.c │ │ └── lv_example_gridnav_5.c │ ├── ime │ │ ├── index.rst │ │ ├── lv_example_ime_pinyin.h │ │ ├── lv_example_ime_pinyin_1.c │ │ └── lv_example_ime_pinyin_2.c │ ├── imgfont │ │ ├── index.rst │ │ ├── lv_example_imgfont.h │ │ └── lv_example_imgfont_1.c │ ├── lv_example_others.h │ ├── monkey │ │ ├── index.rst │ │ ├── lv_example_monkey.h │ │ ├── lv_example_monkey_1.c │ │ ├── lv_example_monkey_2.c │ │ └── lv_example_monkey_3.c │ ├── observer │ │ ├── index.rst │ │ ├── lv_example_observer.h │ │ ├── lv_example_observer_1.c │ │ ├── lv_example_observer_2.c │ │ ├── lv_example_observer_3.c │ │ ├── lv_example_observer_4.c │ │ ├── lv_example_observer_5.c │ │ ├── lv_example_observer_6.c │ │ └── lv_example_observer_7.c │ ├── snapshot │ │ ├── index.rst │ │ ├── lv_example_snapshot.h │ │ └── lv_example_snapshot_1.c │ ├── translation │ │ ├── index.rst │ │ ├── lv_example_translation.h │ │ └── lv_example_translation_1.c │ └── xml │ │ ├── index.rst │ │ ├── lv_example_xml.h │ │ ├── lv_example_xml_1.c │ │ ├── lv_example_xml_2.c │ │ ├── my_button.xml │ │ ├── my_card.xml │ │ ├── my_h3.xml │ │ ├── translations.xml │ │ └── view.xml ├── porting │ ├── lv_port_disp_template.c │ ├── lv_port_disp_template.h │ ├── lv_port_fs_template.c │ ├── lv_port_fs_template.h │ ├── lv_port_indev_template.c │ ├── lv_port_indev_template.h │ ├── lv_port_lcd_stm32_template.c │ ├── lv_port_lcd_stm32_template.h │ └── osal │ │ ├── lv_example_osal.c │ │ └── lv_example_osal.h ├── scroll │ ├── index.rst │ ├── lv_example_scroll.h │ ├── lv_example_scroll_1.c │ ├── lv_example_scroll_2.c │ ├── lv_example_scroll_3.c │ ├── lv_example_scroll_4.c │ ├── lv_example_scroll_5.c │ ├── lv_example_scroll_6.c │ ├── lv_example_scroll_7.c │ └── lv_example_scroll_8.c ├── styles │ ├── index.rst │ ├── lv_example_style.h │ ├── lv_example_style_1.c │ ├── lv_example_style_10.c │ ├── lv_example_style_11.c │ ├── lv_example_style_12.c │ ├── lv_example_style_13.c │ ├── lv_example_style_14.c │ ├── lv_example_style_15.c │ ├── lv_example_style_16.c │ ├── lv_example_style_17.c │ ├── lv_example_style_18.c │ ├── lv_example_style_19.c │ ├── lv_example_style_2.c │ ├── lv_example_style_3.c │ ├── lv_example_style_4.c │ ├── lv_example_style_5.c │ ├── lv_example_style_6.c │ ├── lv_example_style_7.c │ ├── lv_example_style_8.c │ └── lv_example_style_9.c ├── test_ex.sh └── widgets │ ├── animimg │ ├── index.rst │ └── lv_example_animimg_1.c │ ├── arc │ ├── index.rst │ ├── lv_example_arc_1.c │ ├── lv_example_arc_2.c │ └── lv_example_arc_3.c │ ├── arclabel │ ├── index.rst │ └── lv_example_arclabel_1.c │ ├── bar │ ├── index.rst │ ├── lv_example_bar_1.c │ ├── lv_example_bar_2.c │ ├── lv_example_bar_3.c │ ├── lv_example_bar_4.c │ ├── lv_example_bar_5.c │ ├── lv_example_bar_6.c │ └── lv_example_bar_7.c │ ├── button │ ├── index.rst │ ├── lv_example_button_1.c │ ├── lv_example_button_2.c │ └── lv_example_button_3.c │ ├── buttonmatrix │ ├── index.rst │ ├── lv_example_buttonmatrix_1.c │ ├── lv_example_buttonmatrix_2.c │ └── lv_example_buttonmatrix_3.c │ ├── calendar │ ├── index.rst │ ├── lv_example_calendar_1.c │ └── lv_example_calendar_2.c │ ├── canvas │ ├── index.rst │ ├── lv_example_canvas_1.c │ ├── lv_example_canvas_10.c │ ├── lv_example_canvas_11.c │ ├── lv_example_canvas_2.c │ ├── lv_example_canvas_3.c │ ├── lv_example_canvas_4.c │ ├── lv_example_canvas_5.c │ ├── lv_example_canvas_6.c │ ├── lv_example_canvas_7.c │ ├── lv_example_canvas_8.c │ └── lv_example_canvas_9.c │ ├── chart │ ├── index.rst │ ├── lv_example_chart_1.c │ ├── lv_example_chart_2.c │ ├── lv_example_chart_3.c │ ├── lv_example_chart_4.c │ ├── lv_example_chart_5.c │ ├── lv_example_chart_6.c │ ├── lv_example_chart_7.c │ └── lv_example_chart_8.c │ ├── checkbox │ ├── index.rst │ ├── lv_example_checkbox_1.c │ └── lv_example_checkbox_2.c │ ├── dropdown │ ├── index.rst │ ├── lv_example_dropdown_1.c │ ├── lv_example_dropdown_2.c │ └── lv_example_dropdown_3.c │ ├── image │ ├── index.rst │ ├── lv_example_image_1.c │ ├── lv_example_image_2.c │ ├── lv_example_image_3.c │ ├── lv_example_image_4.c │ └── lv_example_image_5.c │ ├── imagebutton │ ├── index.rst │ └── lv_example_imagebutton_1.c │ ├── keyboard │ ├── index.rst │ ├── lv_example_keyboard_1.c │ ├── lv_example_keyboard_2.c │ └── lv_example_keyboard_3.c │ ├── label │ ├── index.rst │ ├── lv_example_label_1.c │ ├── lv_example_label_2.c │ ├── lv_example_label_3.c │ ├── lv_example_label_4.c │ ├── lv_example_label_5.c │ └── lv_example_label_6.c │ ├── led │ ├── index.rst │ └── lv_example_led_1.c │ ├── line │ ├── index.rst │ └── lv_example_line_1.c │ ├── list │ ├── index.rst │ ├── lv_example_list_1.c │ └── lv_example_list_2.c │ ├── lottie │ ├── index.rst │ ├── lv_example_lottie_1.c │ ├── lv_example_lottie_2.c │ ├── lv_example_lottie_approve.c │ └── lv_example_lottie_approve.json │ ├── lv_example_widgets.h │ ├── menu │ ├── index.rst │ ├── lv_example_menu_1.c │ ├── lv_example_menu_2.c │ ├── lv_example_menu_3.c │ ├── lv_example_menu_4.c │ └── lv_example_menu_5.c │ ├── msgbox │ ├── index.rst │ ├── lv_example_msgbox_1.c │ └── lv_example_msgbox_2.c │ ├── obj │ ├── index.rst │ ├── lv_example_obj_1.c │ ├── lv_example_obj_2.c │ └── lv_example_obj_3.c │ ├── roller │ ├── index.rst │ ├── lv_example_roller_1.c │ ├── lv_example_roller_2.c │ └── lv_example_roller_3.c │ ├── scale │ ├── index.rst │ ├── lv_example_scale_1.c │ ├── lv_example_scale_10.c │ ├── lv_example_scale_11.c │ ├── lv_example_scale_12.c │ ├── lv_example_scale_2.c │ ├── lv_example_scale_3.c │ ├── lv_example_scale_4.c │ ├── lv_example_scale_5.c │ ├── lv_example_scale_6.c │ ├── lv_example_scale_7.c │ ├── lv_example_scale_8.c │ └── lv_example_scale_9.c │ ├── slider │ ├── index.rst │ ├── lv_example_slider_1.c │ ├── lv_example_slider_2.c │ ├── lv_example_slider_3.c │ └── lv_example_slider_4.c │ ├── span │ ├── index.rst │ └── lv_example_span_1.c │ ├── spinbox │ ├── index.rst │ └── lv_example_spinbox_1.c │ ├── spinner │ ├── index.rst │ └── lv_example_spinner_1.c │ ├── switch │ ├── index.rst │ ├── lv_example_switch_1.c │ └── lv_example_switch_2.c │ ├── table │ ├── index.rst │ ├── lv_example_table_1.c │ └── lv_example_table_2.c │ ├── tabview │ ├── index.rst │ ├── lv_example_tabview_1.c │ └── lv_example_tabview_2.c │ ├── textarea │ ├── index.rst │ ├── lv_example_textarea_1.c │ ├── lv_example_textarea_2.c │ ├── lv_example_textarea_3.c │ └── lv_example_textarea_4.c │ ├── tileview │ ├── index.rst │ └── lv_example_tileview_1.c │ └── win │ ├── index.rst │ └── lv_example_win_1.c ├── idf_component.yml ├── library.json ├── library.properties ├── libs └── nema_gfx │ ├── include │ ├── build_version.h │ ├── nema_blender.h │ ├── nema_cmdlist.h │ ├── nema_core.h │ ├── nema_easing.h │ ├── nema_error.h │ ├── nema_font.h │ ├── nema_graphics.h │ ├── nema_hal.h │ ├── nema_interpolators.h │ ├── nema_math.h │ ├── nema_matrix3x3.h │ ├── nema_matrix4x4.h │ ├── nema_provisional.h │ ├── nema_raster.h │ ├── nema_sys_defs.h │ ├── nema_transitions.h │ ├── nema_utils.h │ ├── nema_version.h │ ├── nema_vg.h │ ├── nema_vg_context.h │ ├── nema_vg_font.h │ ├── nema_vg_paint.h │ ├── nema_vg_path.h │ ├── nema_vg_tsvg.h │ ├── nema_vg_version.h │ └── tsi_malloc.h │ └── lib │ └── core │ ├── cortex_m33_NemaPVG │ └── gcc │ │ ├── libnemagfx-float-abi-hard-wc16.a │ │ ├── libnemagfx-float-abi-hard.a │ │ ├── libnemagfx-wc16.a │ │ └── libnemagfx.a │ └── cortex_m33_revC │ └── gcc │ ├── libnemagfx-float-abi-hard-wc16.a │ ├── libnemagfx-float-abi-hard.a │ ├── libnemagfx-wc16.a │ └── libnemagfx.a ├── lv_conf_template.h ├── lv_version.h ├── lv_version.h.in ├── lvgl.h ├── lvgl.mk ├── lvgl.pc.in ├── lvgl_private.h ├── scripts ├── .gitignore ├── LVGLImage.py ├── build_html_examples.sh ├── built_in_font │ ├── DejaVuSans.ttf │ ├── FontAwesome5-Solid+Brands+Regular.woff │ ├── Montserrat-Medium.ttf │ ├── SourceHanSansSC-Normal.otf │ ├── built_in_font_gen.py │ ├── font_license │ │ ├── DejaVuSans │ │ │ └── LICENSE │ │ ├── FontAwesome5 │ │ │ └── LICENSE.txt │ │ ├── Montserrat │ │ │ └── OFL.txt │ │ ├── SourceHanSansSC │ │ │ └── LICENSE.txt │ │ └── unscii │ │ │ └── unscii.html │ ├── generate_all.py │ └── unscii-8.ttf ├── changelog-template.hbs ├── changelog_gen.sh ├── code-format.cfg ├── code-format.py ├── cppcheck_run.sh ├── filetohex.py ├── find_version.sh ├── font_license_verify.py ├── gdb │ ├── gdbinit.py │ └── lvglgdb │ │ ├── __init__.py │ │ ├── debugger.py │ │ ├── lvgl.py │ │ └── value.py ├── gen_json │ ├── create_fake_lib_c.py │ ├── gen_json.py │ ├── get_sdl2.py │ ├── pycparser_monkeypatch.py │ └── requirements.txt ├── generate_cmake_variables.py ├── generate_lv_conf.py ├── genexamplelist.sh ├── image_viewer.py ├── infer_run.sh ├── install-prerequisites.bat ├── install-prerequisites.sh ├── install_astyle.sh ├── install_pngquant.sh ├── jpg_to_sjpg.py ├── kconfig.py ├── kconfig_verify.py ├── lv_conf_internal_gen.py ├── lv_templ_check.py ├── perf │ ├── benchmark_results_comment.py │ ├── filter_docker_benchmark_logs.py │ ├── lvperf_dependencies.sh │ ├── serialize_results.py │ └── tests │ │ ├── benchmark_results_comment │ │ ├── no_mpk │ │ │ ├── expected.md │ │ │ ├── results-32b-lv_conf_perf32b.json │ │ │ └── results-64b-lv_conf_perf64b.json │ │ ├── normal │ │ │ ├── expected.md │ │ │ ├── results-32b-lv_conf_perf32b.json │ │ │ ├── results-32b-lv_conf_perf32b.mpk │ │ │ ├── results-64b-lv_conf_perf64b.json │ │ │ └── results-64b-lv_conf_perf64b.mpk │ │ └── test.sh │ │ ├── filter_docker_logs │ │ ├── docker-logs-example.txt │ │ ├── expected.json │ │ └── test.sh │ │ └── serialize_results │ │ ├── expected_output │ │ ├── results-32b-lv_conf_perf32b.mpk │ │ ├── results-32b-lv_conf_perf32b_a.mpk │ │ ├── results-32b-lv_conf_perf32b_b.mpk │ │ └── results-64b-lv_conf_perf64b.mpk │ │ ├── input │ │ ├── results-32b-lv_conf_perf32b.json │ │ ├── results-32b-lv_conf_perf32b.mpk │ │ ├── results-32b-lv_conf_perf32b_a.json │ │ ├── results-32b-lv_conf_perf32b_b.mpk │ │ ├── results-64b-lv_conf_perf64b.json │ │ └── results-64b-lv_conf_perf64b.mpk │ │ └── test.sh ├── preprocess_lv_conf_internal.py ├── prerequisites-apt.txt ├── prerequisites-pip.txt ├── properties.py ├── release_branch_updater.py ├── release_branch_updater_port_urls.txt ├── style_api_gen.py ├── trace_filter.py └── update_version.py ├── src ├── core │ ├── lv_global.h │ ├── lv_group.c │ ├── lv_group.h │ ├── lv_group_private.h │ ├── lv_obj.c │ ├── lv_obj.h │ ├── lv_obj_class.c │ ├── lv_obj_class.h │ ├── lv_obj_class_private.h │ ├── lv_obj_draw.c │ ├── lv_obj_draw.h │ ├── lv_obj_draw_private.h │ ├── lv_obj_event.c │ ├── lv_obj_event.h │ ├── lv_obj_event_private.h │ ├── lv_obj_id_builtin.c │ ├── lv_obj_pos.c │ ├── lv_obj_pos.h │ ├── lv_obj_private.h │ ├── lv_obj_property.c │ ├── lv_obj_property.h │ ├── lv_obj_scroll.c │ ├── lv_obj_scroll.h │ ├── lv_obj_scroll_private.h │ ├── lv_obj_style.c │ ├── lv_obj_style.h │ ├── lv_obj_style_gen.c │ ├── lv_obj_style_gen.h │ ├── lv_obj_style_private.h │ ├── lv_obj_tree.c │ ├── lv_obj_tree.h │ ├── lv_refr.c │ ├── lv_refr.h │ └── lv_refr_private.h ├── display │ ├── lv_display.c │ ├── lv_display.h │ └── lv_display_private.h ├── draw │ ├── dma2d │ │ ├── lv_draw_dma2d.c │ │ ├── lv_draw_dma2d.h │ │ ├── lv_draw_dma2d_fill.c │ │ ├── lv_draw_dma2d_img.c │ │ └── lv_draw_dma2d_private.h │ ├── espressif │ │ └── ppa │ │ │ ├── lv_draw_ppa.c │ │ │ ├── lv_draw_ppa.h │ │ │ ├── lv_draw_ppa_buf.c │ │ │ ├── lv_draw_ppa_fill.c │ │ │ ├── lv_draw_ppa_img.c │ │ │ └── lv_draw_ppa_private.h │ ├── lv_draw.c │ ├── lv_draw.h │ ├── lv_draw_3d.c │ ├── lv_draw_3d.h │ ├── lv_draw_arc.c │ ├── lv_draw_arc.h │ ├── lv_draw_buf.c │ ├── lv_draw_buf.h │ ├── lv_draw_buf_private.h │ ├── lv_draw_image.c │ ├── lv_draw_image.h │ ├── lv_draw_image_private.h │ ├── lv_draw_label.c │ ├── lv_draw_label.h │ ├── lv_draw_label_private.h │ ├── lv_draw_line.c │ ├── lv_draw_line.h │ ├── lv_draw_mask.c │ ├── lv_draw_mask.h │ ├── lv_draw_mask_private.h │ ├── lv_draw_private.h │ ├── lv_draw_rect.c │ ├── lv_draw_rect.h │ ├── lv_draw_rect_private.h │ ├── lv_draw_triangle.c │ ├── lv_draw_triangle.h │ ├── lv_draw_triangle_private.h │ ├── lv_draw_vector.c │ ├── lv_draw_vector.h │ ├── lv_draw_vector_private.h │ ├── lv_image_decoder.c │ ├── lv_image_decoder.h │ ├── lv_image_decoder_private.h │ ├── lv_image_dsc.h │ ├── nema_gfx │ │ ├── lv_draw_nema_gfx.c │ │ ├── lv_draw_nema_gfx.h │ │ ├── lv_draw_nema_gfx_arc.c │ │ ├── lv_draw_nema_gfx_border.c │ │ ├── lv_draw_nema_gfx_fill.c │ │ ├── lv_draw_nema_gfx_img.c │ │ ├── lv_draw_nema_gfx_label.c │ │ ├── lv_draw_nema_gfx_layer.c │ │ ├── lv_draw_nema_gfx_line.c │ │ ├── lv_draw_nema_gfx_stm32_hal.c │ │ ├── lv_draw_nema_gfx_triangle.c │ │ ├── lv_draw_nema_gfx_utils.c │ │ ├── lv_draw_nema_gfx_utils.h │ │ ├── lv_nema_gfx_path.c │ │ └── lv_nema_gfx_path.h │ ├── nxp │ │ ├── g2d │ │ │ ├── lv_draw_buf_g2d.c │ │ │ ├── lv_draw_g2d.c │ │ │ ├── lv_draw_g2d.h │ │ │ ├── lv_draw_g2d_fill.c │ │ │ ├── lv_draw_g2d_img.c │ │ │ ├── lv_g2d_buf_map.c │ │ │ ├── lv_g2d_buf_map.h │ │ │ ├── lv_g2d_utils.c │ │ │ └── lv_g2d_utils.h │ │ ├── pxp │ │ │ ├── lv_draw_buf_pxp.c │ │ │ ├── lv_draw_pxp.c │ │ │ ├── lv_draw_pxp.h │ │ │ ├── lv_draw_pxp_fill.c │ │ │ ├── lv_draw_pxp_img.c │ │ │ ├── lv_draw_pxp_layer.c │ │ │ ├── lv_pxp_cfg.c │ │ │ ├── lv_pxp_cfg.h │ │ │ ├── lv_pxp_osa.c │ │ │ ├── lv_pxp_osa.h │ │ │ ├── lv_pxp_utils.c │ │ │ └── lv_pxp_utils.h │ │ └── vglite │ │ │ ├── lv_draw_buf_vglite.c │ │ │ ├── lv_draw_vglite.c │ │ │ ├── lv_draw_vglite.h │ │ │ ├── lv_draw_vglite_arc.c │ │ │ ├── lv_draw_vglite_border.c │ │ │ ├── lv_draw_vglite_fill.c │ │ │ ├── lv_draw_vglite_img.c │ │ │ ├── lv_draw_vglite_label.c │ │ │ ├── lv_draw_vglite_layer.c │ │ │ ├── lv_draw_vglite_line.c │ │ │ ├── lv_draw_vglite_triangle.c │ │ │ ├── lv_vglite_buf.c │ │ │ ├── lv_vglite_buf.h │ │ │ ├── lv_vglite_matrix.c │ │ │ ├── lv_vglite_matrix.h │ │ │ ├── lv_vglite_path.c │ │ │ ├── lv_vglite_path.h │ │ │ ├── lv_vglite_utils.c │ │ │ └── lv_vglite_utils.h │ ├── opengles │ │ ├── lv_draw_opengles.c │ │ └── lv_draw_opengles.h │ ├── renesas │ │ └── dave2d │ │ │ ├── lv_draw_dave2d.c │ │ │ ├── lv_draw_dave2d.h │ │ │ ├── lv_draw_dave2d_arc.c │ │ │ ├── lv_draw_dave2d_border.c │ │ │ ├── lv_draw_dave2d_fill.c │ │ │ ├── lv_draw_dave2d_image.c │ │ │ ├── lv_draw_dave2d_label.c │ │ │ ├── lv_draw_dave2d_line.c │ │ │ ├── lv_draw_dave2d_mask_rectangle.c │ │ │ ├── lv_draw_dave2d_triangle.c │ │ │ ├── lv_draw_dave2d_utils.c │ │ │ └── lv_draw_dave2d_utils.h │ ├── sdl │ │ ├── lv_draw_sdl.c │ │ └── lv_draw_sdl.h │ ├── sw │ │ ├── arm2d │ │ │ ├── lv_draw_sw_arm2d.h │ │ │ └── lv_draw_sw_helium.h │ │ ├── blend │ │ │ ├── arm2d │ │ │ │ └── lv_blend_arm2d.h │ │ │ ├── helium │ │ │ │ ├── lv_blend_helium.S │ │ │ │ └── lv_blend_helium.h │ │ │ ├── lv_draw_sw_blend.c │ │ │ ├── lv_draw_sw_blend.h │ │ │ ├── lv_draw_sw_blend_private.h │ │ │ ├── lv_draw_sw_blend_to_al88.c │ │ │ ├── lv_draw_sw_blend_to_al88.h │ │ │ ├── lv_draw_sw_blend_to_argb8888.c │ │ │ ├── lv_draw_sw_blend_to_argb8888.h │ │ │ ├── lv_draw_sw_blend_to_argb8888_premultiplied.c │ │ │ ├── lv_draw_sw_blend_to_argb8888_premultiplied.h │ │ │ ├── lv_draw_sw_blend_to_i1.c │ │ │ ├── lv_draw_sw_blend_to_i1.h │ │ │ ├── lv_draw_sw_blend_to_l8.c │ │ │ ├── lv_draw_sw_blend_to_l8.h │ │ │ ├── lv_draw_sw_blend_to_rgb565.c │ │ │ ├── lv_draw_sw_blend_to_rgb565.h │ │ │ ├── lv_draw_sw_blend_to_rgb565_swapped.c │ │ │ ├── lv_draw_sw_blend_to_rgb565_swapped.h │ │ │ ├── lv_draw_sw_blend_to_rgb888.c │ │ │ ├── lv_draw_sw_blend_to_rgb888.h │ │ │ └── neon │ │ │ │ ├── lv_blend_neon.S │ │ │ │ └── lv_blend_neon.h │ │ ├── lv_draw_sw.c │ │ ├── lv_draw_sw.h │ │ ├── lv_draw_sw_arc.c │ │ ├── lv_draw_sw_border.c │ │ ├── lv_draw_sw_box_shadow.c │ │ ├── lv_draw_sw_fill.c │ │ ├── lv_draw_sw_grad.c │ │ ├── lv_draw_sw_grad.h │ │ ├── lv_draw_sw_img.c │ │ ├── lv_draw_sw_letter.c │ │ ├── lv_draw_sw_line.c │ │ ├── lv_draw_sw_mask.c │ │ ├── lv_draw_sw_mask.h │ │ ├── lv_draw_sw_mask_private.h │ │ ├── lv_draw_sw_mask_rect.c │ │ ├── lv_draw_sw_private.h │ │ ├── lv_draw_sw_transform.c │ │ ├── lv_draw_sw_triangle.c │ │ ├── lv_draw_sw_utils.c │ │ ├── lv_draw_sw_utils.h │ │ └── lv_draw_sw_vector.c │ └── vg_lite │ │ ├── lv_draw_buf_vg_lite.c │ │ ├── lv_draw_vg_lite.c │ │ ├── lv_draw_vg_lite.h │ │ ├── lv_draw_vg_lite_arc.c │ │ ├── lv_draw_vg_lite_border.c │ │ ├── lv_draw_vg_lite_box_shadow.c │ │ ├── lv_draw_vg_lite_fill.c │ │ ├── lv_draw_vg_lite_img.c │ │ ├── lv_draw_vg_lite_label.c │ │ ├── lv_draw_vg_lite_layer.c │ │ ├── lv_draw_vg_lite_line.c │ │ ├── lv_draw_vg_lite_mask_rect.c │ │ ├── lv_draw_vg_lite_triangle.c │ │ ├── lv_draw_vg_lite_type.h │ │ ├── lv_draw_vg_lite_vector.c │ │ ├── lv_vg_lite_decoder.c │ │ ├── lv_vg_lite_decoder.h │ │ ├── lv_vg_lite_grad.c │ │ ├── lv_vg_lite_grad.h │ │ ├── lv_vg_lite_math.c │ │ ├── lv_vg_lite_math.h │ │ ├── lv_vg_lite_path.c │ │ ├── lv_vg_lite_path.h │ │ ├── lv_vg_lite_pending.c │ │ ├── lv_vg_lite_pending.h │ │ ├── lv_vg_lite_stroke.c │ │ ├── lv_vg_lite_stroke.h │ │ ├── lv_vg_lite_utils.c │ │ └── lv_vg_lite_utils.h ├── drivers │ ├── README.md │ ├── display │ │ ├── drm │ │ │ ├── lv_linux_drm.c │ │ │ └── lv_linux_drm.h │ │ ├── fb │ │ │ ├── lv_linux_fbdev.c │ │ │ └── lv_linux_fbdev.h │ │ ├── ft81x │ │ │ ├── lv_ft81x.c │ │ │ ├── lv_ft81x.h │ │ │ └── lv_ft81x_defines.h │ │ ├── ili9341 │ │ │ ├── lv_ili9341.c │ │ │ └── lv_ili9341.h │ │ ├── lcd │ │ │ ├── lv_lcd_generic_mipi.c │ │ │ └── lv_lcd_generic_mipi.h │ │ ├── nxp_elcdif │ │ │ ├── lv_nxp_elcdif.c │ │ │ └── lv_nxp_elcdif.h │ │ ├── renesas_glcdc │ │ │ ├── lv_renesas_glcdc.c │ │ │ └── lv_renesas_glcdc.h │ │ ├── st7735 │ │ │ ├── lv_st7735.c │ │ │ └── lv_st7735.h │ │ ├── st7789 │ │ │ ├── lv_st7789.c │ │ │ └── lv_st7789.h │ │ ├── st7796 │ │ │ ├── lv_st7796.c │ │ │ └── lv_st7796.h │ │ ├── st_ltdc │ │ │ ├── lv_st_ltdc.c │ │ │ └── lv_st_ltdc.h │ │ └── tft_espi │ │ │ ├── lv_tft_espi.cpp │ │ │ └── lv_tft_espi.h │ ├── evdev │ │ ├── lv_evdev.c │ │ ├── lv_evdev.h │ │ └── lv_evdev_private.h │ ├── glfw │ │ ├── lv_glfw_window.c │ │ ├── lv_glfw_window.h │ │ ├── lv_glfw_window_private.h │ │ ├── lv_opengles_debug.c │ │ ├── lv_opengles_debug.h │ │ ├── lv_opengles_driver.c │ │ ├── lv_opengles_driver.h │ │ ├── lv_opengles_texture.c │ │ └── lv_opengles_texture.h │ ├── libinput │ │ ├── lv_libinput.c │ │ ├── lv_libinput.h │ │ ├── lv_libinput_private.h │ │ ├── lv_xkb.c │ │ ├── lv_xkb.h │ │ └── lv_xkb_private.h │ ├── lv_drivers.h │ ├── nuttx │ │ ├── lv_nuttx_cache.c │ │ ├── lv_nuttx_cache.h │ │ ├── lv_nuttx_entry.c │ │ ├── lv_nuttx_entry.h │ │ ├── lv_nuttx_fbdev.c │ │ ├── lv_nuttx_fbdev.h │ │ ├── lv_nuttx_image_cache.c │ │ ├── lv_nuttx_image_cache.h │ │ ├── lv_nuttx_lcd.c │ │ ├── lv_nuttx_lcd.h │ │ ├── lv_nuttx_libuv.c │ │ ├── lv_nuttx_libuv.h │ │ ├── lv_nuttx_mouse.c │ │ ├── lv_nuttx_mouse.h │ │ ├── lv_nuttx_profiler.c │ │ ├── lv_nuttx_profiler.h │ │ ├── lv_nuttx_touchscreen.c │ │ └── lv_nuttx_touchscreen.h │ ├── qnx │ │ ├── lv_qnx.c │ │ └── lv_qnx.h │ ├── sdl │ │ ├── lv_sdl_keyboard.c │ │ ├── lv_sdl_keyboard.h │ │ ├── lv_sdl_mouse.c │ │ ├── lv_sdl_mouse.h │ │ ├── lv_sdl_mousewheel.c │ │ ├── lv_sdl_mousewheel.h │ │ ├── lv_sdl_private.h │ │ ├── lv_sdl_window.c │ │ └── lv_sdl_window.h │ ├── uefi │ │ ├── lv_uefi.h │ │ ├── lv_uefi_context.c │ │ ├── lv_uefi_context.h │ │ ├── lv_uefi_display.c │ │ ├── lv_uefi_display.h │ │ ├── lv_uefi_edk2.h │ │ ├── lv_uefi_gnu_efi.h │ │ ├── lv_uefi_indev.h │ │ ├── lv_uefi_indev_keyboard.c │ │ ├── lv_uefi_indev_pointer.c │ │ ├── lv_uefi_indev_touch.c │ │ ├── lv_uefi_private.c │ │ ├── lv_uefi_private.h │ │ └── lv_uefi_std_wrapper.h │ ├── wayland │ │ ├── lv_wayland.c │ │ ├── lv_wayland.h │ │ ├── lv_wayland_private.h │ │ ├── lv_wayland_smm.c │ │ ├── lv_wayland_smm.h │ │ ├── lv_wl_cache.c │ │ ├── lv_wl_dmabuf.c │ │ ├── lv_wl_keyboard.c │ │ ├── lv_wl_keyboard.h │ │ ├── lv_wl_pointer.c │ │ ├── lv_wl_pointer.h │ │ ├── lv_wl_pointer_axis.c │ │ ├── lv_wl_pointer_axis.h │ │ ├── lv_wl_seat.c │ │ ├── lv_wl_shell.c │ │ ├── lv_wl_shm.c │ │ ├── lv_wl_touch.c │ │ ├── lv_wl_touch.h │ │ ├── lv_wl_window.c │ │ ├── lv_wl_window.h │ │ ├── lv_wl_window_decorations.c │ │ └── lv_wl_xdg_shell.c │ ├── windows │ │ ├── lv_windows_context.c │ │ ├── lv_windows_context.h │ │ ├── lv_windows_display.c │ │ ├── lv_windows_display.h │ │ ├── lv_windows_input.c │ │ ├── lv_windows_input.h │ │ └── lv_windows_input_private.h │ └── x11 │ │ ├── lv_x11.h │ │ ├── lv_x11_display.c │ │ └── lv_x11_input.c ├── font │ ├── lv_binfont_loader.c │ ├── lv_binfont_loader.h │ ├── lv_font.c │ ├── lv_font.h │ ├── lv_font_dejavu_16_persian_hebrew.c │ ├── lv_font_fmt_txt.c │ ├── lv_font_fmt_txt.h │ ├── lv_font_fmt_txt_private.h │ ├── lv_font_montserrat_10.c │ ├── lv_font_montserrat_12.c │ ├── lv_font_montserrat_14.c │ ├── lv_font_montserrat_14_aligned.c │ ├── lv_font_montserrat_16.c │ ├── lv_font_montserrat_18.c │ ├── lv_font_montserrat_20.c │ ├── lv_font_montserrat_22.c │ ├── lv_font_montserrat_24.c │ ├── lv_font_montserrat_26.c │ ├── lv_font_montserrat_28.c │ ├── lv_font_montserrat_28_compressed.c │ ├── lv_font_montserrat_30.c │ ├── lv_font_montserrat_32.c │ ├── lv_font_montserrat_34.c │ ├── lv_font_montserrat_36.c │ ├── lv_font_montserrat_38.c │ ├── lv_font_montserrat_40.c │ ├── lv_font_montserrat_42.c │ ├── lv_font_montserrat_44.c │ ├── lv_font_montserrat_46.c │ ├── lv_font_montserrat_48.c │ ├── lv_font_montserrat_8.c │ ├── lv_font_simsun_14_cjk.c │ ├── lv_font_simsun_16_cjk.c │ ├── lv_font_source_han_sans_sc_14_cjk.c │ ├── lv_font_source_han_sans_sc_16_cjk.c │ ├── lv_font_unscii_16.c │ ├── lv_font_unscii_8.c │ └── lv_symbol_def.h ├── indev │ ├── lv_indev.c │ ├── lv_indev.h │ ├── lv_indev_gesture.c │ ├── lv_indev_gesture.h │ ├── lv_indev_gesture_private.h │ ├── lv_indev_private.h │ ├── lv_indev_scroll.c │ └── lv_indev_scroll.h ├── layouts │ ├── flex │ │ ├── lv_flex.c │ │ └── lv_flex.h │ ├── grid │ │ ├── lv_grid.c │ │ └── lv_grid.h │ ├── lv_layout.c │ ├── lv_layout.h │ └── lv_layout_private.h ├── libs │ ├── barcode │ │ ├── LICENSE.txt │ │ ├── code128.c │ │ ├── code128.h │ │ ├── lv_barcode.c │ │ ├── lv_barcode.h │ │ └── lv_barcode_private.h │ ├── bin_decoder │ │ ├── lv_bin_decoder.c │ │ └── lv_bin_decoder.h │ ├── bmp │ │ ├── lv_bmp.c │ │ └── lv_bmp.h │ ├── expat │ │ ├── LICENSE.txt │ │ ├── add_lvgl_if.sh │ │ ├── ascii.h │ │ ├── asciitab.h │ │ ├── expat.h │ │ ├── expat_config.h │ │ ├── expat_external.h │ │ ├── iasciitab.h │ │ ├── internal.h │ │ ├── latin1tab.h │ │ ├── nametab.h │ │ ├── siphash.h │ │ ├── utf8tab.h │ │ ├── winconfig.h │ │ ├── xmlparse.c │ │ ├── xmlrole.c │ │ ├── xmlrole.h │ │ ├── xmltok.c │ │ ├── xmltok.h │ │ ├── xmltok_impl.c │ │ ├── xmltok_impl.h │ │ └── xmltok_ns.c │ ├── ffmpeg │ │ ├── lv_ffmpeg.c │ │ ├── lv_ffmpeg.h │ │ └── lv_ffmpeg_private.h │ ├── freetype │ │ ├── LICENSE.txt │ │ ├── arial.ttf │ │ ├── ftmodule.h │ │ ├── ftoption.h │ │ ├── lv_freetype.c │ │ ├── lv_freetype.h │ │ ├── lv_freetype_glyph.c │ │ ├── lv_freetype_image.c │ │ ├── lv_freetype_outline.c │ │ ├── lv_freetype_private.h │ │ └── lv_ftsystem.c │ ├── fsdrv │ │ ├── lv_fs_arduino_esp_littlefs.cpp │ │ ├── lv_fs_arduino_sd.cpp │ │ ├── lv_fs_cbfs.c │ │ ├── lv_fs_fatfs.c │ │ ├── lv_fs_littlefs.c │ │ ├── lv_fs_memfs.c │ │ ├── lv_fs_posix.c │ │ ├── lv_fs_stdio.c │ │ ├── lv_fs_uefi.c │ │ ├── lv_fs_win32.c │ │ └── lv_fsdrv.h │ ├── gif │ │ ├── LICENSE.txt │ │ ├── gifdec.c │ │ ├── gifdec.h │ │ ├── gifdec_mve.h │ │ ├── lv_gif.c │ │ ├── lv_gif.h │ │ └── lv_gif_private.h │ ├── libjpeg_turbo │ │ ├── lv_libjpeg_turbo.c │ │ └── lv_libjpeg_turbo.h │ ├── libpng │ │ ├── lv_libpng.c │ │ └── lv_libpng.h │ ├── lodepng │ │ ├── LICENSE.txt │ │ ├── lodepng.c │ │ ├── lodepng.h │ │ ├── lv_lodepng.c │ │ └── lv_lodepng.h │ ├── lz4 │ │ ├── LICENSE.txt │ │ ├── lz4.c │ │ └── lz4.h │ ├── qrcode │ │ ├── LICENSE.txt │ │ ├── lv_qrcode.c │ │ ├── lv_qrcode.h │ │ ├── lv_qrcode_private.h │ │ ├── qrcodegen.c │ │ └── qrcodegen.h │ ├── rle │ │ ├── lv_rle.c │ │ └── lv_rle.h │ ├── rlottie │ │ ├── lv_rlottie.c │ │ ├── lv_rlottie.h │ │ └── lv_rlottie_private.h │ ├── svg │ │ ├── lv_svg.c │ │ ├── lv_svg.h │ │ ├── lv_svg_decoder.c │ │ ├── lv_svg_decoder.h │ │ ├── lv_svg_parser.c │ │ ├── lv_svg_parser.h │ │ ├── lv_svg_render.c │ │ ├── lv_svg_render.h │ │ ├── lv_svg_token.c │ │ └── lv_svg_token.h │ ├── thorvg │ │ ├── LICENSE.txt │ │ ├── add_lvgl_if.sh │ │ ├── config.h │ │ ├── rapidjson │ │ │ ├── allocators.h │ │ │ ├── cursorstreamwrapper.h │ │ │ ├── document.h │ │ │ ├── encodedstream.h │ │ │ ├── encodings.h │ │ │ ├── error │ │ │ │ ├── en.h │ │ │ │ └── error.h │ │ │ ├── filereadstream.h │ │ │ ├── filewritestream.h │ │ │ ├── fwd.h │ │ │ ├── internal │ │ │ │ ├── biginteger.h │ │ │ │ ├── clzll.h │ │ │ │ ├── diyfp.h │ │ │ │ ├── dtoa.h │ │ │ │ ├── ieee754.h │ │ │ │ ├── itoa.h │ │ │ │ ├── meta.h │ │ │ │ ├── pow10.h │ │ │ │ ├── regex.h │ │ │ │ ├── stack.h │ │ │ │ ├── strfunc.h │ │ │ │ ├── strtod.h │ │ │ │ └── swap.h │ │ │ ├── istreamwrapper.h │ │ │ ├── memorybuffer.h │ │ │ ├── memorystream.h │ │ │ ├── msinttypes │ │ │ │ ├── inttypes.h │ │ │ │ └── stdint.h │ │ │ ├── ostreamwrapper.h │ │ │ ├── pointer.h │ │ │ ├── prettywriter.h │ │ │ ├── rapidjson.h │ │ │ ├── reader.h │ │ │ ├── schema.h │ │ │ ├── stream.h │ │ │ ├── stringbuffer.h │ │ │ ├── uri.h │ │ │ └── writer.h │ │ ├── thorvg.h │ │ ├── thorvg_capi.h │ │ ├── thorvg_lottie.h │ │ ├── tvgAccessor.cpp │ │ ├── tvgAnimation.cpp │ │ ├── tvgAnimation.h │ │ ├── tvgArray.h │ │ ├── tvgBinaryDesc.h │ │ ├── tvgCanvas.cpp │ │ ├── tvgCanvas.h │ │ ├── tvgCapi.cpp │ │ ├── tvgCommon.h │ │ ├── tvgCompressor.cpp │ │ ├── tvgCompressor.h │ │ ├── tvgFill.cpp │ │ ├── tvgFill.h │ │ ├── tvgFrameModule.h │ │ ├── tvgGlCanvas.cpp │ │ ├── tvgInitializer.cpp │ │ ├── tvgInlist.h │ │ ├── tvgIteratorAccessor.h │ │ ├── tvgLoadModule.h │ │ ├── tvgLoader.cpp │ │ ├── tvgLoader.h │ │ ├── tvgLock.h │ │ ├── tvgLottieAnimation.cpp │ │ ├── tvgLottieBuilder.cpp │ │ ├── tvgLottieBuilder.h │ │ ├── tvgLottieCommon.h │ │ ├── tvgLottieExpressions.cpp │ │ ├── tvgLottieExpressions.h │ │ ├── tvgLottieInterpolator.cpp │ │ ├── tvgLottieInterpolator.h │ │ ├── tvgLottieLoader.cpp │ │ ├── tvgLottieLoader.h │ │ ├── tvgLottieModel.cpp │ │ ├── tvgLottieModel.h │ │ ├── tvgLottieModifier.cpp │ │ ├── tvgLottieModifier.h │ │ ├── tvgLottieParser.cpp │ │ ├── tvgLottieParser.h │ │ ├── tvgLottieParserHandler.cpp │ │ ├── tvgLottieParserHandler.h │ │ ├── tvgLottieProperty.h │ │ ├── tvgLottieRenderPooler.h │ │ ├── tvgMath.cpp │ │ ├── tvgMath.h │ │ ├── tvgPaint.cpp │ │ ├── tvgPaint.h │ │ ├── tvgPicture.cpp │ │ ├── tvgPicture.h │ │ ├── tvgRawLoader.cpp │ │ ├── tvgRawLoader.h │ │ ├── tvgRender.cpp │ │ ├── tvgRender.h │ │ ├── tvgSaveModule.h │ │ ├── tvgSaver.cpp │ │ ├── tvgScene.cpp │ │ ├── tvgScene.h │ │ ├── tvgShape.cpp │ │ ├── tvgShape.h │ │ ├── tvgStr.cpp │ │ ├── tvgStr.h │ │ ├── tvgSvgCssStyle.cpp │ │ ├── tvgSvgCssStyle.h │ │ ├── tvgSvgLoader.cpp │ │ ├── tvgSvgLoader.h │ │ ├── tvgSvgLoaderCommon.h │ │ ├── tvgSvgPath.cpp │ │ ├── tvgSvgPath.h │ │ ├── tvgSvgSceneBuilder.cpp │ │ ├── tvgSvgSceneBuilder.h │ │ ├── tvgSvgUtil.cpp │ │ ├── tvgSvgUtil.h │ │ ├── tvgSwCanvas.cpp │ │ ├── tvgSwCommon.h │ │ ├── tvgSwFill.cpp │ │ ├── tvgSwImage.cpp │ │ ├── tvgSwMath.cpp │ │ ├── tvgSwMemPool.cpp │ │ ├── tvgSwPostEffect.cpp │ │ ├── tvgSwRaster.cpp │ │ ├── tvgSwRasterAvx.h │ │ ├── tvgSwRasterC.h │ │ ├── tvgSwRasterNeon.h │ │ ├── tvgSwRasterTexmap.h │ │ ├── tvgSwRenderer.cpp │ │ ├── tvgSwRenderer.h │ │ ├── tvgSwRle.cpp │ │ ├── tvgSwShape.cpp │ │ ├── tvgSwStroke.cpp │ │ ├── tvgTaskScheduler.cpp │ │ ├── tvgTaskScheduler.h │ │ ├── tvgText.cpp │ │ ├── tvgText.h │ │ ├── tvgWgCanvas.cpp │ │ ├── tvgXmlParser.cpp │ │ └── tvgXmlParser.h │ ├── tiny_ttf │ │ ├── LICENSE.txt │ │ ├── lv_tiny_ttf.c │ │ ├── lv_tiny_ttf.h │ │ ├── stb_rect_pack.h │ │ └── stb_truetype_htcw.h │ └── tjpgd │ │ ├── LICENSE.txt │ │ ├── lv_tjpgd.c │ │ ├── lv_tjpgd.h │ │ ├── tjpgd.c │ │ ├── tjpgd.h │ │ └── tjpgdcnf.h ├── lv_api_map_v8.h ├── lv_api_map_v9_0.h ├── lv_api_map_v9_1.h ├── lv_api_map_v9_2.h ├── lv_conf_internal.h ├── lv_conf_kconfig.h ├── lv_init.c ├── lv_init.h ├── lvgl.h ├── lvgl_private.h ├── misc │ ├── cache │ │ ├── class │ │ │ ├── lv_cache_class.h │ │ │ ├── lv_cache_lru_ll.c │ │ │ ├── lv_cache_lru_ll.h │ │ │ ├── lv_cache_lru_rb.c │ │ │ └── lv_cache_lru_rb.h │ │ ├── instance │ │ │ ├── lv_cache_instance.h │ │ │ ├── lv_image_cache.c │ │ │ ├── lv_image_cache.h │ │ │ ├── lv_image_header_cache.c │ │ │ └── lv_image_header_cache.h │ │ ├── lv_cache.c │ │ ├── lv_cache.h │ │ ├── lv_cache_entry.c │ │ ├── lv_cache_entry.h │ │ ├── lv_cache_entry_private.h │ │ └── lv_cache_private.h │ ├── lv_anim.c │ ├── lv_anim.h │ ├── lv_anim_private.h │ ├── lv_anim_timeline.c │ ├── lv_anim_timeline.h │ ├── lv_area.c │ ├── lv_area.h │ ├── lv_area_private.h │ ├── lv_array.c │ ├── lv_array.h │ ├── lv_assert.c │ ├── lv_assert.h │ ├── lv_async.c │ ├── lv_async.h │ ├── lv_bidi.c │ ├── lv_bidi.h │ ├── lv_bidi_private.h │ ├── lv_circle_buf.c │ ├── lv_circle_buf.h │ ├── lv_color.c │ ├── lv_color.h │ ├── lv_color_op.c │ ├── lv_color_op.h │ ├── lv_color_op_private.h │ ├── lv_event.c │ ├── lv_event.h │ ├── lv_event_private.h │ ├── lv_fs.c │ ├── lv_fs.h │ ├── lv_fs_private.h │ ├── lv_grad.c │ ├── lv_grad.h │ ├── lv_iter.c │ ├── lv_iter.h │ ├── lv_ll.c │ ├── lv_ll.h │ ├── lv_log.c │ ├── lv_log.h │ ├── lv_lru.c │ ├── lv_lru.h │ ├── lv_math.c │ ├── lv_math.h │ ├── lv_matrix.c │ ├── lv_matrix.h │ ├── lv_palette.c │ ├── lv_palette.h │ ├── lv_profiler.h │ ├── lv_profiler_builtin.c │ ├── lv_profiler_builtin.h │ ├── lv_profiler_builtin_private.h │ ├── lv_rb.c │ ├── lv_rb.h │ ├── lv_rb_private.h │ ├── lv_style.c │ ├── lv_style.h │ ├── lv_style_gen.c │ ├── lv_style_gen.h │ ├── lv_style_private.h │ ├── lv_templ.c │ ├── lv_templ.h │ ├── lv_text.c │ ├── lv_text.h │ ├── lv_text_ap.c │ ├── lv_text_ap.h │ ├── lv_text_private.h │ ├── lv_timer.c │ ├── lv_timer.h │ ├── lv_timer_private.h │ ├── lv_tree.c │ ├── lv_tree.h │ ├── lv_types.h │ ├── lv_utils.c │ └── lv_utils.h ├── osal │ ├── lv_cmsis_rtos2.c │ ├── lv_cmsis_rtos2.h │ ├── lv_freertos.c │ ├── lv_freertos.h │ ├── lv_linux.c │ ├── lv_linux_private.h │ ├── lv_mqx.c │ ├── lv_mqx.h │ ├── lv_os.c │ ├── lv_os.h │ ├── lv_os_none.c │ ├── lv_os_none.h │ ├── lv_os_private.h │ ├── lv_pthread.c │ ├── lv_pthread.h │ ├── lv_rtthread.c │ ├── lv_rtthread.h │ ├── lv_sdl2.c │ ├── lv_sdl2.h │ ├── lv_windows.c │ └── lv_windows.h ├── others │ ├── file_explorer │ │ ├── lv_file_explorer.c │ │ ├── lv_file_explorer.h │ │ └── lv_file_explorer_private.h │ ├── font_manager │ │ ├── lv_font_manager.c │ │ ├── lv_font_manager.h │ │ ├── lv_font_manager_recycle.c │ │ └── lv_font_manager_recycle.h │ ├── fragment │ │ ├── README.md │ │ ├── lv_fragment.c │ │ ├── lv_fragment.h │ │ ├── lv_fragment_manager.c │ │ └── lv_fragment_private.h │ ├── gridnav │ │ ├── lv_gridnav.c │ │ └── lv_gridnav.h │ ├── ime │ │ ├── lv_ime_pinyin.c │ │ ├── lv_ime_pinyin.h │ │ └── lv_ime_pinyin_private.h │ ├── imgfont │ │ ├── lv_imgfont.c │ │ └── lv_imgfont.h │ ├── monkey │ │ ├── lv_monkey.c │ │ ├── lv_monkey.h │ │ └── lv_monkey_private.h │ ├── observer │ │ ├── lv_observer.c │ │ ├── lv_observer.h │ │ └── lv_observer_private.h │ ├── snapshot │ │ ├── lv_snapshot.c │ │ └── lv_snapshot.h │ ├── sysmon │ │ ├── lv_sysmon.c │ │ ├── lv_sysmon.h │ │ └── lv_sysmon_private.h │ ├── test │ │ ├── lv_test.h │ │ ├── lv_test_display.c │ │ ├── lv_test_display.h │ │ ├── lv_test_helpers.c │ │ ├── lv_test_helpers.h │ │ ├── lv_test_indev.c │ │ ├── lv_test_indev.h │ │ ├── lv_test_indev_gesture.c │ │ ├── lv_test_indev_gesture.h │ │ ├── lv_test_private.h │ │ ├── lv_test_screenshot_compare.c │ │ └── lv_test_screenshot_compare.h │ ├── translation │ │ ├── lv_translation.c │ │ ├── lv_translation.h │ │ └── lv_translation_private.h │ ├── vg_lite_tvg │ │ ├── vg_lite.h │ │ ├── vg_lite_matrix.c │ │ └── vg_lite_tvg.cpp │ └── xml │ │ ├── lv_xml.c │ │ ├── lv_xml.h │ │ ├── lv_xml_base_types.c │ │ ├── lv_xml_base_types.h │ │ ├── lv_xml_component.c │ │ ├── lv_xml_component.h │ │ ├── lv_xml_component_private.h │ │ ├── lv_xml_parser.c │ │ ├── lv_xml_parser.h │ │ ├── lv_xml_private.h │ │ ├── lv_xml_style.c │ │ ├── lv_xml_style.h │ │ ├── lv_xml_test.c │ │ ├── lv_xml_test.h │ │ ├── lv_xml_translation.c │ │ ├── lv_xml_translation.h │ │ ├── lv_xml_update.c │ │ ├── lv_xml_update.h │ │ ├── lv_xml_utils.c │ │ ├── lv_xml_utils.h │ │ ├── lv_xml_widget.c │ │ ├── lv_xml_widget.h │ │ └── parsers │ │ ├── lv_xml_arc_parser.c │ │ ├── lv_xml_arc_parser.h │ │ ├── lv_xml_bar_parser.c │ │ ├── lv_xml_bar_parser.h │ │ ├── lv_xml_button_parser.c │ │ ├── lv_xml_button_parser.h │ │ ├── lv_xml_buttonmatrix_parser.c │ │ ├── lv_xml_buttonmatrix_parser.h │ │ ├── lv_xml_calendar_parser.c │ │ ├── lv_xml_calendar_parser.h │ │ ├── lv_xml_canvas_parser.c │ │ ├── lv_xml_canvas_parser.h │ │ ├── lv_xml_chart_parser.c │ │ ├── lv_xml_chart_parser.h │ │ ├── lv_xml_checkbox_parser.c │ │ ├── lv_xml_checkbox_parser.h │ │ ├── lv_xml_dropdown_parser.c │ │ ├── lv_xml_dropdown_parser.h │ │ ├── lv_xml_image_parser.c │ │ ├── lv_xml_image_parser.h │ │ ├── lv_xml_keyboard_parser.c │ │ ├── lv_xml_keyboard_parser.h │ │ ├── lv_xml_label_parser.c │ │ ├── lv_xml_label_parser.h │ │ ├── lv_xml_obj_parser.c │ │ ├── lv_xml_obj_parser.h │ │ ├── lv_xml_roller_parser.c │ │ ├── lv_xml_roller_parser.h │ │ ├── lv_xml_scale_parser.c │ │ ├── lv_xml_scale_parser.h │ │ ├── lv_xml_slider_parser.c │ │ ├── lv_xml_slider_parser.h │ │ ├── lv_xml_spangroup_parser.c │ │ ├── lv_xml_spangroup_parser.h │ │ ├── lv_xml_table_parser.c │ │ ├── lv_xml_table_parser.h │ │ ├── lv_xml_tabview_parser.c │ │ ├── lv_xml_tabview_parser.h │ │ ├── lv_xml_textarea_parser.c │ │ └── lv_xml_textarea_parser.h ├── stdlib │ ├── builtin │ │ ├── LICENSE_SPRINTF.txt │ │ ├── LICENSE_TLSF.txt │ │ ├── lv_mem_core_builtin.c │ │ ├── lv_sprintf_builtin.c │ │ ├── lv_string_builtin.c │ │ ├── lv_tlsf.c │ │ ├── lv_tlsf.h │ │ └── lv_tlsf_private.h │ ├── clib │ │ ├── lv_mem_core_clib.c │ │ ├── lv_sprintf_clib.c │ │ └── lv_string_clib.c │ ├── lv_mem.c │ ├── lv_mem.h │ ├── lv_mem_private.h │ ├── lv_sprintf.h │ ├── lv_string.h │ ├── micropython │ │ └── lv_mem_core_micropython.c │ ├── rtthread │ │ ├── lv_mem_core_rtthread.c │ │ ├── lv_sprintf_rtthread.c │ │ └── lv_string_rtthread.c │ └── uefi │ │ └── lv_mem_core_uefi.c ├── themes │ ├── default │ │ ├── lv_theme_default.c │ │ └── lv_theme_default.h │ ├── lv_theme.c │ ├── lv_theme.h │ ├── lv_theme_private.h │ ├── mono │ │ ├── lv_theme_mono.c │ │ └── lv_theme_mono.h │ └── simple │ │ ├── lv_theme_simple.c │ │ └── lv_theme_simple.h ├── tick │ ├── lv_tick.c │ ├── lv_tick.h │ └── lv_tick_private.h └── widgets │ ├── 3dtexture │ ├── lv_3dtexture.c │ ├── lv_3dtexture.h │ └── lv_3dtexture_private.h │ ├── animimage │ ├── lv_animimage.c │ ├── lv_animimage.h │ └── lv_animimage_private.h │ ├── arc │ ├── lv_arc.c │ ├── lv_arc.h │ └── lv_arc_private.h │ ├── arclabel │ ├── lv_arclabel.c │ ├── lv_arclabel.h │ └── lv_arclabel_private.h │ ├── bar │ ├── lv_bar.c │ ├── lv_bar.h │ └── lv_bar_private.h │ ├── button │ ├── lv_button.c │ ├── lv_button.h │ └── lv_button_private.h │ ├── buttonmatrix │ ├── lv_buttonmatrix.c │ ├── lv_buttonmatrix.h │ └── lv_buttonmatrix_private.h │ ├── calendar │ ├── lv_calendar.c │ ├── lv_calendar.h │ ├── lv_calendar_chinese.c │ ├── lv_calendar_chinese.h │ ├── lv_calendar_header_arrow.c │ ├── lv_calendar_header_arrow.h │ ├── lv_calendar_header_dropdown.c │ ├── lv_calendar_header_dropdown.h │ └── lv_calendar_private.h │ ├── canvas │ ├── lv_canvas.c │ ├── lv_canvas.h │ └── lv_canvas_private.h │ ├── chart │ ├── lv_chart.c │ ├── lv_chart.h │ └── lv_chart_private.h │ ├── checkbox │ ├── lv_checkbox.c │ ├── lv_checkbox.h │ └── lv_checkbox_private.h │ ├── dropdown │ ├── lv_dropdown.c │ ├── lv_dropdown.h │ └── lv_dropdown_private.h │ ├── image │ ├── lv_image.c │ ├── lv_image.h │ └── lv_image_private.h │ ├── imagebutton │ ├── lv_imagebutton.c │ ├── lv_imagebutton.h │ └── lv_imagebutton_private.h │ ├── keyboard │ ├── lv_keyboard.c │ ├── lv_keyboard.h │ └── lv_keyboard_private.h │ ├── label │ ├── lv_label.c │ ├── lv_label.h │ └── lv_label_private.h │ ├── led │ ├── lv_led.c │ ├── lv_led.h │ └── lv_led_private.h │ ├── line │ ├── lv_line.c │ ├── lv_line.h │ └── lv_line_private.h │ ├── list │ ├── lv_list.c │ └── lv_list.h │ ├── lottie │ ├── lv_lottie.c │ ├── lv_lottie.h │ └── lv_lottie_private.h │ ├── menu │ ├── lv_menu.c │ ├── lv_menu.h │ └── lv_menu_private.h │ ├── msgbox │ ├── lv_msgbox.c │ ├── lv_msgbox.h │ └── lv_msgbox_private.h │ ├── objx_templ │ ├── lv_objx_templ.c │ └── lv_objx_templ.h │ ├── property │ ├── lv_animimage_properties.c │ ├── lv_dropdown_properties.c │ ├── lv_image_properties.c │ ├── lv_keyboard_properties.c │ ├── lv_label_properties.c │ ├── lv_obj_properties.c │ ├── lv_obj_property_names.h │ ├── lv_roller_properties.c │ ├── lv_slider_properties.c │ ├── lv_style_properties.c │ ├── lv_style_properties.h │ └── lv_textarea_properties.c │ ├── roller │ ├── lv_roller.c │ ├── lv_roller.h │ └── lv_roller_private.h │ ├── scale │ ├── lv_scale.c │ ├── lv_scale.h │ └── lv_scale_private.h │ ├── slider │ ├── lv_slider.c │ ├── lv_slider.h │ └── lv_slider_private.h │ ├── span │ ├── lv_span.c │ ├── lv_span.h │ └── lv_span_private.h │ ├── spinbox │ ├── lv_spinbox.c │ ├── lv_spinbox.h │ └── lv_spinbox_private.h │ ├── spinner │ ├── lv_spinner.c │ └── lv_spinner.h │ ├── switch │ ├── lv_switch.c │ ├── lv_switch.h │ └── lv_switch_private.h │ ├── table │ ├── lv_table.c │ ├── lv_table.h │ └── lv_table_private.h │ ├── tabview │ ├── lv_tabview.c │ ├── lv_tabview.h │ └── lv_tabview_private.h │ ├── textarea │ ├── lv_textarea.c │ ├── lv_textarea.h │ └── lv_textarea_private.h │ ├── tileview │ ├── lv_tileview.c │ ├── lv_tileview.h │ └── lv_tileview_private.h │ └── win │ ├── lv_win.c │ ├── lv_win.h │ └── lv_win_private.h ├── tests ├── .gitignore ├── CMakeLists.txt ├── Dockerfile ├── FindLibDRM.cmake ├── README.md ├── benchmark_emu.py ├── config.yml ├── gen_json │ └── test_gen_json.py ├── main.py ├── makefile │ ├── .gitignore │ ├── Makefile │ └── test.c ├── makefile_uefi │ ├── .gitignore │ ├── Makefile │ ├── efi.h │ └── test.c ├── micropy_test │ ├── __init__.py │ ├── font_montserrat_24.ttf │ ├── image_compare.png │ ├── micropy.py │ └── test_img_lvgl_logo.png ├── perf.py ├── ref_imgs │ ├── align_flex_center1.png │ ├── align_flex_center2.png │ ├── align_flex_space_around1.png │ ├── align_flex_space_around2.png │ ├── align_flex_space_between1.png │ ├── align_flex_space_between2.png │ ├── align_flex_space_evenly1.png │ ├── align_flex_space_evenly2.png │ ├── binding.png │ ├── draw │ │ ├── bg_image_1.png │ │ ├── bin_image_stride1_LZ4_recolor.png │ │ ├── bin_image_stride1_LZ4_rotate.png │ │ ├── bin_image_stride1_LZ4_rotate_recolor.png │ │ ├── bin_image_stride1_LZ4_simple.png │ │ ├── bin_image_stride1_RLE_recolor.png │ │ ├── bin_image_stride1_RLE_rotate.png │ │ ├── bin_image_stride1_RLE_rotate_recolor.png │ │ ├── bin_image_stride1_RLE_simple.png │ │ ├── bin_image_stride1_UNCOMPRESSED_recolor.png │ │ ├── bin_image_stride1_UNCOMPRESSED_rotate.png │ │ ├── bin_image_stride1_UNCOMPRESSED_rotate_recolor.png │ │ ├── bin_image_stride1_UNCOMPRESSED_simple.png │ │ ├── bin_image_stride64_LZ4_recolor.png │ │ ├── bin_image_stride64_LZ4_rotate.png │ │ ├── bin_image_stride64_LZ4_rotate_recolor.png │ │ ├── bin_image_stride64_LZ4_simple.png │ │ ├── bin_image_stride64_RLE_recolor.png │ │ ├── bin_image_stride64_RLE_rotate.png │ │ ├── bin_image_stride64_RLE_rotate_recolor.png │ │ ├── bin_image_stride64_RLE_simple.png │ │ ├── bin_image_stride64_UNCOMPRESSED_recolor.png │ │ ├── bin_image_stride64_UNCOMPRESSED_rotate.png │ │ ├── bin_image_stride64_UNCOMPRESSED_rotate_recolor.png │ │ ├── bin_image_stride64_UNCOMPRESSED_simple.png │ │ ├── blend_to_argb8888.png │ │ ├── blend_to_rgb565.png │ │ ├── blend_to_rgb888.png │ │ ├── blend_to_xrgb8888.png │ │ ├── c_array_image_stride1_LZ4_recolor.png │ │ ├── c_array_image_stride1_LZ4_rotate.png │ │ ├── c_array_image_stride1_LZ4_rotate_recolor.png │ │ ├── c_array_image_stride1_LZ4_simple.png │ │ ├── c_array_image_stride1_RLE_recolor.png │ │ ├── c_array_image_stride1_RLE_rotate.png │ │ ├── c_array_image_stride1_RLE_rotate_recolor.png │ │ ├── c_array_image_stride1_RLE_simple.png │ │ ├── c_array_image_stride1_UNCOMPRESSED_recolor.png │ │ ├── c_array_image_stride1_UNCOMPRESSED_rotate.png │ │ ├── c_array_image_stride1_UNCOMPRESSED_rotate_recolor.png │ │ ├── c_array_image_stride1_UNCOMPRESSED_simple.png │ │ ├── c_array_image_stride64_LZ4_recolor.png │ │ ├── c_array_image_stride64_LZ4_rotate.png │ │ ├── c_array_image_stride64_LZ4_rotate_recolor.png │ │ ├── c_array_image_stride64_LZ4_simple.png │ │ ├── c_array_image_stride64_RLE_recolor.png │ │ ├── c_array_image_stride64_RLE_rotate.png │ │ ├── c_array_image_stride64_RLE_rotate_recolor.png │ │ ├── c_array_image_stride64_RLE_simple.png │ │ ├── c_array_image_stride64_UNCOMPRESSED_recolor.png │ │ ├── c_array_image_stride64_UNCOMPRESSED_rotate.png │ │ ├── c_array_image_stride64_UNCOMPRESSED_rotate_recolor.png │ │ ├── c_array_image_stride64_UNCOMPRESSED_simple.png │ │ ├── clip_corner_1.png │ │ ├── draw_layer_bitmap_mask.png │ │ ├── draw_layer_bitmap_mask_not_masked.png │ │ ├── draw_layer_dispatch.png │ │ ├── label_color.png │ │ ├── label_color_and_opa.png │ │ ├── label_decor.png │ │ ├── label_normal.png │ │ ├── label_opa.png │ │ ├── label_selection_and_recolor.png │ │ ├── layer_transform_1.png │ │ ├── layer_transform_2.png │ │ ├── letter_0.png │ │ ├── render │ │ │ ├── al88 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── argb8888 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── argb8888_premultiplied │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── i1 │ │ │ │ ├── demo_render_arc_image_opa_192.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_192.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_192.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_192.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_192.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_192.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_192.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_192.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_192.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_192.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_192.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_192.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_192.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_192.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_192.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_192.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_192.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_192.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_192.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── l8 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── rgb565 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── rgb565_swapped │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── rgb888 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ └── xrgb8888 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ ├── svg_draw_svg_com_1.lp32.png │ │ ├── svg_draw_svg_com_1.lp64.png │ │ ├── svg_draw_svg_com_2.lp32.png │ │ ├── svg_draw_svg_com_2.lp64.png │ │ ├── svg_draw_svg_com_3.lp32.png │ │ ├── svg_draw_svg_com_3.lp64.png │ │ ├── svg_draw_svg_com_4.lp32.png │ │ ├── svg_draw_svg_com_4.lp64.png │ │ ├── svg_draw_svg_com_5.lp32.png │ │ ├── svg_draw_svg_com_5.lp64.png │ │ ├── svg_draw_svg_com_6.lp32.png │ │ ├── svg_draw_svg_com_6.lp64.png │ │ ├── svg_draw_svg_com_7.lp32.png │ │ ├── svg_draw_svg_com_7.lp64.png │ │ ├── svg_draw_svg_com_8.lp32.png │ │ ├── svg_draw_svg_com_8.lp64.png │ │ ├── svg_draw_svg_group_1.lp32.png │ │ ├── svg_draw_svg_group_1.lp64.png │ │ ├── svg_draw_svg_group_2.lp32.png │ │ ├── svg_draw_svg_group_2.lp64.png │ │ ├── svg_draw_svg_group_3.lp32.png │ │ ├── svg_draw_svg_group_3.lp64.png │ │ ├── svg_draw_svg_group_4.lp32.png │ │ ├── svg_draw_svg_group_4.lp64.png │ │ ├── svg_draw_svg_image_0.lp32.png │ │ ├── svg_draw_svg_image_0.lp64.png │ │ ├── svg_draw_svg_image_1.lp32.png │ │ ├── svg_draw_svg_image_1.lp64.png │ │ ├── svg_draw_svg_image_10.lp32.png │ │ ├── svg_draw_svg_image_10.lp64.png │ │ ├── svg_draw_svg_image_11.lp32.png │ │ ├── svg_draw_svg_image_11.lp64.png │ │ ├── svg_draw_svg_image_12.lp32.png │ │ ├── svg_draw_svg_image_12.lp64.png │ │ ├── svg_draw_svg_image_2.lp32.png │ │ ├── svg_draw_svg_image_2.lp64.png │ │ ├── svg_draw_svg_image_3.lp32.png │ │ ├── svg_draw_svg_image_3.lp64.png │ │ ├── svg_draw_svg_image_4.lp32.png │ │ ├── svg_draw_svg_image_4.lp64.png │ │ ├── svg_draw_svg_image_5.lp32.png │ │ ├── svg_draw_svg_image_5.lp64.png │ │ ├── svg_draw_svg_image_6.lp32.png │ │ ├── svg_draw_svg_image_6.lp64.png │ │ ├── svg_draw_svg_image_7.lp32.png │ │ ├── svg_draw_svg_image_7.lp64.png │ │ ├── svg_draw_svg_image_8.lp32.png │ │ ├── svg_draw_svg_image_8.lp64.png │ │ ├── svg_draw_svg_image_9.lp32.png │ │ ├── svg_draw_svg_image_9.lp64.png │ │ ├── svg_draw_svg_shapes_1.lp32.png │ │ ├── svg_draw_svg_shapes_1.lp64.png │ │ ├── svg_draw_svg_shapes_10.lp32.png │ │ ├── svg_draw_svg_shapes_10.lp64.png │ │ ├── svg_draw_svg_shapes_11.lp32.png │ │ ├── svg_draw_svg_shapes_11.lp64.png │ │ ├── svg_draw_svg_shapes_2.lp32.png │ │ ├── svg_draw_svg_shapes_2.lp64.png │ │ ├── svg_draw_svg_shapes_3.lp32.png │ │ ├── svg_draw_svg_shapes_3.lp64.png │ │ ├── svg_draw_svg_shapes_4.lp32.png │ │ ├── svg_draw_svg_shapes_4.lp64.png │ │ ├── svg_draw_svg_shapes_5.lp32.png │ │ ├── svg_draw_svg_shapes_5.lp64.png │ │ ├── svg_draw_svg_shapes_6.lp32.png │ │ ├── svg_draw_svg_shapes_6.lp64.png │ │ ├── svg_draw_svg_shapes_7.lp32.png │ │ ├── svg_draw_svg_shapes_7.lp64.png │ │ ├── svg_draw_svg_shapes_8.lp32.png │ │ ├── svg_draw_svg_shapes_8.lp64.png │ │ ├── svg_draw_svg_shapes_9.lp32.png │ │ ├── svg_draw_svg_shapes_9.lp64.png │ │ ├── svg_draw_svg_text_1.lp32.png │ │ ├── svg_draw_svg_text_1.lp64.png │ │ ├── svg_draw_svg_text_2.lp32.png │ │ ├── svg_draw_svg_text_2.lp64.png │ │ ├── svg_draw_svg_viewport_1.lp32.png │ │ ├── svg_draw_svg_viewport_1.lp64.png │ │ ├── svg_draw_svg_viewport_2.lp32.png │ │ ├── svg_draw_svg_viewport_2.lp64.png │ │ ├── svg_draw_svg_viewport_3.lp32.png │ │ ├── svg_draw_svg_viewport_3.lp64.png │ │ ├── vector_draw_lines.lp32.png │ │ ├── vector_draw_lines.lp64.png │ │ ├── vector_draw_lines_during_rendering.lp32.png │ │ ├── vector_draw_lines_during_rendering.lp64.png │ │ ├── vector_draw_lines_opa_50_during_rendering.lp32.png │ │ ├── vector_draw_lines_opa_50_during_rendering.lp64.png │ │ ├── vector_draw_shapes.lp32.png │ │ ├── vector_draw_shapes.lp64.png │ │ ├── vector_draw_shapes_during_rendering.lp32.png │ │ ├── vector_draw_shapes_during_rendering.lp64.png │ │ ├── vector_draw_shapes_opa_50_during_rendering.lp32.png │ │ └── vector_draw_shapes_opa_50_during_rendering.lp64.png │ ├── flex_hide_items.png │ ├── flex_wrap_grow_min_width.png │ ├── font_loader_1.png │ ├── font_loader_2.png │ ├── font_loader_3.png │ ├── grid_fr.png │ ├── libs │ │ ├── barcode_1.png │ │ ├── barcode_2.png │ │ ├── barcode_tiled_1.png │ │ ├── barcode_tiled_2.png │ │ ├── bin_decoder_1.png │ │ ├── bin_decoder_2.png │ │ ├── bin_decoder_3.png │ │ ├── bin_decoder_4.png │ │ ├── bin_decoder_empty_image.png │ │ ├── bmp_1.png │ │ ├── bmp_2.png │ │ ├── ffmpeg_1.png │ │ ├── ffmpeg_player_error_file.png │ │ ├── ffmpeg_player_frame_0.png │ │ ├── ffmpeg_player_frame_1.png │ │ ├── ffmpeg_player_frame_2.png │ │ ├── ffmpeg_player_frame_3.png │ │ ├── font_manager_1.lp32.png │ │ ├── font_manager_1.lp64.png │ │ ├── font_manager_2.lp32.png │ │ ├── font_manager_2.lp64.png │ │ ├── font_manager_3.lp32.png │ │ ├── font_manager_3.lp64.png │ │ ├── font_manager_4.png │ │ ├── font_stress │ │ │ ├── snapshot_0.lp32.png │ │ │ ├── snapshot_0.lp64.png │ │ │ ├── snapshot_1.lp32.png │ │ │ ├── snapshot_1.lp64.png │ │ │ ├── snapshot_10.lp32.png │ │ │ ├── snapshot_10.lp64.png │ │ │ ├── snapshot_2.lp32.png │ │ │ ├── snapshot_2.lp64.png │ │ │ ├── snapshot_3.lp32.png │ │ │ ├── snapshot_3.lp64.png │ │ │ ├── snapshot_4.lp32.png │ │ │ ├── snapshot_4.lp64.png │ │ │ ├── snapshot_5.lp32.png │ │ │ ├── snapshot_5.lp64.png │ │ │ ├── snapshot_6.lp32.png │ │ │ ├── snapshot_6.lp64.png │ │ │ ├── snapshot_7.lp32.png │ │ │ ├── snapshot_7.lp64.png │ │ │ ├── snapshot_8.lp32.png │ │ │ ├── snapshot_8.lp64.png │ │ │ ├── snapshot_9.lp32.png │ │ │ └── snapshot_9.lp64.png │ │ ├── freetype_kerning_compare.lp64.png │ │ ├── freetype_no_kerning_info.lp64.png │ │ ├── freetype_render_bitmap.lp32.png │ │ ├── freetype_render_bitmap.lp64.png │ │ ├── jpg_1.png │ │ ├── jpg_2.png │ │ ├── jpg_3.png │ │ ├── png_1.png │ │ ├── qrcode_1.png │ │ ├── svg_decoder_1.lp32.png │ │ ├── svg_decoder_1.lp64.png │ │ ├── svg_decoder_2.lp32.png │ │ ├── svg_decoder_2.lp64.png │ │ ├── svg_decoder_3.lp32.png │ │ ├── svg_decoder_3.lp64.png │ │ ├── tiny_ttf_1.png │ │ ├── tiny_ttf_2.png │ │ └── tiny_ttf_3.png │ ├── margin_align_0.png │ ├── margin_align_1.png │ ├── margin_flex_0.png │ ├── margin_flex_1.png │ ├── margin_flex_2.png │ ├── margin_flex_3.png │ ├── margin_flex_4.png │ ├── margin_flex_5.png │ ├── margin_grid_0.png │ ├── recolor_1.png │ ├── snapshot_0.png │ ├── snapshot_1.png │ ├── snapshot_2.png │ ├── snapshot_3.png │ ├── subgrid_col.png │ ├── subgrid_row.png │ ├── widgets │ │ ├── arc_1.png │ │ ├── arc_2.png │ │ ├── arc_3.png │ │ ├── arclabel_0.lp32.png │ │ ├── arclabel_0.lp64.png │ │ ├── arclabel_1.lp32.png │ │ ├── arclabel_1.lp64.png │ │ ├── arclabel_2.lp32.png │ │ ├── arclabel_2.lp64.png │ │ ├── bar_1.png │ │ ├── bar_2.png │ │ ├── bar_3.png │ │ ├── bar_corner_1.png │ │ ├── bar_corner_2.png │ │ ├── bar_corner_3.png │ │ ├── bar_corner_4.png │ │ ├── bar_corner_5.png │ │ ├── bar_corner_6.png │ │ ├── btnm_1.png │ │ ├── btnm_2.png │ │ ├── calendar_01.png │ │ ├── calendar_02.png │ │ ├── calendar_03.png │ │ ├── calendar_04.png │ │ ├── calendar_05.png │ │ ├── calendar_06.png │ │ ├── calendar_07.png │ │ ├── calendar_08.png │ │ ├── calendar_09.png │ │ ├── canvas_1.png │ │ ├── chart_bar_draw_hook.png │ │ ├── chart_line_draw_hook.png │ │ ├── chart_scatter.png │ │ ├── checkbox_1.png │ │ ├── checkbox_rtl_1.png │ │ ├── dropdown_1.png │ │ ├── dropdown_2.png │ │ ├── image_clip_radius_20.png │ │ ├── image_clip_radius_circle.png │ │ ├── image_clip_radius_circle_scaled_rotated.png │ │ ├── image_contain.png │ │ ├── image_cover.png │ │ ├── image_normal_align.png │ │ ├── image_normal_align_offset.png │ │ ├── image_rotate_and_scale_pivot_center.png │ │ ├── image_rotate_and_scale_pivot_top_left.png │ │ ├── image_rotate_pivot_center.png │ │ ├── image_rotate_pivot_top_left.png │ │ ├── image_scale_pivot_center.png │ │ ├── image_scale_pivot_top_left.png │ │ ├── image_scale_x_pivot_center.png │ │ ├── image_scale_x_pivot_top_left.png │ │ ├── image_scale_y_pivot_center.png │ │ ├── image_scale_y_pivot_top_left.png │ │ ├── image_stretch.png │ │ ├── image_symbol_normal_align.png │ │ ├── image_symbol_normal_align_offset.png │ │ ├── image_tile.png │ │ ├── image_transform_align.png │ │ ├── image_transform_align_offset.png │ │ ├── imagebutton_1.png │ │ ├── imgfont_1.png │ │ ├── keyboard_1.png │ │ ├── keyboard_2.png │ │ ├── keyboard_3.png │ │ ├── keyboard_4.png │ │ ├── label_max_width.png │ │ ├── label_recolor.png │ │ ├── label_rtl_dot_long_mode.png │ │ ├── label_scroll_0.png │ │ ├── label_scroll_1.png │ │ ├── label_scroll_10.png │ │ ├── label_scroll_11.png │ │ ├── label_scroll_12.png │ │ ├── label_scroll_13.png │ │ ├── label_scroll_14.png │ │ ├── label_scroll_15.png │ │ ├── label_scroll_16.png │ │ ├── label_scroll_17.png │ │ ├── label_scroll_18.png │ │ ├── label_scroll_19.png │ │ ├── label_scroll_2.png │ │ ├── label_scroll_3.png │ │ ├── label_scroll_4.png │ │ ├── label_scroll_5.png │ │ ├── label_scroll_6.png │ │ ├── label_scroll_7.png │ │ ├── label_scroll_8.png │ │ ├── label_scroll_9.png │ │ ├── label_wrap_clip.png │ │ ├── led_1.png │ │ ├── line_1.png │ │ ├── line_2.png │ │ ├── list_1.png │ │ ├── lottie_1.png │ │ ├── lottie_2.png │ │ ├── lottie_2_small.png │ │ ├── lottie_3.png │ │ ├── lottie_3_small.png │ │ ├── lottie_4.png │ │ ├── msgbox_ok_no_close_btn.png │ │ ├── msgbox_ok_with_close_btn.png │ │ ├── obj_flag_overflow_visible_1_1.png │ │ ├── obj_flag_overflow_visible_1_2.png │ │ ├── obj_flag_overflow_visible_1_3.png │ │ ├── obj_flag_overflow_visible_1_4.png │ │ ├── overlapping_arcs_test.png │ │ ├── roller_2.png │ │ ├── roller_3.png │ │ ├── scale_1.png │ │ ├── scale_2.png │ │ ├── scale_3.png │ │ ├── scale_4.png │ │ ├── scale_5.png │ │ ├── scale_6.png │ │ ├── span_01.png │ │ ├── span_02.png │ │ ├── span_03.png │ │ ├── span_04.png │ │ ├── span_05.png │ │ ├── span_06.png │ │ ├── span_07.png │ │ ├── span_08.png │ │ ├── span_09.png │ │ ├── span_10.png │ │ ├── span_11.png │ │ ├── span_12.png │ │ ├── span_13.png │ │ ├── spinner_00.png │ │ ├── spinner_01.png │ │ ├── spinner_02.png │ │ ├── spinner_03.png │ │ ├── spinner_04.png │ │ ├── spinner_05.png │ │ ├── spinner_06.png │ │ ├── spinner_07.png │ │ ├── spinner_08.png │ │ ├── spinner_09.png │ │ ├── switch_1.png │ │ ├── table_1.png │ │ ├── tabview_01.png │ │ ├── tabview_02.png │ │ ├── tabview_03.png │ │ ├── tabview_04.png │ │ ├── tabview_05.png │ │ ├── tabview_06.png │ │ ├── tabview_07.png │ │ ├── tabview_08.png │ │ ├── tabview_09.png │ │ ├── tabview_10.png │ │ ├── win_01.png │ │ └── win_02.png │ └── xml │ │ ├── complex_1.png │ │ ├── component_create_1.png │ │ ├── consts_1.png │ │ ├── gradients.png │ │ ├── image_and_font_1.png │ │ ├── lv_arc.png │ │ ├── lv_bar.png │ │ ├── lv_buttonmatrix.png │ │ ├── lv_calendar.png │ │ ├── lv_canvas.png │ │ ├── lv_chart.png │ │ ├── lv_checkbox.png │ │ ├── lv_dropdown.png │ │ ├── lv_image.png │ │ ├── lv_keyboard.png │ │ ├── lv_label.png │ │ ├── lv_roller.png │ │ ├── lv_scale.png │ │ ├── lv_slider.png │ │ ├── lv_spangroup.png │ │ ├── lv_table.png │ │ ├── lv_tabview.png │ │ ├── lv_textarea.png │ │ ├── nested_1.png │ │ ├── params_1.png │ │ ├── styles_1.png │ │ ├── view2.png │ │ ├── view3.png │ │ └── widget_create_1.png ├── ref_imgs_vg_lite │ ├── align_flex_center1.png │ ├── align_flex_center2.png │ ├── align_flex_space_around1.png │ ├── align_flex_space_around2.png │ ├── align_flex_space_between1.png │ ├── align_flex_space_between2.png │ ├── align_flex_space_evenly1.png │ ├── align_flex_space_evenly2.png │ ├── binding.png │ ├── display_matrix_rotation_0.png │ ├── display_matrix_rotation_180.png │ ├── display_matrix_rotation_270.png │ ├── display_matrix_rotation_90.png │ ├── draw │ │ ├── bg_image_1.png │ │ ├── bin_image_stride1_LZ4_recolor.png │ │ ├── bin_image_stride1_LZ4_rotate.png │ │ ├── bin_image_stride1_LZ4_rotate_recolor.png │ │ ├── bin_image_stride1_LZ4_simple.png │ │ ├── bin_image_stride1_RLE_recolor.png │ │ ├── bin_image_stride1_RLE_rotate.png │ │ ├── bin_image_stride1_RLE_rotate_recolor.png │ │ ├── bin_image_stride1_RLE_simple.png │ │ ├── bin_image_stride1_UNCOMPRESSED_recolor.png │ │ ├── bin_image_stride1_UNCOMPRESSED_rotate.png │ │ ├── bin_image_stride1_UNCOMPRESSED_rotate_recolor.png │ │ ├── bin_image_stride1_UNCOMPRESSED_simple.png │ │ ├── bin_image_stride64_LZ4_recolor.png │ │ ├── bin_image_stride64_LZ4_rotate.png │ │ ├── bin_image_stride64_LZ4_rotate_recolor.png │ │ ├── bin_image_stride64_LZ4_simple.png │ │ ├── bin_image_stride64_RLE_recolor.png │ │ ├── bin_image_stride64_RLE_rotate.png │ │ ├── bin_image_stride64_RLE_rotate_recolor.png │ │ ├── bin_image_stride64_RLE_simple.png │ │ ├── bin_image_stride64_UNCOMPRESSED_recolor.png │ │ ├── bin_image_stride64_UNCOMPRESSED_rotate.png │ │ ├── bin_image_stride64_UNCOMPRESSED_rotate_recolor.png │ │ ├── bin_image_stride64_UNCOMPRESSED_simple.png │ │ ├── blend_to_argb8888.png │ │ ├── blend_to_rgb565.png │ │ ├── blend_to_rgb888.png │ │ ├── blend_to_xrgb8888.png │ │ ├── c_array_image_stride1_LZ4_recolor.png │ │ ├── c_array_image_stride1_LZ4_rotate.png │ │ ├── c_array_image_stride1_LZ4_rotate_recolor.png │ │ ├── c_array_image_stride1_LZ4_simple.png │ │ ├── c_array_image_stride1_RLE_recolor.png │ │ ├── c_array_image_stride1_RLE_rotate.png │ │ ├── c_array_image_stride1_RLE_rotate_recolor.png │ │ ├── c_array_image_stride1_RLE_simple.png │ │ ├── c_array_image_stride1_UNCOMPRESSED_recolor.png │ │ ├── c_array_image_stride1_UNCOMPRESSED_rotate.png │ │ ├── c_array_image_stride1_UNCOMPRESSED_rotate_recolor.png │ │ ├── c_array_image_stride1_UNCOMPRESSED_simple.png │ │ ├── c_array_image_stride64_LZ4_recolor.png │ │ ├── c_array_image_stride64_LZ4_rotate.png │ │ ├── c_array_image_stride64_LZ4_rotate_recolor.png │ │ ├── c_array_image_stride64_LZ4_simple.png │ │ ├── c_array_image_stride64_RLE_recolor.png │ │ ├── c_array_image_stride64_RLE_rotate.png │ │ ├── c_array_image_stride64_RLE_rotate_recolor.png │ │ ├── c_array_image_stride64_RLE_simple.png │ │ ├── c_array_image_stride64_UNCOMPRESSED_recolor.png │ │ ├── c_array_image_stride64_UNCOMPRESSED_rotate.png │ │ ├── c_array_image_stride64_UNCOMPRESSED_rotate_recolor.png │ │ ├── c_array_image_stride64_UNCOMPRESSED_simple.png │ │ ├── clip_corner_1.png │ │ ├── draw_layer_bitmap_mask.png │ │ ├── draw_layer_bitmap_mask_not_masked.png │ │ ├── draw_layer_dispatch.png │ │ ├── label_color.png │ │ ├── label_color_and_opa.png │ │ ├── label_decor.png │ │ ├── label_normal.png │ │ ├── label_opa.png │ │ ├── label_selection_and_recolor.png │ │ ├── layer_transform_1.png │ │ ├── layer_transform_2.png │ │ ├── letter_0.png │ │ ├── render │ │ │ ├── argb1555 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── argb2222 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── argb4444 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── argb8888 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── argb8888_premultiplied │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── l8 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── rgb565 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── rgb565_swapped │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ ├── rgb888 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ │ └── xrgb8888 │ │ │ │ ├── demo_render_arc_image_opa_128.png │ │ │ │ ├── demo_render_arc_image_opa_255.png │ │ │ │ ├── demo_render_arc_normal_opa_128.png │ │ │ │ ├── demo_render_arc_normal_opa_255.png │ │ │ │ ├── demo_render_blend_mode_opa_128.png │ │ │ │ ├── demo_render_blend_mode_opa_255.png │ │ │ │ ├── demo_render_border_opa_128.png │ │ │ │ ├── demo_render_border_opa_255.png │ │ │ │ ├── demo_render_box_shadow_opa_128.png │ │ │ │ ├── demo_render_box_shadow_opa_255.png │ │ │ │ ├── demo_render_conical_gradient_opa_128.png │ │ │ │ ├── demo_render_conical_gradient_opa_255.png │ │ │ │ ├── demo_render_fill_opa_128.png │ │ │ │ ├── demo_render_fill_opa_255.png │ │ │ │ ├── demo_render_image_normal_1_opa_128.png │ │ │ │ ├── demo_render_image_normal_1_opa_255.png │ │ │ │ ├── demo_render_image_normal_2_opa_128.png │ │ │ │ ├── demo_render_image_normal_2_opa_255.png │ │ │ │ ├── demo_render_image_normal_3_opa_128.png │ │ │ │ ├── demo_render_image_normal_3_opa_255.png │ │ │ │ ├── demo_render_image_recolor_1_opa_128.png │ │ │ │ ├── demo_render_image_recolor_1_opa_255.png │ │ │ │ ├── demo_render_image_recolor_2_opa_128.png │ │ │ │ ├── demo_render_image_recolor_2_opa_255.png │ │ │ │ ├── demo_render_image_recolor_3_opa_128.png │ │ │ │ ├── demo_render_image_recolor_3_opa_255.png │ │ │ │ ├── demo_render_layer_normal_opa_128.png │ │ │ │ ├── demo_render_layer_normal_opa_255.png │ │ │ │ ├── demo_render_line_opa_128.png │ │ │ │ ├── demo_render_line_opa_255.png │ │ │ │ ├── demo_render_linear_gradient_opa_128.png │ │ │ │ ├── demo_render_linear_gradient_opa_255.png │ │ │ │ ├── demo_render_radial_gradient_opa_128.png │ │ │ │ ├── demo_render_radial_gradient_opa_255.png │ │ │ │ ├── demo_render_text_opa_128.png │ │ │ │ ├── demo_render_text_opa_255.png │ │ │ │ ├── demo_render_triangle_opa_128.png │ │ │ │ └── demo_render_triangle_opa_255.png │ │ ├── svg_draw_svg_com_1.lp32.png │ │ ├── svg_draw_svg_com_1.lp64.png │ │ ├── svg_draw_svg_com_2.lp32.png │ │ ├── svg_draw_svg_com_2.lp64.png │ │ ├── svg_draw_svg_com_3.lp32.png │ │ ├── svg_draw_svg_com_3.lp64.png │ │ ├── svg_draw_svg_com_4.lp32.png │ │ ├── svg_draw_svg_com_4.lp64.png │ │ ├── svg_draw_svg_com_5.lp32.png │ │ ├── svg_draw_svg_com_5.lp64.png │ │ ├── svg_draw_svg_com_6.lp32.png │ │ ├── svg_draw_svg_com_6.lp64.png │ │ ├── svg_draw_svg_com_7.lp32.png │ │ ├── svg_draw_svg_com_7.lp64.png │ │ ├── svg_draw_svg_com_8.lp32.png │ │ ├── svg_draw_svg_com_8.lp64.png │ │ ├── svg_draw_svg_group_1.lp32.png │ │ ├── svg_draw_svg_group_1.lp64.png │ │ ├── svg_draw_svg_group_2.lp32.png │ │ ├── svg_draw_svg_group_2.lp64.png │ │ ├── svg_draw_svg_group_3.lp32.png │ │ ├── svg_draw_svg_group_3.lp64.png │ │ ├── svg_draw_svg_group_4.lp32.png │ │ ├── svg_draw_svg_group_4.lp64.png │ │ ├── svg_draw_svg_image_0.lp32.png │ │ ├── svg_draw_svg_image_0.lp64.png │ │ ├── svg_draw_svg_image_1.lp32.png │ │ ├── svg_draw_svg_image_1.lp64.png │ │ ├── svg_draw_svg_image_10.lp32.png │ │ ├── svg_draw_svg_image_10.lp64.png │ │ ├── svg_draw_svg_image_11.lp32.png │ │ ├── svg_draw_svg_image_11.lp64.png │ │ ├── svg_draw_svg_image_12.lp32.png │ │ ├── svg_draw_svg_image_12.lp64.png │ │ ├── svg_draw_svg_image_2.lp32.png │ │ ├── svg_draw_svg_image_2.lp64.png │ │ ├── svg_draw_svg_image_3.lp32.png │ │ ├── svg_draw_svg_image_3.lp64.png │ │ ├── svg_draw_svg_image_4.lp32.png │ │ ├── svg_draw_svg_image_4.lp64.png │ │ ├── svg_draw_svg_image_5.lp32.png │ │ ├── svg_draw_svg_image_5.lp64.png │ │ ├── svg_draw_svg_image_6.lp32.png │ │ ├── svg_draw_svg_image_6.lp64.png │ │ ├── svg_draw_svg_image_7.lp32.png │ │ ├── svg_draw_svg_image_7.lp64.png │ │ ├── svg_draw_svg_image_8.lp32.png │ │ ├── svg_draw_svg_image_8.lp64.png │ │ ├── svg_draw_svg_image_9.lp32.png │ │ ├── svg_draw_svg_image_9.lp64.png │ │ ├── svg_draw_svg_shapes_1.lp32.png │ │ ├── svg_draw_svg_shapes_1.lp64.png │ │ ├── svg_draw_svg_shapes_10.lp32.png │ │ ├── svg_draw_svg_shapes_10.lp64.png │ │ ├── svg_draw_svg_shapes_11.lp32.png │ │ ├── svg_draw_svg_shapes_11.lp64.png │ │ ├── svg_draw_svg_shapes_2.lp32.png │ │ ├── svg_draw_svg_shapes_2.lp64.png │ │ ├── svg_draw_svg_shapes_3.lp32.png │ │ ├── svg_draw_svg_shapes_3.lp64.png │ │ ├── svg_draw_svg_shapes_4.lp32.png │ │ ├── svg_draw_svg_shapes_4.lp64.png │ │ ├── svg_draw_svg_shapes_5.lp32.png │ │ ├── svg_draw_svg_shapes_5.lp64.png │ │ ├── svg_draw_svg_shapes_6.lp32.png │ │ ├── svg_draw_svg_shapes_6.lp64.png │ │ ├── svg_draw_svg_shapes_7.lp32.png │ │ ├── svg_draw_svg_shapes_7.lp64.png │ │ ├── svg_draw_svg_shapes_8.lp32.png │ │ ├── svg_draw_svg_shapes_8.lp64.png │ │ ├── svg_draw_svg_shapes_9.lp32.png │ │ ├── svg_draw_svg_shapes_9.lp64.png │ │ ├── svg_draw_svg_text_1.lp32.png │ │ ├── svg_draw_svg_text_1.lp64.png │ │ ├── svg_draw_svg_text_2.lp32.png │ │ ├── svg_draw_svg_text_2.lp64.png │ │ ├── svg_draw_svg_viewport_1.lp32.png │ │ ├── svg_draw_svg_viewport_1.lp64.png │ │ ├── svg_draw_svg_viewport_2.lp32.png │ │ ├── svg_draw_svg_viewport_2.lp64.png │ │ ├── svg_draw_svg_viewport_3.lp32.png │ │ ├── svg_draw_svg_viewport_3.lp64.png │ │ ├── vector_draw_lines.lp32.png │ │ ├── vector_draw_lines.lp64.png │ │ ├── vector_draw_lines_disp_rotation_0_during_rendering.lp32.png │ │ ├── vector_draw_lines_disp_rotation_0_during_rendering.lp64.png │ │ ├── vector_draw_lines_disp_rotation_180_during_rendering.lp32.png │ │ ├── vector_draw_lines_disp_rotation_180_during_rendering.lp64.png │ │ ├── vector_draw_lines_disp_rotation_270_during_rendering.lp32.png │ │ ├── vector_draw_lines_disp_rotation_270_during_rendering.lp64.png │ │ ├── vector_draw_lines_disp_rotation_90_during_rendering.lp32.png │ │ ├── vector_draw_lines_disp_rotation_90_during_rendering.lp64.png │ │ ├── vector_draw_lines_during_rendering.lp32.png │ │ ├── vector_draw_lines_during_rendering.lp64.png │ │ ├── vector_draw_lines_opa_50_during_rendering.lp32.png │ │ ├── vector_draw_lines_opa_50_during_rendering.lp64.png │ │ ├── vector_draw_shapes.lp32.png │ │ ├── vector_draw_shapes.lp64.png │ │ ├── vector_draw_shapes_disp_rotation_0_during_rendering.lp32.png │ │ ├── vector_draw_shapes_disp_rotation_0_during_rendering.lp64.png │ │ ├── vector_draw_shapes_disp_rotation_180_during_rendering.lp32.png │ │ ├── vector_draw_shapes_disp_rotation_180_during_rendering.lp64.png │ │ ├── vector_draw_shapes_disp_rotation_270_during_rendering.lp32.png │ │ ├── vector_draw_shapes_disp_rotation_270_during_rendering.lp64.png │ │ ├── vector_draw_shapes_disp_rotation_90_during_rendering.lp32.png │ │ ├── vector_draw_shapes_disp_rotation_90_during_rendering.lp64.png │ │ ├── vector_draw_shapes_during_rendering.lp32.png │ │ ├── vector_draw_shapes_during_rendering.lp64.png │ │ ├── vector_draw_shapes_opa_50_during_rendering.lp32.png │ │ └── vector_draw_shapes_opa_50_during_rendering.lp64.png │ ├── flex_hide_items.png │ ├── flex_wrap_grow_min_width.png │ ├── font_loader_1.png │ ├── font_loader_2.png │ ├── font_loader_3.png │ ├── grid_fr.png │ ├── libs │ │ ├── barcode_1.png │ │ ├── barcode_2.png │ │ ├── barcode_tiled_1.png │ │ ├── barcode_tiled_2.png │ │ ├── bin_decoder_1.png │ │ ├── bin_decoder_2.png │ │ ├── bin_decoder_3.png │ │ ├── bin_decoder_4.png │ │ ├── bin_decoder_empty_image.png │ │ ├── bmp_1.png │ │ ├── bmp_2.png │ │ ├── ffmpeg_1.png │ │ ├── ffmpeg_player_error_file.png │ │ ├── ffmpeg_player_frame_0.png │ │ ├── ffmpeg_player_frame_1.png │ │ ├── ffmpeg_player_frame_2.png │ │ ├── ffmpeg_player_frame_3.png │ │ ├── font_manager_1.lp32.png │ │ ├── font_manager_1.lp64.png │ │ ├── font_manager_2.lp32.png │ │ ├── font_manager_2.lp64.png │ │ ├── font_manager_3.lp32.png │ │ ├── font_manager_3.lp64.png │ │ ├── font_manager_4.png │ │ ├── font_stress │ │ │ ├── snapshot_0.lp32.png │ │ │ ├── snapshot_0.lp64.png │ │ │ ├── snapshot_1.lp32.png │ │ │ ├── snapshot_1.lp64.png │ │ │ ├── snapshot_10.lp32.png │ │ │ ├── snapshot_10.lp64.png │ │ │ ├── snapshot_2.lp32.png │ │ │ ├── snapshot_2.lp64.png │ │ │ ├── snapshot_3.lp32.png │ │ │ ├── snapshot_3.lp64.png │ │ │ ├── snapshot_4.lp32.png │ │ │ ├── snapshot_4.lp64.png │ │ │ ├── snapshot_5.lp32.png │ │ │ ├── snapshot_5.lp64.png │ │ │ ├── snapshot_6.lp32.png │ │ │ ├── snapshot_6.lp64.png │ │ │ ├── snapshot_7.lp32.png │ │ │ ├── snapshot_7.lp64.png │ │ │ ├── snapshot_8.lp32.png │ │ │ ├── snapshot_8.lp64.png │ │ │ ├── snapshot_9.lp32.png │ │ │ └── snapshot_9.lp64.png │ │ ├── freetype_kerning_compare.lp64.png │ │ ├── freetype_no_kerning_info.lp64.png │ │ ├── freetype_render_bitmap.lp32.png │ │ ├── freetype_render_bitmap.lp64.png │ │ ├── freetype_render_outline.png │ │ ├── jpg_1.png │ │ ├── jpg_2.png │ │ ├── jpg_3.png │ │ ├── png_1.png │ │ ├── qrcode_1.png │ │ ├── svg_decoder_1.lp32.png │ │ ├── svg_decoder_1.lp64.png │ │ ├── svg_decoder_2.lp32.png │ │ ├── svg_decoder_2.lp64.png │ │ ├── svg_decoder_3.lp32.png │ │ ├── svg_decoder_3.lp64.png │ │ ├── tiny_ttf_1.png │ │ ├── tiny_ttf_2.png │ │ └── tiny_ttf_3.png │ ├── margin_align_0.png │ ├── margin_align_1.png │ ├── margin_flex_0.png │ ├── margin_flex_1.png │ ├── margin_flex_2.png │ ├── margin_flex_3.png │ ├── margin_flex_4.png │ ├── margin_flex_5.png │ ├── margin_grid_0.png │ ├── recolor_1.png │ ├── snapshot_0.png │ ├── snapshot_1.png │ ├── snapshot_2.png │ ├── snapshot_3.png │ ├── subgrid_col.png │ ├── subgrid_row.png │ ├── widgets │ │ ├── arc_1.png │ │ ├── arc_2.png │ │ ├── arc_3.png │ │ ├── arclabel_0.lp32.png │ │ ├── arclabel_0.lp64.png │ │ ├── arclabel_1.lp32.png │ │ ├── arclabel_1.lp64.png │ │ ├── arclabel_2.lp32.png │ │ ├── arclabel_2.lp64.png │ │ ├── bar_1.png │ │ ├── bar_2.png │ │ ├── bar_3.png │ │ ├── bar_corner_1.png │ │ ├── bar_corner_2.png │ │ ├── bar_corner_3.png │ │ ├── bar_corner_4.png │ │ ├── bar_corner_5.png │ │ ├── bar_corner_6.png │ │ ├── btnm_1.png │ │ ├── btnm_2.png │ │ ├── calendar_01.png │ │ ├── calendar_02.png │ │ ├── calendar_03.png │ │ ├── calendar_04.png │ │ ├── calendar_05.png │ │ ├── calendar_06.png │ │ ├── calendar_07.png │ │ ├── calendar_08.png │ │ ├── calendar_09.png │ │ ├── canvas_1.png │ │ ├── chart_bar_draw_hook.png │ │ ├── chart_line_draw_hook.png │ │ ├── chart_scatter.png │ │ ├── checkbox_1.png │ │ ├── checkbox_rtl_1.png │ │ ├── dropdown_1.png │ │ ├── dropdown_2.png │ │ ├── image_clip_radius_20.png │ │ ├── image_clip_radius_circle.png │ │ ├── image_clip_radius_circle_scaled_rotated.png │ │ ├── image_contain.png │ │ ├── image_cover.png │ │ ├── image_normal_align.png │ │ ├── image_normal_align_offset.png │ │ ├── image_rotate_and_scale_pivot_center.png │ │ ├── image_rotate_and_scale_pivot_top_left.png │ │ ├── image_rotate_pivot_center.png │ │ ├── image_rotate_pivot_top_left.png │ │ ├── image_scale_pivot_center.png │ │ ├── image_scale_pivot_top_left.png │ │ ├── image_scale_x_pivot_center.png │ │ ├── image_scale_x_pivot_top_left.png │ │ ├── image_scale_y_pivot_center.png │ │ ├── image_scale_y_pivot_top_left.png │ │ ├── image_stretch.png │ │ ├── image_symbol_normal_align.png │ │ ├── image_symbol_normal_align_offset.png │ │ ├── image_tile.png │ │ ├── image_transform_align.png │ │ ├── image_transform_align_offset.png │ │ ├── imagebutton_1.png │ │ ├── imgfont_1.png │ │ ├── keyboard_1.png │ │ ├── keyboard_2.png │ │ ├── keyboard_3.png │ │ ├── keyboard_4.png │ │ ├── label_max_width.png │ │ ├── label_recolor.png │ │ ├── label_rtl_dot_long_mode.png │ │ ├── label_scroll_0.png │ │ ├── label_scroll_1.png │ │ ├── label_scroll_10.png │ │ ├── label_scroll_11.png │ │ ├── label_scroll_12.png │ │ ├── label_scroll_13.png │ │ ├── label_scroll_14.png │ │ ├── label_scroll_15.png │ │ ├── label_scroll_16.png │ │ ├── label_scroll_17.png │ │ ├── label_scroll_18.png │ │ ├── label_scroll_19.png │ │ ├── label_scroll_2.png │ │ ├── label_scroll_3.png │ │ ├── label_scroll_4.png │ │ ├── label_scroll_5.png │ │ ├── label_scroll_6.png │ │ ├── label_scroll_7.png │ │ ├── label_scroll_8.png │ │ ├── label_scroll_9.png │ │ ├── label_wrap_clip.png │ │ ├── led_1.png │ │ ├── line_1.png │ │ ├── line_2.png │ │ ├── list_1.png │ │ ├── lottie_1.png │ │ ├── lottie_2.png │ │ ├── lottie_2_small.png │ │ ├── lottie_3.png │ │ ├── lottie_3_small.png │ │ ├── lottie_4.png │ │ ├── msgbox_ok_no_close_btn.png │ │ ├── msgbox_ok_with_close_btn.png │ │ ├── obj_flag_overflow_visible_1_1.png │ │ ├── obj_flag_overflow_visible_1_2.png │ │ ├── obj_flag_overflow_visible_1_3.png │ │ ├── obj_flag_overflow_visible_1_4.png │ │ ├── obj_transform_identity.png │ │ ├── obj_transform_rotate.png │ │ ├── obj_transform_scale.png │ │ ├── obj_transform_skew.png │ │ ├── obj_transform_translate.png │ │ ├── overlapping_arcs_test.png │ │ ├── roller_2.png │ │ ├── roller_3.png │ │ ├── scale_1.png │ │ ├── scale_2.png │ │ ├── scale_3.png │ │ ├── scale_4.png │ │ ├── scale_5.png │ │ ├── scale_6.png │ │ ├── span_01.png │ │ ├── span_02.png │ │ ├── span_03.png │ │ ├── span_04.png │ │ ├── span_05.png │ │ ├── span_06.png │ │ ├── span_07.png │ │ ├── span_08.png │ │ ├── span_09.png │ │ ├── span_10.png │ │ ├── span_11.png │ │ ├── span_12.png │ │ ├── span_13.png │ │ ├── spinner_00.png │ │ ├── spinner_01.png │ │ ├── spinner_02.png │ │ ├── spinner_03.png │ │ ├── spinner_04.png │ │ ├── spinner_05.png │ │ ├── spinner_06.png │ │ ├── spinner_07.png │ │ ├── spinner_08.png │ │ ├── spinner_09.png │ │ ├── switch_1.png │ │ ├── table_1.png │ │ ├── tabview_01.png │ │ ├── tabview_02.png │ │ ├── tabview_03.png │ │ ├── tabview_04.png │ │ ├── tabview_05.png │ │ ├── tabview_06.png │ │ ├── tabview_07.png │ │ ├── tabview_08.png │ │ ├── tabview_09.png │ │ ├── tabview_10.png │ │ ├── win_01.png │ │ └── win_02.png │ └── xml │ │ ├── complex_1.png │ │ ├── component_create_1.png │ │ ├── consts_1.png │ │ ├── gradients.png │ │ ├── image_and_font_1.png │ │ ├── lv_arc.png │ │ ├── lv_bar.png │ │ ├── lv_buttonmatrix.png │ │ ├── lv_calendar.png │ │ ├── lv_canvas.png │ │ ├── lv_chart.png │ │ ├── lv_checkbox.png │ │ ├── lv_dropdown.png │ │ ├── lv_image.png │ │ ├── lv_keyboard.png │ │ ├── lv_label.png │ │ ├── lv_roller.png │ │ ├── lv_scale.png │ │ ├── lv_slider.png │ │ ├── lv_spangroup.png │ │ ├── lv_table.png │ │ ├── lv_tabview.png │ │ ├── lv_textarea.png │ │ ├── nested_1.png │ │ ├── params_1.png │ │ ├── styles_1.png │ │ ├── view2.png │ │ ├── view3.png │ │ └── widget_create_1.png ├── src │ ├── lv_test_conf.h │ ├── lv_test_conf_full.h │ ├── lv_test_conf_minimal.h │ ├── lv_test_conf_vg_lite.h │ ├── lv_test_init.c │ ├── lv_test_init.h │ ├── lv_test_perf_conf.h │ ├── test_assets │ │ ├── lv_example_xml.h │ │ ├── test_animimg001.c │ │ ├── test_animimg002.c │ │ ├── test_animimg003.c │ │ ├── test_arc_bg.c │ │ ├── test_arc_bg.png │ │ ├── test_font_1.c │ │ ├── test_font_1.fnt │ │ ├── test_font_1_bin.c │ │ ├── test_font_2.c │ │ ├── test_font_2.fnt │ │ ├── test_font_2_bin.c │ │ ├── test_font_3.c │ │ ├── test_font_3.fnt │ │ ├── test_font_3_bin.c │ │ ├── test_font_montserrat_ascii_1bpp.c │ │ ├── test_font_montserrat_ascii_2bpp.c │ │ ├── test_font_montserrat_ascii_3bpp_compressed.c │ │ ├── test_font_montserrat_ascii_4bpp.c │ │ ├── test_font_montserrat_ascii_8bpp.c │ │ ├── test_gpos_one.ttf │ │ ├── test_imagebutton_left.c │ │ ├── test_imagebutton_mid.c │ │ ├── test_imagebutton_right.c │ │ ├── test_img_caret_down.c │ │ ├── test_img_cogwheel_a8.c │ │ ├── test_img_cogwheel_argb8888.c │ │ ├── test_img_cogwheel_i4.c │ │ ├── test_img_cogwheel_rgb565.c │ │ ├── test_img_cogwheel_rgb565a8.c │ │ ├── test_img_cogwheel_xrgb8888.c │ │ ├── test_img_emoji_F600.png │ │ ├── test_img_emoji_F617.c │ │ ├── test_img_lvgl_logo.bmp │ │ ├── test_img_lvgl_logo.jpg │ │ ├── test_img_lvgl_logo.png │ │ ├── test_img_lvgl_logo_8bit_palette.png │ │ ├── test_img_lvgl_logo_jpg.c │ │ ├── test_img_lvgl_logo_png.c │ │ ├── test_img_lvgl_logo_png_no_ext │ │ ├── test_img_lvgl_logo_with_exif_orientation_0.jpg │ │ ├── test_img_lvgl_logo_with_exif_orientation_180.jpg │ │ ├── test_img_lvgl_logo_with_exif_orientation_270.jpg │ │ ├── test_img_lvgl_logo_with_exif_orientation_90.jpg │ │ ├── test_img_svg.c │ │ ├── test_img_svg_tiger.svg │ │ ├── test_kern_one_otf.c │ │ ├── test_lottie_approve.c │ │ ├── test_lottie_approve.json │ │ ├── test_music_button_play.c │ │ ├── test_ubuntu_font.c │ │ ├── test_video_birds.mp4 │ │ └── xml │ │ │ ├── globals.xml │ │ │ ├── my_button.xml │ │ │ ├── my_card.xml │ │ │ ├── my_h3.xml │ │ │ ├── view.xml │ │ │ ├── view2.xml │ │ │ └── view3.xml │ ├── test_cases │ │ ├── _test_template.c │ │ ├── cache │ │ │ └── test_cache.c │ │ ├── draw │ │ │ ├── test_bg_image.c │ │ │ ├── test_clip_corner.c │ │ │ ├── test_draw_blend.c │ │ │ ├── test_draw_custom_handlers.c │ │ │ ├── test_draw_label.c │ │ │ ├── test_draw_layer.c │ │ │ ├── test_draw_letter.c │ │ │ ├── test_draw_svg.c │ │ │ ├── test_draw_sw_post_process.c │ │ │ ├── test_draw_vector.c │ │ │ ├── test_image_formats.c │ │ │ ├── test_layer_transform.c │ │ │ ├── test_render_to_al88.c │ │ │ ├── test_render_to_argb1555.c │ │ │ ├── test_render_to_argb2222.c │ │ │ ├── test_render_to_argb4444.c │ │ │ ├── test_render_to_argb8888.c │ │ │ ├── test_render_to_argb8888_premultiplied.c │ │ │ ├── test_render_to_i1.c │ │ │ ├── test_render_to_l8.c │ │ │ ├── test_render_to_rgb565.c │ │ │ ├── test_render_to_rgb565_swapped.c │ │ │ ├── test_render_to_rgb888.c │ │ │ └── test_render_to_xrgb8888.c │ │ ├── libs │ │ │ ├── test_barcode.c │ │ │ ├── test_bin_decoder.c │ │ │ ├── test_bmp.c │ │ │ ├── test_ffmpeg.c │ │ │ ├── test_font_stress.c │ │ │ ├── test_freetype.c │ │ │ ├── test_libjpeg_turbo.c │ │ │ ├── test_libpng.c │ │ │ ├── test_lodepng.c │ │ │ ├── test_memmove.c │ │ │ ├── test_qrcode.c │ │ │ ├── test_svg_decoder.c │ │ │ ├── test_tiny_ttf.c │ │ │ └── test_tjpgd.c │ │ ├── test_align_flex.c │ │ ├── test_anim.c │ │ ├── test_anim_timeline.c │ │ ├── test_area.c │ │ ├── test_array.c │ │ ├── test_bindings.c │ │ ├── test_circle_buf.c │ │ ├── test_click.c │ │ ├── test_config.c │ │ ├── test_demo_stress.c │ │ ├── test_demo_widgets.c │ │ ├── test_display.c │ │ ├── test_draw_buf_stride.c │ │ ├── test_event.c │ │ ├── test_event_trickle.c │ │ ├── test_file_explorer.c │ │ ├── test_font_loader.c │ │ ├── test_font_manager.c │ │ ├── test_fs.c │ │ ├── test_gesture_pinch.c │ │ ├── test_grid.c │ │ ├── test_grid_fr.c │ │ ├── test_gridnav.c │ │ ├── test_group.c │ │ ├── test_hover.c │ │ ├── test_indev_reset.c │ │ ├── test_indev_wait_release.c │ │ ├── test_margin_align.c │ │ ├── test_margin_flex.c │ │ ├── test_margin_grid.c │ │ ├── test_math.c │ │ ├── test_mem.c │ │ ├── test_observer.c │ │ ├── test_profiler.c │ │ ├── test_recolor.c │ │ ├── test_screen_load.c │ │ ├── test_snapshot.c │ │ ├── test_style.c │ │ ├── test_svg.c │ │ ├── test_svg_anim.c │ │ ├── test_tree.c │ │ ├── test_txt.c │ │ ├── widgets │ │ │ ├── test_animimg.c │ │ │ ├── test_arc.c │ │ │ ├── test_arclabel.c │ │ │ ├── test_bar.c │ │ │ ├── test_btn.c │ │ │ ├── test_btnmatrix.c │ │ │ ├── test_calendar.c │ │ │ ├── test_canvas.c │ │ │ ├── test_chart.c │ │ │ ├── test_checkbox.c │ │ │ ├── test_dropdown.c │ │ │ ├── test_image.c │ │ │ ├── test_imagebutton.c │ │ │ ├── test_imgfont.c │ │ │ ├── test_keyboard.c │ │ │ ├── test_label.c │ │ │ ├── test_led.c │ │ │ ├── test_line.c │ │ │ ├── test_list.c │ │ │ ├── test_lottie.c │ │ │ ├── test_msgbox.c │ │ │ ├── test_obj_flags.c │ │ │ ├── test_obj_pos.c │ │ │ ├── test_obj_property.c │ │ │ ├── test_obj_transform.c │ │ │ ├── test_obj_tree.c │ │ │ ├── test_objid.c │ │ │ ├── test_roller.c │ │ │ ├── test_scale.c │ │ │ ├── test_slider.c │ │ │ ├── test_span.c │ │ │ ├── test_spinbox.c │ │ │ ├── test_spinner.c │ │ │ ├── test_switch.c │ │ │ ├── test_table.c │ │ │ ├── test_tabview.c │ │ │ ├── test_textarea.c │ │ │ └── test_win.c │ │ └── xml │ │ │ ├── test_xml_arc.c │ │ │ ├── test_xml_bar.c │ │ │ ├── test_xml_buttonmatrix.c │ │ │ ├── test_xml_calendar.c │ │ │ ├── test_xml_canvas.c │ │ │ ├── test_xml_chart.c │ │ │ ├── test_xml_checkbox.c │ │ │ ├── test_xml_dropdown.c │ │ │ ├── test_xml_event.c │ │ │ ├── test_xml_general.c │ │ │ ├── test_xml_image.c │ │ │ ├── test_xml_keyboard.c │ │ │ ├── test_xml_label.c │ │ │ ├── test_xml_names.c │ │ │ ├── test_xml_roller.c │ │ │ ├── test_xml_scale.c │ │ │ ├── test_xml_screen_event.c │ │ │ ├── test_xml_slider.c │ │ │ ├── test_xml_spangroup.c │ │ │ ├── test_xml_style.c │ │ │ ├── test_xml_table.c │ │ │ ├── test_xml_tabview.c │ │ │ ├── test_xml_textarea.c │ │ │ ├── test_xml_translations.c │ │ │ ├── test_xml_view2.c │ │ │ └── test_xml_view3.c │ ├── test_cases_perf │ │ ├── test_chart.c │ │ └── test_math.c │ ├── test_files │ │ ├── binimages │ │ │ ├── cogwheel.A8.bin │ │ │ ├── cogwheel.ARGB8888.bin │ │ │ ├── cogwheel.I1.bin │ │ │ ├── cogwheel.I2.bin │ │ │ ├── cogwheel.I4.bin │ │ │ ├── cogwheel.I8.bin │ │ │ ├── cogwheel.L8.bin │ │ │ ├── cogwheel.RGB565.bin │ │ │ ├── cogwheel.RGB565A8.bin │ │ │ ├── cogwheel.RGB888.bin │ │ │ └── cogwheel.XRGB8888.bin │ │ ├── fonts │ │ │ ├── Montserrat-Bold.ttf │ │ │ └── noto │ │ │ │ ├── NotoSansSC-Regular.ttf │ │ │ │ ├── OFL.txt │ │ │ │ └── README.txt │ │ ├── lz4_compressed │ │ │ ├── cogwheel.A1.bin │ │ │ ├── cogwheel.A2.bin │ │ │ ├── cogwheel.A4.bin │ │ │ ├── cogwheel.A8.bin │ │ │ ├── cogwheel.ARGB8888.bin │ │ │ ├── cogwheel.I1.bin │ │ │ ├── cogwheel.I2.bin │ │ │ ├── cogwheel.I4.bin │ │ │ ├── cogwheel.I8.bin │ │ │ ├── cogwheel.RGB565.bin │ │ │ ├── cogwheel.RGB565A8.bin │ │ │ ├── cogwheel.RGB888.bin │ │ │ └── cogwheel.XRGB8888.bin │ │ ├── readtest.txt │ │ └── rle_compressed │ │ │ ├── cogwheel.A1.bin │ │ │ ├── cogwheel.A2.bin │ │ │ ├── cogwheel.A4.bin │ │ │ ├── cogwheel.A8.bin │ │ │ ├── cogwheel.ARGB8888.bin │ │ │ ├── cogwheel.I1.bin │ │ │ ├── cogwheel.I2.bin │ │ │ ├── cogwheel.I4.bin │ │ │ ├── cogwheel.I8.bin │ │ │ ├── cogwheel.RGB565.bin │ │ │ ├── cogwheel.RGB565A8.bin │ │ │ ├── cogwheel.RGB888.bin │ │ │ └── cogwheel.XRGB8888.bin │ ├── test_layout_switch.c │ └── test_libs │ │ └── rnd_unicodes │ │ ├── lv_rnd_unicodes.c │ │ ├── lv_rnd_unicodes.h │ │ └── rnd_unicodes │ │ ├── .gitignore │ │ ├── CMakeLists.txt │ │ ├── LICENSE │ │ ├── README.md │ │ └── src │ │ ├── library.c │ │ └── library.h ├── test_images │ ├── pngs │ │ └── test.png │ ├── stride_align1 │ │ ├── LZ4 │ │ │ ├── test_A1.bin │ │ │ ├── test_A1_LZ4_align1.c │ │ │ ├── test_A2.bin │ │ │ ├── test_A2_LZ4_align1.c │ │ │ ├── test_A4.bin │ │ │ ├── test_A4_LZ4_align1.c │ │ │ ├── test_A8.bin │ │ │ ├── test_A8_LZ4_align1.c │ │ │ ├── test_ARGB8888.bin │ │ │ ├── test_ARGB8888_LZ4_align1.c │ │ │ ├── test_I1.bin │ │ │ ├── test_I1_LZ4_align1.c │ │ │ ├── test_I2.bin │ │ │ ├── test_I2_LZ4_align1.c │ │ │ ├── test_I4.bin │ │ │ ├── test_I4_LZ4_align1.c │ │ │ ├── test_I8.bin │ │ │ ├── test_I8_LZ4_align1.c │ │ │ ├── test_L8.bin │ │ │ ├── test_L8_LZ4_align1.c │ │ │ ├── test_RGB565.bin │ │ │ ├── test_RGB565A8.bin │ │ │ ├── test_RGB565A8_LZ4_align1.c │ │ │ ├── test_RGB565_LZ4_align1.c │ │ │ ├── test_RGB888.bin │ │ │ ├── test_RGB888_LZ4_align1.c │ │ │ ├── test_XRGB8888.bin │ │ │ └── test_XRGB8888_LZ4_align1.c │ │ ├── RLE │ │ │ ├── test_A1.bin │ │ │ ├── test_A1_RLE_align1.c │ │ │ ├── test_A2.bin │ │ │ ├── test_A2_RLE_align1.c │ │ │ ├── test_A4.bin │ │ │ ├── test_A4_RLE_align1.c │ │ │ ├── test_A8.bin │ │ │ ├── test_A8_RLE_align1.c │ │ │ ├── test_ARGB8888.bin │ │ │ ├── test_ARGB8888_RLE_align1.c │ │ │ ├── test_I1.bin │ │ │ ├── test_I1_RLE_align1.c │ │ │ ├── test_I2.bin │ │ │ ├── test_I2_RLE_align1.c │ │ │ ├── test_I4.bin │ │ │ ├── test_I4_RLE_align1.c │ │ │ ├── test_I8.bin │ │ │ ├── test_I8_RLE_align1.c │ │ │ ├── test_L8.bin │ │ │ ├── test_L8_RLE_align1.c │ │ │ ├── test_RGB565.bin │ │ │ ├── test_RGB565A8.bin │ │ │ ├── test_RGB565A8_RLE_align1.c │ │ │ ├── test_RGB565_RLE_align1.c │ │ │ ├── test_RGB888.bin │ │ │ ├── test_RGB888_RLE_align1.c │ │ │ ├── test_XRGB8888.bin │ │ │ └── test_XRGB8888_RLE_align1.c │ │ └── UNCOMPRESSED │ │ │ ├── test_A1.bin │ │ │ ├── test_A1_NONE_align1.c │ │ │ ├── test_A2.bin │ │ │ ├── test_A2_NONE_align1.c │ │ │ ├── test_A4.bin │ │ │ ├── test_A4_NONE_align1.c │ │ │ ├── test_A8.bin │ │ │ ├── test_A8_NONE_align1.c │ │ │ ├── test_ARGB8888.bin │ │ │ ├── test_ARGB8888_NONE_align1.c │ │ │ ├── test_I1.bin │ │ │ ├── test_I1_NONE_align1.c │ │ │ ├── test_I2.bin │ │ │ ├── test_I2_NONE_align1.c │ │ │ ├── test_I4.bin │ │ │ ├── test_I4_NONE_align1.c │ │ │ ├── test_I8.bin │ │ │ ├── test_I8_NONE_align1.c │ │ │ ├── test_L8.bin │ │ │ ├── test_L8_NONE_align1.c │ │ │ ├── test_RGB565.bin │ │ │ ├── test_RGB565A8.bin │ │ │ ├── test_RGB565A8_NONE_align1.c │ │ │ ├── test_RGB565_NONE_align1.c │ │ │ ├── test_RGB888.bin │ │ │ ├── test_RGB888_NONE_align1.c │ │ │ ├── test_XRGB8888.bin │ │ │ └── test_XRGB8888_NONE_align1.c │ └── stride_align64 │ │ ├── LZ4 │ │ ├── test_A1.bin │ │ ├── test_A1_LZ4_align64.c │ │ ├── test_A2.bin │ │ ├── test_A2_LZ4_align64.c │ │ ├── test_A4.bin │ │ ├── test_A4_LZ4_align64.c │ │ ├── test_A8.bin │ │ ├── test_A8_LZ4_align64.c │ │ ├── test_ARGB8888.bin │ │ ├── test_ARGB8888_LZ4_align64.c │ │ ├── test_I1.bin │ │ ├── test_I1_LZ4_align64.c │ │ ├── test_I2.bin │ │ ├── test_I2_LZ4_align64.c │ │ ├── test_I4.bin │ │ ├── test_I4_LZ4_align64.c │ │ ├── test_I8.bin │ │ ├── test_I8_LZ4_align64.c │ │ ├── test_L8.bin │ │ ├── test_L8_LZ4_align64.c │ │ ├── test_RGB565.bin │ │ ├── test_RGB565A8.bin │ │ ├── test_RGB565A8_LZ4_align64.c │ │ ├── test_RGB565_LZ4_align64.c │ │ ├── test_RGB888.bin │ │ ├── test_RGB888_LZ4_align64.c │ │ ├── test_XRGB8888.bin │ │ └── test_XRGB8888_LZ4_align64.c │ │ ├── RLE │ │ ├── test_A1.bin │ │ ├── test_A1_RLE_align64.c │ │ ├── test_A2.bin │ │ ├── test_A2_RLE_align64.c │ │ ├── test_A4.bin │ │ ├── test_A4_RLE_align64.c │ │ ├── test_A8.bin │ │ ├── test_A8_RLE_align64.c │ │ ├── test_ARGB8888.bin │ │ ├── test_ARGB8888_RLE_align64.c │ │ ├── test_I1.bin │ │ ├── test_I1_RLE_align64.c │ │ ├── test_I2.bin │ │ ├── test_I2_RLE_align64.c │ │ ├── test_I4.bin │ │ ├── test_I4_RLE_align64.c │ │ ├── test_I8.bin │ │ ├── test_I8_RLE_align64.c │ │ ├── test_L8.bin │ │ ├── test_L8_RLE_align64.c │ │ ├── test_RGB565.bin │ │ ├── test_RGB565A8.bin │ │ ├── test_RGB565A8_RLE_align64.c │ │ ├── test_RGB565_RLE_align64.c │ │ ├── test_RGB888.bin │ │ ├── test_RGB888_RLE_align64.c │ │ ├── test_XRGB8888.bin │ │ └── test_XRGB8888_RLE_align64.c │ │ └── UNCOMPRESSED │ │ ├── test_A1.bin │ │ ├── test_A1_NONE_align64.c │ │ ├── test_A2.bin │ │ ├── test_A2_NONE_align64.c │ │ ├── test_A4.bin │ │ ├── test_A4_NONE_align64.c │ │ ├── test_A8.bin │ │ ├── test_A8_NONE_align64.c │ │ ├── test_ARGB8888.bin │ │ ├── test_ARGB8888_NONE_align64.c │ │ ├── test_I1.bin │ │ ├── test_I1_NONE_align64.c │ │ ├── test_I2.bin │ │ ├── test_I2_NONE_align64.c │ │ ├── test_I4.bin │ │ ├── test_I4_NONE_align64.c │ │ ├── test_I8.bin │ │ ├── test_I8_NONE_align64.c │ │ ├── test_L8.bin │ │ ├── test_L8_NONE_align64.c │ │ ├── test_RGB565.bin │ │ ├── test_RGB565A8.bin │ │ ├── test_RGB565A8_NONE_align64.c │ │ ├── test_RGB565_NONE_align64.c │ │ ├── test_RGB888.bin │ │ ├── test_RGB888_NONE_align64.c │ │ ├── test_XRGB8888.bin │ │ └── test_XRGB8888_NONE_align64.c └── unity │ ├── generate_test_runner.rb │ ├── run_test.erb │ ├── type_sanitizer.rb │ ├── unity.c │ ├── unity.h │ ├── unity_internals.h │ ├── unity_support.h │ └── yaml_helper.rb ├── xmls ├── globals.xml ├── lv_animimg.xml ├── lv_arc.xml ├── lv_bar.xml ├── lv_button.xml ├── lv_buttonmatrix.xml ├── lv_calendar.xml ├── lv_canvas.xml ├── lv_chart.xml ├── lv_checkbox.xml ├── lv_dropdown.xml ├── lv_image.xml ├── lv_keyboard.xml ├── lv_label.xml ├── lv_obj.xml ├── lv_roller.xml ├── lv_scale.xml ├── lv_slider.xml ├── lv_spangroup.xml ├── lv_table.xml ├── lv_tabview.xml └── lv_textarea.xml └── zephyr ├── Kconfig └── module.yml /.devcontainer/__build_all.sh__: -------------------------------------------------------------------------------- 1 | cd build 2 | emcmake cmake .. 3 | emmake make -j$(nproc) 4 | echo "Built successfully, opening index.html" 5 | code index.html -------------------------------------------------------------------------------- /.devcontainer/__settings.json__: -------------------------------------------------------------------------------- 1 | { 2 | "files.associations": { 3 | "sdl.h": "c" 4 | } 5 | } -------------------------------------------------------------------------------- /.github/.codecov.yml: -------------------------------------------------------------------------------- 1 | codecov: 2 | notify: 3 | require_ci_to_pass: true 4 | comment: off 5 | coverage: 6 | status: 7 | patch: off 8 | project: off 9 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: lvgl 2 | -------------------------------------------------------------------------------- /configs/defconfigs/default.defconfig: -------------------------------------------------------------------------------- 1 | # A default defconfig doesn't need to store anything as it'll just take the default parameters when expanded into an actual config 2 | -------------------------------------------------------------------------------- /demos/benchmark/assets/img_benchmark_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/benchmark/assets/img_benchmark_avatar.png -------------------------------------------------------------------------------- /demos/benchmark/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/benchmark/screenshot1.png -------------------------------------------------------------------------------- /demos/benchmark/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/benchmark/screenshot2.png -------------------------------------------------------------------------------- /demos/keypad_encoder/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/keypad_encoder/screenshot1.gif -------------------------------------------------------------------------------- /demos/keypad_encoder/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/keypad_encoder/screenshot1.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/btn_list_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/btn_list_pause.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/btn_list_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/btn_list_play.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/btn_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/btn_loop.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/btn_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/btn_next.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/btn_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/btn_pause.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/btn_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/btn_play.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/btn_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/btn_prev.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/btn_rnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/btn_rnd.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/corner_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/corner_1.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/corner_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/corner_2.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/cover_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/cover_1.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/cover_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/cover_2.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/cover_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/cover_3.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/icn_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/icn_chart.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/icn_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/icn_chat.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/icn_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/icn_download.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/icn_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/icn_heart.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/icn_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/icn_slider.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/list_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/list_border.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/wave_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/wave_bottom.png -------------------------------------------------------------------------------- /demos/music/assets/png/272_png/wave_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/272_png/wave_top.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/btn_list_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/btn_list_pause.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/btn_list_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/btn_list_play.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/btn_loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/btn_loop.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/btn_next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/btn_next.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/btn_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/btn_pause.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/btn_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/btn_play.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/btn_prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/btn_prev.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/btn_rnd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/btn_rnd.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/corner_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/corner_1.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/corner_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/corner_2.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/cover_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/cover_1.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/cover_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/cover_2.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/cover_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/cover_3.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/icn_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/icn_chart.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/icn_chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/icn_chat.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/icn_download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/icn_download.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/icn_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/icn_heart.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/icn_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/icn_slider.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/list_border.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/list_border.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/wave_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/wave_bottom.png -------------------------------------------------------------------------------- /demos/music/assets/png/480_png/wave_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/assets/png/480_png/wave_top.png -------------------------------------------------------------------------------- /demos/music/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/music/screenshot1.gif -------------------------------------------------------------------------------- /demos/render/assets/img_render_lvgl_logo_argb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/render/assets/img_render_lvgl_logo_argb.png -------------------------------------------------------------------------------- /demos/render/assets/img_render_lvgl_logo_i1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/render/assets/img_render_lvgl_logo_i1.png -------------------------------------------------------------------------------- /demos/render/assets/img_render_lvgl_logo_l8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/render/assets/img_render_lvgl_logo_l8.png -------------------------------------------------------------------------------- /demos/render/assets/img_render_lvgl_logo_rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/render/assets/img_render_lvgl_logo_rgb.png -------------------------------------------------------------------------------- /demos/stress/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/stress/screenshot1.gif -------------------------------------------------------------------------------- /demos/stress/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/stress/screenshot1.png -------------------------------------------------------------------------------- /demos/vector_graphic/assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/vector_graphic/assets/avatar.png -------------------------------------------------------------------------------- /demos/widgets/assets/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/widgets/assets/avatar.png -------------------------------------------------------------------------------- /demos/widgets/assets/clothes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/widgets/assets/clothes.png -------------------------------------------------------------------------------- /demos/widgets/assets/font/montserrat-12.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/widgets/assets/font/montserrat-12.fnt -------------------------------------------------------------------------------- /demos/widgets/assets/font/montserrat-14.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/widgets/assets/font/montserrat-14.fnt -------------------------------------------------------------------------------- /demos/widgets/assets/font/montserrat-16.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/widgets/assets/font/montserrat-16.fnt -------------------------------------------------------------------------------- /demos/widgets/assets/font/montserrat-18.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/widgets/assets/font/montserrat-18.fnt -------------------------------------------------------------------------------- /demos/widgets/assets/font/montserrat-20.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/widgets/assets/font/montserrat-20.fnt -------------------------------------------------------------------------------- /demos/widgets/assets/font/montserrat-24.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/widgets/assets/font/montserrat-24.fnt -------------------------------------------------------------------------------- /demos/widgets/assets/lvgl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/widgets/assets/lvgl_logo.png -------------------------------------------------------------------------------- /demos/widgets/lv_demo_widgets.py: -------------------------------------------------------------------------------- 1 | pass -------------------------------------------------------------------------------- /demos/widgets/screenshot1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/widgets/screenshot1.gif -------------------------------------------------------------------------------- /demos/widgets/screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/demos/widgets/screenshot1.png -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | doxygen/ 3 | intermediate/ 4 | src/_static/built_lv_examples 5 | -------------------------------------------------------------------------------- /docs/_obsolete/btn_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/btn_example.png -------------------------------------------------------------------------------- /docs/_obsolete/button_style_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/button_style_example.gif -------------------------------------------------------------------------------- /docs/_obsolete/button_style_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/button_style_example.png -------------------------------------------------------------------------------- /docs/_obsolete/codeblocks.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/codeblocks.jpg -------------------------------------------------------------------------------- /docs/_obsolete/eclipse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/eclipse.jpg -------------------------------------------------------------------------------- /docs/_obsolete/home_banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/home_banner.jpg -------------------------------------------------------------------------------- /docs/_obsolete/js_calculator.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/js_calculator.gif -------------------------------------------------------------------------------- /docs/_obsolete/js_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/js_code.png -------------------------------------------------------------------------------- /docs/_obsolete/js_on_device.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/js_on_device.jpg -------------------------------------------------------------------------------- /docs/_obsolete/js_widgets_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/js_widgets_demo.gif -------------------------------------------------------------------------------- /docs/_obsolete/platformio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/platformio.jpg -------------------------------------------------------------------------------- /docs/_obsolete/qtcreator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/qtcreator.jpg -------------------------------------------------------------------------------- /docs/_obsolete/simple_button_example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/simple_button_example.gif -------------------------------------------------------------------------------- /docs/_obsolete/simple_button_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/simple_button_example.png -------------------------------------------------------------------------------- /docs/_obsolete/sys.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/sys.png -------------------------------------------------------------------------------- /docs/_obsolete/visualstudio.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/_obsolete/visualstudio.jpg -------------------------------------------------------------------------------- /docs/flyers/LVGL-Chinese-Flyer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/flyers/LVGL-Chinese-Flyer.pdf -------------------------------------------------------------------------------- /docs/src/_static/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/src/_static/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/src/_static/images/align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/align.png -------------------------------------------------------------------------------- /docs/src/_static/images/anim-timeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/anim-timeline.png -------------------------------------------------------------------------------- /docs/src/_static/images/bidi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/bidi.png -------------------------------------------------------------------------------- /docs/src/_static/images/boxmodel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/boxmodel.png -------------------------------------------------------------------------------- /docs/src/_static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/favicon.png -------------------------------------------------------------------------------- /docs/src/_static/images/gh-header.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/gh-header.webp -------------------------------------------------------------------------------- /docs/src/_static/images/home_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/home_1.png -------------------------------------------------------------------------------- /docs/src/_static/images/home_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/home_2.png -------------------------------------------------------------------------------- /docs/src/_static/images/home_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/home_3.png -------------------------------------------------------------------------------- /docs/src/_static/images/home_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/home_4.png -------------------------------------------------------------------------------- /docs/src/_static/images/home_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/home_5.png -------------------------------------------------------------------------------- /docs/src/_static/images/home_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/home_6.png -------------------------------------------------------------------------------- /docs/src/_static/images/intro_data_flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/intro_data_flow.png -------------------------------------------------------------------------------- /docs/src/_static/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/layers.png -------------------------------------------------------------------------------- /docs/src/_static/images/par_child1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/par_child1.png -------------------------------------------------------------------------------- /docs/src/_static/images/par_child2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/par_child2.png -------------------------------------------------------------------------------- /docs/src/_static/images/par_child3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/par_child3.png -------------------------------------------------------------------------------- /docs/src/_static/images/perfetto_ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/perfetto_ui.png -------------------------------------------------------------------------------- /docs/src/_static/images/renesas/debug_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/renesas/debug_btn.png -------------------------------------------------------------------------------- /docs/src/_static/images/renesas/debug_ra6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/renesas/debug_ra6.png -------------------------------------------------------------------------------- /docs/src/_static/images/renesas/debug_ra8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/renesas/debug_ra8.png -------------------------------------------------------------------------------- /docs/src/_static/images/renesas/debug_rx72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/renesas/debug_rx72.png -------------------------------------------------------------------------------- /docs/src/_static/images/renesas/generate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/renesas/generate.png -------------------------------------------------------------------------------- /docs/src/_static/images/renesas/generate_smc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/renesas/generate_smc.png -------------------------------------------------------------------------------- /docs/src/_static/images/renesas/glcdc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/renesas/glcdc.png -------------------------------------------------------------------------------- /docs/src/_static/images/renesas/toolchains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/renesas/toolchains.png -------------------------------------------------------------------------------- /docs/src/_static/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/scale.png -------------------------------------------------------------------------------- /docs/src/_static/images/scale_ticks_below.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/scale_ticks_below.png -------------------------------------------------------------------------------- /docs/src/_static/images/scale_ticks_on_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/scale_ticks_on_top.png -------------------------------------------------------------------------------- /docs/src/_static/images/symbols.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/_static/images/symbols.png -------------------------------------------------------------------------------- /docs/src/details/integration/bindings/cpp.rst: -------------------------------------------------------------------------------- 1 | === 2 | Cpp 3 | === 4 | 5 | In progress: https://github.com/lvgl/lv_binding_cpp 6 | -------------------------------------------------------------------------------- /docs/src/details/integration/boards/index.rst: -------------------------------------------------------------------------------- 1 | ====== 2 | Boards 3 | ====== 4 | 5 | .. toctree:: 6 | :maxdepth: 2 7 | 8 | toradex 9 | riverdi 10 | viewe 11 | -------------------------------------------------------------------------------- /docs/src/details/integration/driver/touchpad/ft6x36.rst: -------------------------------------------------------------------------------- 1 | ====== 2 | FT6X36 3 | ====== 4 | 5 | TODO -------------------------------------------------------------------------------- /docs/src/details/integration/driver/touchpad/index.rst: -------------------------------------------------------------------------------- 1 | ======== 2 | Touchpad 3 | ======== 4 | 5 | .. toctree:: 6 | :maxdepth: 2 7 | 8 | evdev 9 | ft6x36 10 | -------------------------------------------------------------------------------- /docs/src/details/integration/framework/platformio.rst: -------------------------------------------------------------------------------- 1 | ========== 2 | PlatformIO 3 | ========== 4 | 5 | TODO 6 | -------------------------------------------------------------------------------- /docs/src/details/integration/ide/index.rst: -------------------------------------------------------------------------------- 1 | ==== 2 | IDEs 3 | ==== 4 | 5 | .. toctree:: 6 | :maxdepth: 2 7 | 8 | mdk 9 | pc-simulator 10 | -------------------------------------------------------------------------------- /docs/src/details/integration/ide/mdk.rst: -------------------------------------------------------------------------------- 1 | === 2 | MDK 3 | === 4 | 5 | TODO 6 | -------------------------------------------------------------------------------- /docs/src/details/integration/os/freertos.rst: -------------------------------------------------------------------------------- 1 | ======== 2 | FreeRTOS 3 | ======== 4 | 5 | TODO 6 | -------------------------------------------------------------------------------- /docs/src/details/integration/os/px5.rst: -------------------------------------------------------------------------------- 1 | ======== 2 | PX5 RTOS 3 | ======== 4 | 5 | See `PX5 RTOS's homepage <https://px5rtos.com/>`__ 6 | 7 | 8 | TODO 9 | -------------------------------------------------------------------------------- /docs/src/details/integration/renderers/nxp_g2d.rst: -------------------------------------------------------------------------------- 1 | =========== 2 | NXP G2D GPU 3 | =========== 4 | 5 | API 6 | *** 7 | 8 | :ref:`lv_draw_g2d_h` 9 | -------------------------------------------------------------------------------- /docs/src/details/integration/renderers/nxp_vglite_gpu.rst: -------------------------------------------------------------------------------- 1 | ============== 2 | NXP VGLite GPU 3 | ============== 4 | 5 | API 6 | *** 7 | 8 | :ref:`lv_draw_vglite_h` 9 | -------------------------------------------------------------------------------- /docs/src/details/integration/renderers/sdl.rst: -------------------------------------------------------------------------------- 1 | ============ 2 | SDL Renderer 3 | ============ 4 | 5 | API 6 | *** 7 | 8 | :ref:`lv_draw_sdl_h` 9 | 10 | -------------------------------------------------------------------------------- /docs/src/details/integration/renderers/stm32_dma2d.rst: -------------------------------------------------------------------------------- 1 | =============== 2 | STM32 DMA2D GPU 3 | =============== 4 | 5 | API 6 | *** 7 | 8 | :ref:`lv_draw_dma2d_h` 9 | 10 | -------------------------------------------------------------------------------- /docs/src/details/integration/renderers/sw.rst: -------------------------------------------------------------------------------- 1 | ================= 2 | Software Renderer 3 | ================= 4 | 5 | API 6 | *** 7 | 8 | .. API startswith: lv_draw_sw 9 | -------------------------------------------------------------------------------- /docs/src/details/libs/rle-compress-statistics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/docs/src/details/libs/rle-compress-statistics.png -------------------------------------------------------------------------------- /docs/src/details/widgets/new_widget.rst: -------------------------------------------------------------------------------- 1 | .. _new_widget: 2 | 3 | ========== 4 | New Widget 5 | ========== 6 | -------------------------------------------------------------------------------- /docs/src/details/xml/build_ui/main_tags/animations.rst: -------------------------------------------------------------------------------- 1 | .. _xml_animations: 2 | 3 | ========== 4 | Animations 5 | ========== 6 | 7 | TODO 8 | -------------------------------------------------------------------------------- /env_support/cmsis-pack/LVGL.lvgl.9.3.0.pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/env_support/cmsis-pack/LVGL.lvgl.9.3.0.pack -------------------------------------------------------------------------------- /env_support/qnx/Makefile: -------------------------------------------------------------------------------- 1 | LIST=CPU 2 | include recurse.mk 3 | -------------------------------------------------------------------------------- /env_support/qnx/aarch64/Makefile: -------------------------------------------------------------------------------- 1 | LIST=VARIANT 2 | include recurse.mk 3 | -------------------------------------------------------------------------------- /env_support/qnx/aarch64/a.le/Makefile: -------------------------------------------------------------------------------- 1 | include ../../common.mk 2 | -------------------------------------------------------------------------------- /env_support/qnx/aarch64/so.le/Makefile: -------------------------------------------------------------------------------- 1 | include ../../common.mk 2 | -------------------------------------------------------------------------------- /env_support/qnx/x86_64/Makefile: -------------------------------------------------------------------------------- 1 | LIST=VARIANT 2 | include recurse.mk 3 | -------------------------------------------------------------------------------- /env_support/qnx/x86_64/a/Makefile: -------------------------------------------------------------------------------- 1 | include ../../common.mk 2 | -------------------------------------------------------------------------------- /env_support/qnx/x86_64/so/Makefile: -------------------------------------------------------------------------------- 1 | include ../../common.mk 2 | -------------------------------------------------------------------------------- /examples/assets/animimg001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/animimg001.png -------------------------------------------------------------------------------- /examples/assets/animimg002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/animimg002.png -------------------------------------------------------------------------------- /examples/assets/animimg003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/animimg003.png -------------------------------------------------------------------------------- /examples/assets/caret_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/caret_down.png -------------------------------------------------------------------------------- /examples/assets/emoji/F600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/emoji/F600.png -------------------------------------------------------------------------------- /examples/assets/emoji/F617.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/emoji/F617.png -------------------------------------------------------------------------------- /examples/assets/font/lv_font_simsun_16_cjk.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/font/lv_font_simsun_16_cjk.fnt -------------------------------------------------------------------------------- /examples/assets/font/montserrat-16.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/font/montserrat-16.fnt -------------------------------------------------------------------------------- /examples/assets/font/montserrat-18.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/font/montserrat-18.fnt -------------------------------------------------------------------------------- /examples/assets/font/montserrat-22.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/font/montserrat-22.fnt -------------------------------------------------------------------------------- /examples/assets/img_caret_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/img_caret_down.png -------------------------------------------------------------------------------- /examples/assets/img_cogwheel_argb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/img_cogwheel_argb.png -------------------------------------------------------------------------------- /examples/assets/img_cogwheel_chroma_keyed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/img_cogwheel_chroma_keyed.png -------------------------------------------------------------------------------- /examples/assets/img_cogwheel_indexed16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/img_cogwheel_indexed16.png -------------------------------------------------------------------------------- /examples/assets/img_cogwheel_rgb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/img_cogwheel_rgb.png -------------------------------------------------------------------------------- /examples/assets/img_hand_hour.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/img_hand_hour.png -------------------------------------------------------------------------------- /examples/assets/img_hand_min.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/img_hand_min.png -------------------------------------------------------------------------------- /examples/assets/img_skew_strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/img_skew_strip.png -------------------------------------------------------------------------------- /examples/assets/img_skew_strip_80x20_argb8888.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/img_skew_strip_80x20_argb8888.fnt -------------------------------------------------------------------------------- /examples/assets/img_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/img_star.png -------------------------------------------------------------------------------- /examples/assets/img_strip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/img_strip.png -------------------------------------------------------------------------------- /examples/assets/imgbtn_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/imgbtn_left.png -------------------------------------------------------------------------------- /examples/assets/imgbtn_mid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/imgbtn_mid.png -------------------------------------------------------------------------------- /examples/assets/imgbtn_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/assets/imgbtn_right.png -------------------------------------------------------------------------------- /examples/header.py: -------------------------------------------------------------------------------- 1 | #!/opt/bin/lv_micropython -i 2 | 3 | import lvgl as lv 4 | import display_driver 5 | -------------------------------------------------------------------------------- /examples/libs/barcode/index.rst: -------------------------------------------------------------------------------- 1 | Create a Barcode 2 | ---------------- 3 | 4 | .. lv_example:: libs/barcode/lv_example_barcode_1 5 | :language: c 6 | 7 | -------------------------------------------------------------------------------- /examples/libs/bmp/example_16bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/libs/bmp/example_16bit.bmp -------------------------------------------------------------------------------- /examples/libs/bmp/example_24bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/libs/bmp/example_24bit.bmp -------------------------------------------------------------------------------- /examples/libs/bmp/example_32bit.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/libs/bmp/example_32bit.bmp -------------------------------------------------------------------------------- /examples/libs/bmp/index.rst: -------------------------------------------------------------------------------- 1 | Open a BMP image from file 2 | -------------------------- 3 | 4 | .. lv_example:: libs/bmp/lv_example_bmp_1 5 | :language: c 6 | 7 | -------------------------------------------------------------------------------- /examples/libs/ffmpeg/birds.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/libs/ffmpeg/birds.mp4 -------------------------------------------------------------------------------- /examples/libs/ffmpeg/ffmpeg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/libs/ffmpeg/ffmpeg.png -------------------------------------------------------------------------------- /examples/libs/freetype/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/libs/freetype/Lato-Regular.ttf -------------------------------------------------------------------------------- /examples/libs/freetype/NotoColorEmoji-32.subset.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/libs/freetype/NotoColorEmoji-32.subset.ttf -------------------------------------------------------------------------------- /examples/libs/gif/bulb.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/libs/gif/bulb.gif -------------------------------------------------------------------------------- /examples/libs/libjpeg_turbo/flower.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/libs/libjpeg_turbo/flower.jpg -------------------------------------------------------------------------------- /examples/libs/libjpeg_turbo/index.rst: -------------------------------------------------------------------------------- 1 | Load a JPG image 2 | ----------------- 3 | 4 | .. lv_example:: libs/libjpeg_turbo/lv_example_libjpeg_turbo_1 5 | :language: c 6 | 7 | -------------------------------------------------------------------------------- /examples/libs/libpng/png_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/libs/libpng/png_demo.png -------------------------------------------------------------------------------- /examples/libs/lodepng/wink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/libs/lodepng/wink.png -------------------------------------------------------------------------------- /examples/libs/qrcode/index.rst: -------------------------------------------------------------------------------- 1 | Create a QR Code 2 | ---------------- 3 | 4 | .. lv_example:: libs/qrcode/lv_example_qrcode_1 5 | :language: c 6 | 7 | -------------------------------------------------------------------------------- /examples/libs/svg/index.rst: -------------------------------------------------------------------------------- 1 | Load and render SVG data 2 | --------------------------------------- 3 | 4 | .. lv_example:: libs/svg/lv_example_svg_1 5 | :language: c 6 | 7 | -------------------------------------------------------------------------------- /examples/libs/tiny_ttf/Ubuntu-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/libs/tiny_ttf/Ubuntu-Medium.ttf -------------------------------------------------------------------------------- /examples/libs/tjpgd/img_lvgl_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/examples/libs/tjpgd/img_lvgl_logo.jpg -------------------------------------------------------------------------------- /examples/libs/tjpgd/index.rst: -------------------------------------------------------------------------------- 1 | Load a JPG image 2 | ------------------ 3 | 4 | .. lv_example:: libs/tjpgd/lv_example_tjpgd_1 5 | :language: c 6 | 7 | -------------------------------------------------------------------------------- /examples/others/imgfont/index.rst: -------------------------------------------------------------------------------- 1 | Use emojis in a text. 2 | --------------------- 3 | 4 | .. lv_example:: others/imgfont/lv_example_imgfont_1 5 | :language: c 6 | 7 | -------------------------------------------------------------------------------- /examples/others/snapshot/index.rst: -------------------------------------------------------------------------------- 1 | Simple snapshot example 2 | ----------------------- 3 | 4 | .. lv_example:: others/snapshot/lv_example_snapshot_1 5 | :language: c 6 | 7 | 8 | -------------------------------------------------------------------------------- /examples/test_ex.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cat ../../header.py $1 > test.py 3 | chmod +x test.py 4 | ./test.py 5 | -------------------------------------------------------------------------------- /examples/widgets/led/index.rst: -------------------------------------------------------------------------------- 1 | 2 | LED with custom style 3 | --------------------- 4 | 5 | .. lv_example:: widgets/led/lv_example_led_1 6 | :language: c 7 | 8 | -------------------------------------------------------------------------------- /examples/widgets/line/index.rst: -------------------------------------------------------------------------------- 1 | 2 | Simple Line 3 | ----------- 4 | 5 | .. lv_example:: widgets/line/lv_example_line_1 6 | :language: c 7 | 8 | -------------------------------------------------------------------------------- /examples/widgets/span/index.rst: -------------------------------------------------------------------------------- 1 | 2 | Span with custom styles 3 | ----------------------- 4 | 5 | .. lv_example:: widgets/span/lv_example_span_1 6 | :language: c 7 | 8 | -------------------------------------------------------------------------------- /examples/widgets/spinbox/index.rst: -------------------------------------------------------------------------------- 1 | 2 | Simple Spinbox 3 | -------------- 4 | 5 | .. lv_example:: widgets/spinbox/lv_example_spinbox_1 6 | :language: c 7 | 8 | -------------------------------------------------------------------------------- /examples/widgets/spinner/index.rst: -------------------------------------------------------------------------------- 1 | 2 | Simple spinner 3 | -------------- 4 | 5 | .. lv_example:: widgets/spinner/lv_example_spinner_1 6 | :language: c 7 | 8 | -------------------------------------------------------------------------------- /examples/widgets/tileview/index.rst: -------------------------------------------------------------------------------- 1 | 2 | Tileview with content 3 | --------------------- 4 | 5 | .. lv_example:: widgets/tileview/lv_example_tileview_1 6 | :language: c 7 | 8 | -------------------------------------------------------------------------------- /examples/widgets/win/index.rst: -------------------------------------------------------------------------------- 1 | 2 | Simple window 3 | ------------- 4 | 5 | .. lv_example:: widgets/win/lv_example_win_1 6 | :language: c 7 | 8 | -------------------------------------------------------------------------------- /libs/nema_gfx/include/build_version.h: -------------------------------------------------------------------------------- 1 | // Build Hash: 41847c80308e08cc83474b118b1bd53ab622cd7e 2 | -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | CHANGELOG_LAST.md 2 | CHANGELOG_LAST.rst 3 | -------------------------------------------------------------------------------- /scripts/built_in_font/DejaVuSans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/scripts/built_in_font/DejaVuSans.ttf -------------------------------------------------------------------------------- /scripts/built_in_font/Montserrat-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/scripts/built_in_font/Montserrat-Medium.ttf -------------------------------------------------------------------------------- /scripts/built_in_font/SourceHanSansSC-Normal.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/scripts/built_in_font/SourceHanSansSC-Normal.otf -------------------------------------------------------------------------------- /scripts/built_in_font/unscii-8.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/scripts/built_in_font/unscii-8.ttf -------------------------------------------------------------------------------- /scripts/prerequisites-pip.txt: -------------------------------------------------------------------------------- 1 | pypng 2 | lz4 3 | kconfiglib 4 | -------------------------------------------------------------------------------- /src/drivers/README.md: -------------------------------------------------------------------------------- 1 | High level drivers for display controllers, frame buffers, etc -------------------------------------------------------------------------------- /src/libs/freetype/arial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/src/libs/freetype/arial.ttf -------------------------------------------------------------------------------- /src/libs/gif/LICENSE.txt: -------------------------------------------------------------------------------- 1 | All of the source code and documentation for gifdec is released into the 2 | public domain and provided without warranty of any kind. 3 | -------------------------------------------------------------------------------- /src/others/fragment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/src/others/fragment/README.md -------------------------------------------------------------------------------- /src/stdlib/builtin/LICENSE_TLSF.txt: -------------------------------------------------------------------------------- 1 | Released under the BSD license. 2 | -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- 1 | *.out 2 | *_Runner.c 3 | *.bin 4 | *_err.png 5 | build_*/ 6 | report/ 7 | wayland_protocols/ 8 | -------------------------------------------------------------------------------- /tests/config.yml: -------------------------------------------------------------------------------- 1 | :unity: 2 | :includes: 3 | - lv_test_init.h 4 | :suite_setup: "lv_test_init();" 5 | :suite_teardown: "lv_test_deinit();return num_failures;" 6 | -------------------------------------------------------------------------------- /tests/makefile/.gitignore: -------------------------------------------------------------------------------- 1 | test_file 2 | -------------------------------------------------------------------------------- /tests/makefile_uefi/.gitignore: -------------------------------------------------------------------------------- 1 | test_file 2 | -------------------------------------------------------------------------------- /tests/micropy_test/font_montserrat_24.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/micropy_test/font_montserrat_24.ttf -------------------------------------------------------------------------------- /tests/micropy_test/image_compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/micropy_test/image_compare.png -------------------------------------------------------------------------------- /tests/micropy_test/test_img_lvgl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/micropy_test/test_img_lvgl_logo.png -------------------------------------------------------------------------------- /tests/ref_imgs/align_flex_center1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/align_flex_center1.png -------------------------------------------------------------------------------- /tests/ref_imgs/align_flex_center2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/align_flex_center2.png -------------------------------------------------------------------------------- /tests/ref_imgs/align_flex_space_around1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/align_flex_space_around1.png -------------------------------------------------------------------------------- /tests/ref_imgs/align_flex_space_around2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/align_flex_space_around2.png -------------------------------------------------------------------------------- /tests/ref_imgs/align_flex_space_between1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/align_flex_space_between1.png -------------------------------------------------------------------------------- /tests/ref_imgs/align_flex_space_between2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/align_flex_space_between2.png -------------------------------------------------------------------------------- /tests/ref_imgs/align_flex_space_evenly1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/align_flex_space_evenly1.png -------------------------------------------------------------------------------- /tests/ref_imgs/align_flex_space_evenly2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/align_flex_space_evenly2.png -------------------------------------------------------------------------------- /tests/ref_imgs/binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/binding.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/bg_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/bg_image_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/blend_to_argb8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/blend_to_argb8888.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/blend_to_rgb565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/blend_to_rgb565.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/blend_to_rgb888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/blend_to_rgb888.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/blend_to_xrgb8888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/blend_to_xrgb8888.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/clip_corner_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/clip_corner_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/draw_layer_bitmap_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/draw_layer_bitmap_mask.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/draw_layer_dispatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/draw_layer_dispatch.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/label_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/label_color.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/label_color_and_opa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/label_color_and_opa.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/label_decor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/label_decor.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/label_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/label_normal.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/label_opa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/label_opa.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/label_selection_and_recolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/label_selection_and_recolor.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/layer_transform_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/layer_transform_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/layer_transform_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/layer_transform_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/letter_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/letter_0.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_1.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_1.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_1.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_1.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_2.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_2.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_2.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_2.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_3.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_3.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_3.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_3.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_4.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_4.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_4.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_4.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_5.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_5.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_5.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_5.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_6.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_6.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_6.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_6.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_7.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_7.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_7.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_7.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_8.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_8.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_com_8.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_com_8.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_group_1.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_group_1.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_group_1.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_group_1.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_group_2.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_group_2.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_group_2.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_group_2.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_group_3.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_group_3.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_group_3.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_group_3.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_group_4.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_group_4.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_group_4.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_group_4.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_0.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_0.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_0.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_0.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_1.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_1.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_1.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_1.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_10.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_10.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_10.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_10.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_11.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_11.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_11.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_11.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_12.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_12.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_12.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_12.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_2.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_2.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_2.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_2.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_3.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_3.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_3.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_3.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_4.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_4.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_4.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_4.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_5.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_5.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_5.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_5.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_6.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_6.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_6.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_6.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_7.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_7.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_7.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_7.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_8.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_8.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_image_8.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_image_8.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_text_1.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_text_1.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_text_1.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_text_1.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_text_2.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_text_2.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/svg_draw_svg_text_2.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/svg_draw_svg_text_2.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/vector_draw_lines.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/vector_draw_lines.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/vector_draw_lines.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/vector_draw_lines.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/vector_draw_shapes.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/vector_draw_shapes.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/draw/vector_draw_shapes.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/draw/vector_draw_shapes.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/flex_hide_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/flex_hide_items.png -------------------------------------------------------------------------------- /tests/ref_imgs/flex_wrap_grow_min_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/flex_wrap_grow_min_width.png -------------------------------------------------------------------------------- /tests/ref_imgs/font_loader_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/font_loader_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/font_loader_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/font_loader_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/font_loader_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/font_loader_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/grid_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/grid_fr.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/barcode_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/barcode_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/barcode_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/barcode_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/barcode_tiled_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/barcode_tiled_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/barcode_tiled_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/barcode_tiled_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/bin_decoder_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/bin_decoder_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/bin_decoder_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/bin_decoder_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/bin_decoder_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/bin_decoder_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/bin_decoder_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/bin_decoder_4.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/bin_decoder_empty_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/bin_decoder_empty_image.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/bmp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/bmp_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/bmp_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/bmp_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/ffmpeg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/ffmpeg_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/ffmpeg_player_error_file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/ffmpeg_player_error_file.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/ffmpeg_player_frame_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/ffmpeg_player_frame_0.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/ffmpeg_player_frame_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/ffmpeg_player_frame_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/ffmpeg_player_frame_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/ffmpeg_player_frame_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/ffmpeg_player_frame_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/ffmpeg_player_frame_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/font_manager_1.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/font_manager_1.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/font_manager_1.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/font_manager_1.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/font_manager_2.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/font_manager_2.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/font_manager_2.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/font_manager_2.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/font_manager_3.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/font_manager_3.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/font_manager_3.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/font_manager_3.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/font_manager_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/font_manager_4.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/jpg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/jpg_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/jpg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/jpg_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/jpg_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/jpg_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/png_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/png_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/qrcode_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/qrcode_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/svg_decoder_1.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/svg_decoder_1.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/svg_decoder_1.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/svg_decoder_1.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/svg_decoder_2.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/svg_decoder_2.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/svg_decoder_2.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/svg_decoder_2.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/svg_decoder_3.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/svg_decoder_3.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/svg_decoder_3.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/svg_decoder_3.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/tiny_ttf_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/tiny_ttf_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/tiny_ttf_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/tiny_ttf_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/libs/tiny_ttf_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/libs/tiny_ttf_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/margin_align_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/margin_align_0.png -------------------------------------------------------------------------------- /tests/ref_imgs/margin_align_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/margin_align_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/margin_flex_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/margin_flex_0.png -------------------------------------------------------------------------------- /tests/ref_imgs/margin_flex_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/margin_flex_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/margin_flex_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/margin_flex_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/margin_flex_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/margin_flex_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/margin_flex_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/margin_flex_4.png -------------------------------------------------------------------------------- /tests/ref_imgs/margin_flex_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/margin_flex_5.png -------------------------------------------------------------------------------- /tests/ref_imgs/margin_grid_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/margin_grid_0.png -------------------------------------------------------------------------------- /tests/ref_imgs/recolor_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/recolor_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/snapshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/snapshot_0.png -------------------------------------------------------------------------------- /tests/ref_imgs/snapshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/snapshot_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/snapshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/snapshot_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/snapshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/snapshot_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/subgrid_col.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/subgrid_col.png -------------------------------------------------------------------------------- /tests/ref_imgs/subgrid_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/subgrid_row.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/arc_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/arc_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/arc_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/arc_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/arc_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/arc_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/arclabel_0.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/arclabel_0.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/arclabel_0.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/arclabel_0.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/arclabel_1.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/arclabel_1.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/arclabel_1.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/arclabel_1.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/arclabel_2.lp32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/arclabel_2.lp32.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/arclabel_2.lp64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/arclabel_2.lp64.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/bar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/bar_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/bar_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/bar_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/bar_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/bar_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/bar_corner_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/bar_corner_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/bar_corner_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/bar_corner_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/bar_corner_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/bar_corner_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/bar_corner_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/bar_corner_4.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/bar_corner_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/bar_corner_5.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/bar_corner_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/bar_corner_6.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/btnm_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/btnm_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/btnm_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/btnm_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/calendar_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/calendar_01.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/calendar_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/calendar_02.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/calendar_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/calendar_03.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/calendar_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/calendar_04.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/calendar_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/calendar_05.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/calendar_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/calendar_06.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/calendar_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/calendar_07.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/calendar_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/calendar_08.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/calendar_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/calendar_09.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/canvas_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/canvas_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/chart_bar_draw_hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/chart_bar_draw_hook.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/chart_line_draw_hook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/chart_line_draw_hook.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/chart_scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/chart_scatter.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/checkbox_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/checkbox_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/checkbox_rtl_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/checkbox_rtl_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/dropdown_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/dropdown_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/dropdown_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/dropdown_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/image_clip_radius_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/image_clip_radius_20.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/image_contain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/image_contain.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/image_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/image_cover.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/image_normal_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/image_normal_align.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/image_stretch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/image_stretch.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/image_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/image_tile.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/image_transform_align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/image_transform_align.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/imagebutton_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/imagebutton_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/imgfont_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/imgfont_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/keyboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/keyboard_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/keyboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/keyboard_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/keyboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/keyboard_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/keyboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/keyboard_4.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_max_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_max_width.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_recolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_recolor.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_0.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_10.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_11.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_12.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_13.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_14.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_15.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_16.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_17.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_18.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_19.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_4.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_5.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_6.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_7.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_8.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_scroll_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_scroll_9.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/label_wrap_clip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/label_wrap_clip.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/led_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/led_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/line_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/line_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/line_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/line_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/list_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/list_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/lottie_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/lottie_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/lottie_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/lottie_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/lottie_2_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/lottie_2_small.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/lottie_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/lottie_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/lottie_3_small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/lottie_3_small.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/lottie_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/lottie_4.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/overlapping_arcs_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/overlapping_arcs_test.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/roller_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/roller_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/roller_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/roller_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/scale_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/scale_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/scale_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/scale_2.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/scale_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/scale_3.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/scale_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/scale_4.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/scale_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/scale_5.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/scale_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/scale_6.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/span_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/span_01.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/span_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/span_02.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/span_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/span_03.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/span_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/span_04.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/span_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/span_05.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/span_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/span_06.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/span_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/span_07.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/span_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/span_08.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/span_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/span_09.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/span_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/span_10.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/span_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/span_11.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/span_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/span_12.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/span_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/span_13.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/spinner_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/spinner_00.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/spinner_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/spinner_01.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/spinner_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/spinner_02.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/spinner_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/spinner_03.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/spinner_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/spinner_04.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/spinner_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/spinner_05.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/spinner_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/spinner_06.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/spinner_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/spinner_07.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/spinner_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/spinner_08.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/spinner_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/spinner_09.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/switch_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/switch_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/table_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/table_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/tabview_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/tabview_01.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/tabview_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/tabview_02.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/tabview_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/tabview_03.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/tabview_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/tabview_04.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/tabview_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/tabview_05.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/tabview_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/tabview_06.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/tabview_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/tabview_07.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/tabview_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/tabview_08.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/tabview_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/tabview_09.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/tabview_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/tabview_10.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/win_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/win_01.png -------------------------------------------------------------------------------- /tests/ref_imgs/widgets/win_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/widgets/win_02.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/complex_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/complex_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/component_create_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/component_create_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/consts_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/consts_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/gradients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/gradients.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/image_and_font_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/image_and_font_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_arc.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_bar.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_buttonmatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_buttonmatrix.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_calendar.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_canvas.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_chart.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_checkbox.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_dropdown.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_image.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_keyboard.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_label.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_roller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_roller.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_scale.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_slider.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_spangroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_spangroup.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_table.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_tabview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_tabview.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/lv_textarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/lv_textarea.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/nested_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/nested_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/params_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/params_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/styles_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/styles_1.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/view2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/view2.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/view3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/view3.png -------------------------------------------------------------------------------- /tests/ref_imgs/xml/widget_create_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs/xml/widget_create_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/align_flex_center1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/align_flex_center1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/align_flex_center2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/align_flex_center2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/binding.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/binding.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/draw/bg_image_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/draw/bg_image_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/draw/blend_to_rgb565.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/draw/blend_to_rgb565.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/draw/blend_to_rgb888.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/draw/blend_to_rgb888.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/draw/clip_corner_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/draw/clip_corner_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/draw/label_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/draw/label_color.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/draw/label_decor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/draw/label_decor.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/draw/label_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/draw/label_normal.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/draw/label_opa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/draw/label_opa.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/draw/letter_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/draw/letter_0.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/flex_hide_items.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/flex_hide_items.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/font_loader_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/font_loader_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/font_loader_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/font_loader_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/font_loader_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/font_loader_3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/grid_fr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/grid_fr.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/barcode_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/barcode_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/barcode_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/barcode_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/barcode_tiled_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/barcode_tiled_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/barcode_tiled_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/barcode_tiled_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/bin_decoder_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/bin_decoder_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/bin_decoder_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/bin_decoder_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/bin_decoder_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/bin_decoder_3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/bin_decoder_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/bin_decoder_4.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/bmp_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/bmp_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/bmp_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/bmp_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/ffmpeg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/ffmpeg_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/font_manager_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/font_manager_4.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/jpg_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/jpg_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/jpg_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/jpg_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/jpg_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/jpg_3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/png_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/png_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/qrcode_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/qrcode_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/tiny_ttf_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/tiny_ttf_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/tiny_ttf_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/tiny_ttf_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/libs/tiny_ttf_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/libs/tiny_ttf_3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/margin_align_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/margin_align_0.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/margin_align_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/margin_align_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/margin_flex_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/margin_flex_0.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/margin_flex_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/margin_flex_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/margin_flex_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/margin_flex_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/margin_flex_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/margin_flex_3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/margin_flex_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/margin_flex_4.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/margin_flex_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/margin_flex_5.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/margin_grid_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/margin_grid_0.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/recolor_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/recolor_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/snapshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/snapshot_0.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/snapshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/snapshot_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/snapshot_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/snapshot_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/snapshot_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/snapshot_3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/subgrid_col.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/subgrid_col.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/subgrid_row.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/subgrid_row.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/arc_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/arc_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/arc_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/arc_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/arc_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/arc_3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/bar_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/bar_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/bar_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/bar_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/bar_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/bar_3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/bar_corner_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/bar_corner_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/bar_corner_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/bar_corner_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/bar_corner_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/bar_corner_3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/bar_corner_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/bar_corner_4.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/bar_corner_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/bar_corner_5.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/bar_corner_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/bar_corner_6.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/btnm_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/btnm_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/btnm_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/btnm_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/calendar_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/calendar_01.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/calendar_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/calendar_02.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/calendar_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/calendar_03.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/calendar_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/calendar_04.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/calendar_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/calendar_05.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/calendar_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/calendar_06.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/calendar_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/calendar_07.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/calendar_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/calendar_08.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/calendar_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/calendar_09.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/canvas_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/canvas_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/chart_scatter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/chart_scatter.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/checkbox_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/checkbox_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/dropdown_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/dropdown_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/dropdown_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/dropdown_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/image_contain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/image_contain.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/image_cover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/image_cover.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/image_stretch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/image_stretch.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/image_tile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/image_tile.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/imagebutton_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/imagebutton_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/imgfont_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/imgfont_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/keyboard_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/keyboard_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/keyboard_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/keyboard_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/keyboard_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/keyboard_3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/keyboard_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/keyboard_4.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/label_recolor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/label_recolor.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/led_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/led_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/line_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/line_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/line_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/line_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/list_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/list_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/lottie_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/lottie_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/lottie_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/lottie_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/lottie_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/lottie_3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/lottie_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/lottie_4.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/roller_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/roller_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/roller_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/roller_3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/scale_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/scale_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/scale_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/scale_2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/scale_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/scale_3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/scale_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/scale_4.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/scale_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/scale_5.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/scale_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/scale_6.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/span_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/span_01.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/span_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/span_02.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/span_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/span_03.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/span_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/span_04.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/span_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/span_05.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/span_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/span_06.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/span_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/span_07.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/span_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/span_08.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/span_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/span_09.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/span_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/span_10.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/span_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/span_11.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/span_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/span_12.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/span_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/span_13.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/spinner_00.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/spinner_00.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/spinner_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/spinner_01.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/spinner_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/spinner_02.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/spinner_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/spinner_03.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/spinner_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/spinner_04.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/spinner_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/spinner_05.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/spinner_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/spinner_06.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/spinner_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/spinner_07.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/spinner_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/spinner_08.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/spinner_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/spinner_09.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/switch_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/switch_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/table_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/table_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/tabview_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/tabview_01.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/tabview_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/tabview_02.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/tabview_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/tabview_03.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/tabview_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/tabview_04.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/tabview_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/tabview_05.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/tabview_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/tabview_06.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/tabview_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/tabview_07.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/tabview_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/tabview_08.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/tabview_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/tabview_09.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/tabview_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/tabview_10.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/win_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/win_01.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/widgets/win_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/widgets/win_02.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/complex_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/complex_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/consts_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/consts_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/gradients.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/gradients.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/image_and_font_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/image_and_font_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_arc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_arc.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_bar.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_buttonmatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_buttonmatrix.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_calendar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_calendar.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_canvas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_canvas.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_chart.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_checkbox.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_dropdown.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_image.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_keyboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_keyboard.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_label.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_roller.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_roller.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_scale.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_slider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_slider.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_spangroup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_spangroup.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_table.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_table.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_tabview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_tabview.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/lv_textarea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/lv_textarea.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/nested_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/nested_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/params_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/params_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/styles_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/styles_1.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/view2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/view2.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/view3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/view3.png -------------------------------------------------------------------------------- /tests/ref_imgs_vg_lite/xml/widget_create_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/ref_imgs_vg_lite/xml/widget_create_1.png -------------------------------------------------------------------------------- /tests/src/test_assets/test_arc_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_assets/test_arc_bg.png -------------------------------------------------------------------------------- /tests/src/test_assets/test_font_1.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_assets/test_font_1.fnt -------------------------------------------------------------------------------- /tests/src/test_assets/test_font_2.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_assets/test_font_2.fnt -------------------------------------------------------------------------------- /tests/src/test_assets/test_font_3.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_assets/test_font_3.fnt -------------------------------------------------------------------------------- /tests/src/test_assets/test_gpos_one.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_assets/test_gpos_one.ttf -------------------------------------------------------------------------------- /tests/src/test_assets/test_img_emoji_F600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_assets/test_img_emoji_F600.png -------------------------------------------------------------------------------- /tests/src/test_assets/test_img_lvgl_logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_assets/test_img_lvgl_logo.bmp -------------------------------------------------------------------------------- /tests/src/test_assets/test_img_lvgl_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_assets/test_img_lvgl_logo.jpg -------------------------------------------------------------------------------- /tests/src/test_assets/test_img_lvgl_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_assets/test_img_lvgl_logo.png -------------------------------------------------------------------------------- /tests/src/test_assets/test_video_birds.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_assets/test_video_birds.mp4 -------------------------------------------------------------------------------- /tests/src/test_files/binimages/cogwheel.A8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_files/binimages/cogwheel.A8.bin -------------------------------------------------------------------------------- /tests/src/test_files/binimages/cogwheel.I1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_files/binimages/cogwheel.I1.bin -------------------------------------------------------------------------------- /tests/src/test_files/binimages/cogwheel.I2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_files/binimages/cogwheel.I2.bin -------------------------------------------------------------------------------- /tests/src/test_files/binimages/cogwheel.I4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_files/binimages/cogwheel.I4.bin -------------------------------------------------------------------------------- /tests/src/test_files/binimages/cogwheel.I8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_files/binimages/cogwheel.I8.bin -------------------------------------------------------------------------------- /tests/src/test_files/binimages/cogwheel.L8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_files/binimages/cogwheel.L8.bin -------------------------------------------------------------------------------- /tests/src/test_files/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/src/test_files/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /tests/src/test_libs/rnd_unicodes/rnd_unicodes/.gitignore: -------------------------------------------------------------------------------- 1 | cmake-build-* 2 | build/* 3 | .idea 4 | *.o 5 | .DS_Store 6 | -------------------------------------------------------------------------------- /tests/test_images/pngs/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/pngs/test.png -------------------------------------------------------------------------------- /tests/test_images/stride_align1/LZ4/test_A1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/LZ4/test_A1.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/LZ4/test_A2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/LZ4/test_A2.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/LZ4/test_A4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/LZ4/test_A4.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/LZ4/test_A8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/LZ4/test_A8.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/LZ4/test_I1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/LZ4/test_I1.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/LZ4/test_I2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/LZ4/test_I2.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/LZ4/test_I4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/LZ4/test_I4.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/LZ4/test_I8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/LZ4/test_I8.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/LZ4/test_L8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/LZ4/test_L8.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/RLE/test_A1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/RLE/test_A1.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/RLE/test_A2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/RLE/test_A2.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/RLE/test_A4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/RLE/test_A4.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/RLE/test_A8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/RLE/test_A8.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/RLE/test_I1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/RLE/test_I1.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/RLE/test_I2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/RLE/test_I2.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/RLE/test_I4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/RLE/test_I4.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/RLE/test_I8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/RLE/test_I8.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align1/RLE/test_L8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align1/RLE/test_L8.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/LZ4/test_A1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/LZ4/test_A1.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/LZ4/test_A2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/LZ4/test_A2.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/LZ4/test_A4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/LZ4/test_A4.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/LZ4/test_A8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/LZ4/test_A8.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/LZ4/test_I1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/LZ4/test_I1.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/LZ4/test_I2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/LZ4/test_I2.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/LZ4/test_I4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/LZ4/test_I4.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/LZ4/test_I8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/LZ4/test_I8.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/LZ4/test_L8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/LZ4/test_L8.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/RLE/test_A1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/RLE/test_A1.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/RLE/test_A2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/RLE/test_A2.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/RLE/test_A4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/RLE/test_A4.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/RLE/test_A8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/RLE/test_A8.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/RLE/test_I1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/RLE/test_I1.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/RLE/test_I2.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/RLE/test_I2.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/RLE/test_I4.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/RLE/test_I4.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/RLE/test_I8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/RLE/test_I8.bin -------------------------------------------------------------------------------- /tests/test_images/stride_align64/RLE/test_L8.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lvgl/lvgl/8dfb51a832c86e72e899ac057a94dc5a255dcf1c/tests/test_images/stride_align64/RLE/test_L8.bin -------------------------------------------------------------------------------- /xmls/lv_button.xml: -------------------------------------------------------------------------------- 1 | <!-- 2 | Example: 3 | <lv_button> 4 | <lv_label text="hello"/> 5 | </lv_button> 6 | --> 7 | 8 | <widget> 9 | <api> 10 | </api> 11 | </widget> -------------------------------------------------------------------------------- /zephyr/Kconfig: -------------------------------------------------------------------------------- 1 | if LVGL 2 | rsource "../Kconfig" 3 | endif 4 | -------------------------------------------------------------------------------- /zephyr/module.yml: -------------------------------------------------------------------------------- 1 | # https://docs.zephyrproject.org/latest/guides/modules.html 2 | name: lvgl 3 | build: 4 | cmake-ext: True 5 | kconfig: zephyr/Kconfig 6 | --------------------------------------------------------------------------------