Home
last modified time | relevance | path

Searched +full:fetch +full:- +full:depth (Results 1 – 9 of 9) sorted by relevance

/lvgl-latest/.github/workflows/
Drelease_branch_updater.yml6 - 'release/v*' # on release branches
9 # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurren…
12 group: ${{ github.ref }}-${{ github.workflow }}
13 cancel-in-progress: true
16 run-release-branch-updater:
18 runs-on: ubuntu-24.04
21 - name: Checkout LVGL
25 fetch-depth: 0 # fetch all
27 - name: set git credentials
29 git config user.name 'lvgl-bot'
[all …]
Dcheck_conf.yml6 # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurren…
9 group: ${{ github.ref }}-${{ github.workflow }}
10 cancel-in-progress: true
13 verify-conf-internal:
15 runs-on: ubuntu-22.04
17 - name: Checkout
20 persist-credentials: false
21 fetch-depth: 0
22 - name: Setup Python
23 uses: actions/setup-python@v5
[all …]
Dcheck_properties.yml6 # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurren…
9 group: ${{ github.ref }}-${{ github.workflow }}
10 cancel-in-progress: true
13 verify-property-name:
15 runs-on: ubuntu-22.04
17 - name: Checkout
20 persist-credentials: false
21 fetch-depth: 0
22 - name: Generate property names
24 working-directory: scripts
[all …]
Dverify_kconfig.yml6 # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurren…
9 group: ${{ github.ref }}-${{ github.workflow }}
10 cancel-in-progress: true
13 verify-kconfig:
15 runs-on: ubuntu-22.04
17 - name: Checkout
20 persist-credentials: false
21 fetch-depth: 0
22 - name: Setup Python
23 uses: actions/setup-python@v5
[all …]
Dcheck_style.yml6 # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurren…
9 group: ${{ github.ref }}-${{ github.workflow }}
10 cancel-in-progress: true
13 verify-formatting:
15 runs-on: ubuntu-22.04
17 - name: Checkout
20 persist-credentials: false
21 fetch-depth: 0
22 - name: Checkout astyle
28 - name: Install astyle
[all …]
Dcheck_bom.yml7 # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurren…
10 group: ${{ github.ref }}-${{ github.workflow }}
11 cancel-in-progress: true
14 bom-check:
16 runs-on: ubuntu-22.04
18 - name: Checkout
21 persist-credentials: false
22 fetch-depth: 0
24 - name: UTF-8 BOM
26-oarlE -m 1 --include="*.c" --include="*.h" --include="*.rst" --include="*.txt" --include="*.mk" -…
[all …]
Dcompile_docs.yml5 - master
6 - 'release/*'
8 # https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#concurren…
11 group: ${{ github.ref }}-${{ github.workflow }}
12 cancel-in-progress: true
16 EM_CACHE_FOLDER: 'emsdk-cache'
18 build-and-deploy:
20 runs-on: ubuntu-22.04
21 concurrency: docs-build-and-deploy
23 - name: Checkout
[all …]
/lvgl-latest/src/drivers/x11/
Dlv_x11_display.c40 …/* header (containing X Display + input user data pointer - keep aligned with x11_input module!) */
46 int dplanes; /**< X11 display depth */
101 #warning ("LV_COLOR_DEPTH=8 delivers black data only - open issue in lvgl?")
125 xd->flush_area.x1 = MIN(xd->flush_area.x1, area->x1); in x11_flush_cb()
126 xd->flush_area.x2 = MAX(xd->flush_area.x2, area->x2); in x11_flush_cb()
127 xd->flush_area.y1 = MIN(xd->flush_area.y1, area->y1); in x11_flush_cb()
128 xd->flush_area.y2 = MAX(xd->flush_area.y2, area->y2); in x11_flush_cb()
135 area->y1 + area->x1); in x11_flush_cb()
136 for(int16_t y = area->y1; y <= area->y2; y++) { in x11_flush_cb()
137 dst_offs = area->x1 + y * hor_res; in x11_flush_cb()
[all …]
/lvgl-latest/src/libs/freetype/
Dftoption.h5 * User-selectable configuration macros (specification only).
7 * Copyright (C) 1996-2022 by
27 * USER-SELECTABLE CONFIGURATION MACROS
31 * this file to build project-specific versions of the library:
33 * - You can modify this file by hand, but this is not recommended in
37 * - You can put a copy of this file in your build directory, more
46 * - Copy the file <ft2build.h> to `$BUILD/ft2build.h` and modify it
47 * slightly to pre-define the macro `FT_CONFIG_OPTIONS_H` used to locate
58 * Note also that you can similarly pre-define the macro
91 * <module-name1> ':'
[all …]