Home
last modified time | relevance | path

Searched refs:extension (Results 1 – 10 of 10) sorted by relevance

/lvgl-3.7.0/src/draw/sdl/
Dlv_draw_sdl_composite.c55 … const lv_area_t * extension, lv_blend_mode_t blend_mode, lv_area_t * coords_out, in lv_draw_sdl_composite_begin() argument
72 if(extension) { in lv_draw_sdl_composite_begin()
73 full_coords.x1 -= extension->x1; in lv_draw_sdl_composite_begin()
74 full_coords.x2 += extension->x2; in lv_draw_sdl_composite_begin()
75 full_coords.y1 -= extension->y1; in lv_draw_sdl_composite_begin()
76 full_coords.y2 += extension->y2; in lv_draw_sdl_composite_begin()
Dlv_draw_sdl_rect.c140 lv_area_t extension = {0, 0, 0, 0}; in lv_draw_sdl_draw_rect() local
143 extension.x1 = LV_MAX(extension.x1, -dsc->shadow_ofs_x + ext); in lv_draw_sdl_draw_rect()
144 extension.x2 = LV_MAX(extension.x2, dsc->shadow_ofs_x + ext); in lv_draw_sdl_draw_rect()
145 extension.y1 = LV_MAX(extension.y1, -dsc->shadow_ofs_y + ext); in lv_draw_sdl_draw_rect()
146 extension.y2 = LV_MAX(extension.y2, dsc->shadow_ofs_y + ext); in lv_draw_sdl_draw_rect()
150 extension.x1 = LV_MAX(extension.x1, ext); in lv_draw_sdl_draw_rect()
151 extension.x2 = LV_MAX(extension.x2, ext); in lv_draw_sdl_draw_rect()
152 extension.y1 = LV_MAX(extension.y1, ext); in lv_draw_sdl_draw_rect()
153 extension.y2 = LV_MAX(extension.y2, ext); in lv_draw_sdl_draw_rect()
157 …bool has_composite = lv_draw_sdl_composite_begin(ctx, coords, clip, &extension, dsc->blend_mode, &… in lv_draw_sdl_draw_rect()
Dlv_draw_sdl_composite.h58 … const lv_area_t * extension, lv_blend_mode_t blend_mode, lv_area_t * coords_out,
Dlv_draw_sdl_line.c82 lv_area_t extension = {dsc->width / 2, dsc->width / 2, dsc->width / 2, dsc->width / 2}; in lv_draw_sdl_draw_line() local
83 …lv_draw_sdl_composite_begin(sdl_ctx, &coords, clip, &extension, dsc->blend_mode, &t_coords, &t_cli… in lv_draw_sdl_draw_line()
/lvgl-3.7.0/docs/libs/
Dffmpeg.md20 Note that, the FFmpeg extension doesn't use LVGL's file system.
Dbmp.md4 This extension allows the use of BMP images in LVGL.
Dfreetype.md33 Note that, the FreeType extension doesn't use LVGL's file system.
Dfsdrv.md5 You still need to provide the drivers and libraries, this extension provides only the bridge betwee…
/lvgl-3.7.0/scripts/
DDoxyfile277 # Doxygen selects the parser to use depending on the extension of the files it
279 # extension. Doxygen has a built-in mapping, but you can override or extend it
280 # using this tag. The format is ext=language, where ext is a file extension, and
289 # Note: For files without extension you can use no_extension as a placeholder.
710 # extension is automatically appended if omitted. This requires the bibtex tool
809 # need to set EXTENSION_MAPPING for the extension otherwise the files are not
908 # need to set EXTENSION_MAPPING for the extension otherwise the files are not
921 # need to set EXTENSION_MAPPING for the extension otherwise the files are not
1096 # The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
1523 # extension names that should be enabled during MathJax rendering. For example
[all …]
/lvgl-3.7.0/docs/
DCHANGELOG.md466 - fix(libs): fix possible buffer underflow caused by extension matching [`3250`](https://github.com…
1930 - Add `lv_theme_set_base()` to allow easy extension of built-in (or any) themes