Home
last modified time | relevance | path

Searched +full:test +full:- +full:cross (Results 1 – 5 of 5) sorted by relevance

/lvgl-latest/docs/
DCHANGELOG.md7 - feat(table): add user_data to table cells [`4767`](https://github.com/lvgl/lvgl/pull/4767)
8 - feat(tiny_ttf): backport Tiny TTF to lvgl 8 [`4727`](https://github.com/lvgl/lvgl/pull/4727)
9 - feat(littlefs): add lv_fs_littlefs system as a driver [`4677`](https://github.com/lvgl/lvgl/pull/…
13 - fix(obj): readjust scroll after layout when child removed [`4921`](https://github.com/lvgl/lvgl/p…
14 - fix(rt-thread): fix create lvgl thread problem [`4862`](https://github.com/lvgl/lvgl/pull/4862)
15 - fix(obj): fix arduino compile warnings [`4807`](https://github.com/lvgl/lvgl/pull/4807)
16 - fix(table):fix issue with abnormal string output of 'lv_table_set_cell_value_fmt' [`4804`](https:…
17 - fix(table) user data API functions renamed [`4769`](https://github.com/lvgl/lvgl/pull/4769)
18 - fix(ime_pinyin): keep cursor in the textarea when a candidate is pressed [`4731`](https://github.…
19 - fix(draw_needles): changed needle line draw start point from scale ce… [`4682`](https://github.co…
[all …]
/lvgl-latest/.github/workflows/
Dccpp.yml12 runs-on: ubuntu-latest
24 - uses: actions/checkout@v2
25 - uses: ammaraskar/gcc-problem-matcher@master
26 - name: Install prerequisites
27 run: scripts/install-prerequisites.sh
28 - name: Building ${{ matrix.build_option }}
29 run: python tests/main.py --build-option=${{ matrix.build_option }} build
31 test-native:
32 runs-on: ubuntu-latest
35 - uses: actions/checkout@v2
[all …]
/lvgl-latest/scripts/
DDoxyfile16 #---------------------------------------------------------------------------
18 #---------------------------------------------------------------------------
21 # that follow. The default is UTF-8 which is also the encoding used for all text
25 # The default value is: UTF-8.
27 DOXYFILE_ENCODING = UTF-8
30 # double-quotes, unless you are using Doxywizard) that should identify the
63 # If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
73 # If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
74 # characters to appear in the names of generated files. If set to NO, non-ASCII
85 # Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
[all …]
/lvgl-latest/src/draw/
Dlv_draw_mask.c107 * - `LV_DRAW_MASK_RES_FULL_TRANSP`: the whole line is transparent. `mask_buf` is not set to zero
108 * - `LV_DRAW_MASK_RES_FULL_COVER`: the whole line is fully visible. `mask_buf` is unchanged
109 …* - `LV_DRAW_MASK_RES_CHANGED`: `mask_buf` has changed, it shows the desired opacity of each pixel…
119 while(m->param) { in lv_draw_mask_apply()
120 dsc = m->param; in lv_draw_mask_apply()
122 res = dsc->cb(mask_buf, abs_x, abs_y, len, (void *)m->param); in lv_draw_mask_apply()
141 * - `LV_DRAW_MASK_RES_FULL_TRANSP`: the whole line is transparent. `mask_buf` is not set to zero
142 * - `LV_DRAW_MASK_RES_FULL_COVER`: the whole line is fully visible. `mask_buf` is unchanged
143 …* - `LV_DRAW_MASK_RES_CHANGED`: `mask_buf` has changed, it shows the desired opacity of each pixel…
158 res = dsc->cb(mask_buf, abs_x, abs_y, len, dsc); in lv_draw_mask_apply_ids()
[all …]
/lvgl-latest/src/extra/libs/tiny_ttf/
Dstb_truetype_htcw.h1 // stb_truetype.h - v1.26htcw (fork to enable streaming and low memory environments)
2 // stb_truetype.h - v1.26 - public domain
3 // authored from 2009-2021 by Sean Barrett / RAD Game Tools
7 // NO SECURITY GUARANTEE -- DO NOT USE THIS ON UNTRUSTED FONT FILES
18 // render glyphs to one-channel bitmaps with antialiasing (box filter)
19 // render glyphs to one-channel SDF bitmaps (signed-distance field/function)
22 // non-MS cmaps
25 // cleartype-style AA?
27 // optimize: build edge-list directly from curves
35 // Daniel Ribeiro Maciel: basic GPOS-based kerning
[all …]