/lvgl-3.7.0/src/draw/sw/ |
D | lv_draw_sw_dither.c | 115 …C) A.ch.red = LV_CLAMP(0, A.ch.red OP B.r OP C.r, 255); A.ch.green = LV_CLAMP(0, A.ch.green OP B.g… in lv_dither_err_diff_hor() argument 177 #define FS_COMPONENTS3(A, OP, B, b, C, c, D, d) \ in lv_dither_err_diff_ver() argument 178 A.ch.red = LV_CLAMP(0, A.ch.red OP ((B.r * b OP C.r * c OP D.r * d) >> 4), 255); \ in lv_dither_err_diff_ver() 179 A.ch.green = LV_CLAMP(0, A.ch.green OP ((B.r * b OP C.r * c OP D.r * d) >> 4), 255); \ in lv_dither_err_diff_ver() 180 A.ch.blue = LV_CLAMP(0, A.ch.blue OP ((B.r * b OP C.r * c OP D.r * d) >> 4), 255); in lv_dither_err_diff_ver()
|
/lvgl-3.7.0/env_support/rt-thread/squareline/ |
D | README.md | 3 …ut the generated C files into `ui` folder, so that rt-thread will automatically detect them; or, a…
|
/lvgl-3.7.0/src/draw/sdl/ |
D | README.md | 28 Contains modified code from [C-LRU-Cache](https://github.com/willcannings/C-LRU-Cache) project. No …
|
/lvgl-3.7.0/docs/get-started/bindings/ |
D | micropython.md | 21 …o map into a higher level language, such as Python. LVGL is implemented in C and its APIs are in C. 26 - Usually, GUI development requires multiple iterations to get things right. With C, each iteration… 34 - Make LVGL accessible to a larger audience. No need to know C to create a nice GUI on an embedded … 43 > It's very much like the C API, but Object-Oriented for LVGL components. 84 Drivers can be implemented either in C as a Micropython module, or in pure Micropython!
|
/lvgl-3.7.0/docs/libs/ |
D | gif.md | 10 ## Convert GIF files to C array 11 …rter](https://lvgl.io/tools/imageconverter). Select "Raw" color format and "C array" Output format.
|
D | sjpg.md | 30 ### Converting JPG to C array 32 - Color format = RAW, output format = C Array 40 - `python3 jpg_to_sjpg.py image_to_convert.jpg`. It creates both a C files and an SJPG image.
|
D | bmp.md | 16 - Only BMP files are supported and BMP images as C array (`lv_img_dsc_t`) are not. It's because the… 17 …rom file. If you want to store them in flash it's better to convert them to C array with [LVGL's i…
|
D | rlottie.md | 6 LVGL provides the interface to [Samsung/rlottie](https://github.com/Samsung/rlottie) library's C AP… 9 To build Samsung's Rlottie C++14-compatible compiler and optionally CMake 3.14 or higher is require… 42 Note that, Rlottie uses the standard STDIO C file API, so you can use the path "normally" and no LV…
|
D | fsdrv.md | 28 Bride to C standard functions on Linux and Windows. For example `fopen`, `fread`, etc.
|
/lvgl-3.7.0/env_support/cmsis-pack/ |
D | README.md | 161 CMSIS_PACK_PATH="/C/Users/gabriel/AppData/Local/Arm/Packs/ARM/CMSIS/5.7.0" 162 PATH_TO_ADD="/C/Program Files (x86)/7-Zip/:$CMSIS_PACK_PATH/CMSIS/Utilities/Win32/:/C/xmllint/"
|
/lvgl-3.7.0/docs/get-started/platforms/ |
D | cmake.md | 8 …econfigured targets you can also use "plain" CMake to integrate LVGL into any custom C/C++ project. 23 project(MyProject LANGUAGES C CXX)
|
D | pc-simulator.md | 37 [Eclipse CDT](https://eclipse.org/cdt/) is a C/C++ IDE. 92 - Right-click on the project -> Project properties -> C/C++ Build -> Settings -> Librar…
|
D | tasmota-berry.md | 41 - Make LVGL accessible to a larger audience. No need to know C to create a nice GUI on an embedded … 50 > Similar to MicroPython, it's very much like the C API, but Object-Oriented for LVGL components.
|
/lvgl-3.7.0/ |
D | README_zh.md | 47 * 全部由C编写完成,并支持C++调用 141 ### C subsection
|
D | README.md | 45 * Written in C and compatible with C++ 138 ### C subsection
|
D | README_pt_BR.md | 42 * Escrito em C e compatível com C++ 153 ### C subsection
|
/lvgl-3.7.0/docs/widgets/core/ |
D | img.md | 18 - a variable in code (a C array with the pixels). 25 To make the variable visible in the C file, you need to declare it with `LV_IMG_DECLARE(converted_i… 87 In other words transformations work only on true color images stored as C array, or if a custom [Im…
|
/lvgl-3.7.0/docs/get-started/os/ |
D | nuttx.md | 24 LVGL is implemented in C and its APIs are in C.
|
D | rt-thread.md | 14 - A variety of standard interfaces, such as POSIX, CMSIS, C++ application environment. 48 …please select the root path of the BSP which you prefer to import, such as `C:\Users\xxx\Desktop\r…
|
/lvgl-3.7.0/docs/intro/ |
D | index.md | 18 - Written in C for maximal compatibility (C++ compatible) 42 <li> Basic C (or C++) knowledge:
|
/lvgl-3.7.0/docs/layouts/ |
D | flex.md | 65 - `C` with grow = 2 67 `A` and `B` will have 100 px size, and `C` will have 200 px size.
|
/lvgl-3.7.0/docs/overview/ |
D | image.md | 21 These are usually stored within a project as C files. They are linked into the resulting executable… 77 …ng the [file support](#files). Choosing a variable will generate a standard C file that can be lin… 80 In the generated C arrays (variables), bitmaps for all the color depths (1, 8, 16 or 32) are includ… 173 * @param src can be file name or pointer to a C array
|
D | file-system.md | 8 …m/lvgl/lv_fs_if) repository contains prepared drivers using POSIX, standard C and the [FATFS](http…
|
/lvgl-3.7.0/tests/ |
D | CMakeLists.txt | 10 project(lvgl_tests LANGUAGES C)
|
/lvgl-3.7.0/scripts/ |
D | Doxyfile | 201 # multi-line C++ special comment block (i.e. a block of //! or /// comments) as 203 # to treat a multi-line C++ comment block as a detailed description. Set this 249 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources 250 # only. Doxygen will then generate output that is more tailored for C. For 282 # C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran: 287 # and .f files as C (default is Fortran), use: inc=Fortran f=C. 333 # If you use Microsoft's C++/CLI language, you should set this option to YES to 341 # will parse them like normal C++ but will assume all classes use public instead 407 # useful for C code in case the coding convention dictates that all compound 466 # This flag is only useful for Objective-C code. If set to YES, local methods, [all …]
|