Lines Matching +full:working +full:- +full:directory

9 /* clang-format off */
69 /* Renamed config backwards-compatibility */
78 /*----------------------------------
80 -----------------------------------*/
105 * - LV_STDLIB_BUILTIN: LVGL's built in implementation
106 * - LV_STDLIB_CLIB: Standard C functions, like malloc, strlen, etc
107 * - LV_STDLIB_MICROPYTHON: MicroPython implementation
108 * - LV_STDLIB_RTTHREAD: RT-Thread implementation
109 * - LV_STDLIB_CUSTOM: Implement the functions externally
120 * - LV_STDLIB_BUILTIN: LVGL's built in implementation
121 * - LV_STDLIB_CLIB: Standard C functions, like malloc, strlen, etc
122 * - LV_STDLIB_MICROPYTHON: MicroPython implementation
123 * - LV_STDLIB_RTTHREAD: RT-Thread implementation
124 * - LV_STDLIB_CUSTOM: Implement the functions externally
135 * - LV_STDLIB_BUILTIN: LVGL's built in implementation
136 * - LV_STDLIB_CLIB: Standard C functions, like malloc, strlen, etc
137 * - LV_STDLIB_MICROPYTHON: MicroPython implementation
138 * - LV_STDLIB_RTTHREAD: RT-Thread implementation
139 * - LV_STDLIB_CUSTOM: Implement the functions externally
265 * - LV_OS_NONE
266 * - LV_OS_PTHREAD
267 * - LV_OS_FREERTOS
268 * - LV_OS_CMSIS_RTOS2
269 * - LV_OS_RTTHREAD
270 * - LV_OS_WINDOWS
271 * - LV_OS_MQX
272 * - LV_OS_SDL2
273 * - LV_OS_CUSTOM */
338 * - `LV_USE_MATRIX = 1`.
339 * - Rendering engine needs to support 3x3 matrix transformations. */
400 * - gradients use RGB888
401 * - bitmaps with transparency may use ARGB8888
514 * - > 1 requires operating system to be enabled in `LV_USE_OS`.
515 * - > 1 means multiple threads will render the screen in parallel. */
528 /** Use Arm-2D to accelerate software (sw) rendering. */
547 …* - 0: Use a simple renderer capable of drawing only simple rectangles with gradient, images, text…
548 …* - 1: Use a complex renderer capable of drawing rounded corners, shadow, skew lines, and arcs too…
573 /** Set number of maximally-cached circle data.
574 * The circumference of 1/4 circle are saved for anti-aliasing.
576 * - 0: disables caching */
625 * - LV_NEMA_HAL_CUSTOM
626 * - LV_NEMA_HAL_STM32 */
671 /** Use NXP's VG-Lite GPU on iMX RTxxx platforms. */
691 /** Use additional draw thread for VG-Lite processing. */
805 /** Use VG-Lite GPU. */
815 /** Enable VG-Lite custom external 'gpu_init()' function */
824 /** Enable VG-Lite assert. */
833 /** VG-Lite flush commit trigger threshold. GPU will try to batch these many draw tasks. */
853 /** VG-Lite gradient maximum cache number.
863 /** VG-Lite stroke maximum cache number. */
916 /*-------------
918 *-----------*/
930 * - LV_LOG_LEVEL_TRACE Log detailed information.
931 * - LV_LOG_LEVEL_INFO Log important events.
932 * - LV_LOG_LEVEL_WARN Log if something unwanted happened but didn't cause a problem.
933 * - LV_LOG_LEVEL_ERROR Log only critical issues, when system may fail.
934 * - LV_LOG_LEVEL_USER Log only custom log messages added by the user.
935 * - LV_LOG_LEVEL_NONE Do not log anything. */
944 /** - 1: Print log with 'printf';
945 * - 0: User needs to register a callback with `lv_log_register_print_cb()`. */
959 /** - 1: Enable printing timestamp;
960 * - 0: Disable printing timestamp. */
973 /** - 1: Print file and line number of the log;
974 * - 0: Do not print file and line number of the log. */
1029 …#define LV_LOG_TRACE_DISP_REFR 1 /**< Enable/disable trace logs in display re-draw operations. …
1062 …#define LV_LOG_TRACE_LAYOUT 1 /**< Enable/disable trace logs in flex- and grid-layout operat…
1089 /*-------------
1091 *-----------*/
1155 /*-------------
1157 *-----------*/
1178 * - Draw overlays with different colors for each draw_unit's tasks.
1179 * - Draw index number of draw unit on white background.
1180 * - For layers, draws index number of draw unit on black background. */
1189 /*-------------
1191 *-----------*/
1245 * - 0: round down,
1246 * - 64: round up from x.75,
1247 * - 128: round up from half,
1248 * - 192: round up from x.25,
1249 * - 254: round up */
1258 /** Add 2 x 32-bit variables to each `lv_obj_t` to speed up getting style properties */
1286 * - lv_obj_assign_id: Called when a widget is created. Use a separate counter for each widget…
1287 * - lv_obj_id_compare: Compare the ID to decide if it matches with a requested value.
1288 * - lv_obj_stringify_id: Return string-ified identifier, e.g. "button3".
1289 * - lv_obj_free_id: Does nothing, as there is no memory allocation for the ID.
1325 /* Use VG-Lite Simulator.
1326 * - Requires: LV_USE_THORVG_INTERNAL or LV_USE_THORVG_EXTERNAL */
1385 /** Enable multi-thread render */
1395 /* Enable the multi-touch gesture recognition feature */
1459 /** Will be added where memory needs to be aligned (with -Os data might not be aligned to boundary …
1525 * - Requires `LV_USE_FLOAT = 1` */
1813 * - LV_TXT_ENC_UTF8
1814 * - LV_TXT_ENC_ASCII
1829 #define LV_TXT_BREAK_CHARS " ,.;:-_)]}"
1863 /** Support bidirectional text. Allows mixing Left-to-Right and Right-to-Left text.
1865 * https://www.w3.org/International/articles/inline-bidi-markup/uba-basics */
1875 *`LV_BASE_DIR_LTR` Left-to-Right
1876 *`LV_BASE_DIR_RTL` Right-to-Left
1912 …* - lv_buttonmatrix_t: Get default maps: {"Btn1", "Btn2", "Btn3", "\n", "Btn4", "Btn5", ""}, el…
1913 * - lv_checkbox_t : String label set to "Check box", else set to empty string.
1914 * - lv_dropdown_t : Options set to "Option 1", "Option 2", "Option 3", else no values are set.
1915 …* - lv_roller_t : Options set to "Option 1", "Option 2", "Option 3", "Option 4", "Option 5"…
1916 * - lv_label_t : Text set to "Text", else empty string.
2566 …#define LV_FS_STDIO_PATH "" /**< Set the working directory. File/directory paths will be a…
2598 …#define LV_FS_POSIX_PATH "" /**< Set the working directory. File/directory paths will be a…
2630 …#define LV_FS_WIN32_PATH "" /**< Set the working directory. File/directory paths will be a…
2662 …#define LV_FS_FATFS_PATH "" /**< Set the working directory. File/directory paths will be a…
2674 /** API for memory-mapped file access. */
2712 …#define LV_FS_LITTLEFS_PATH "" /**< Set the working directory. File/directory paths will b…
2737 …ine LV_FS_ARDUINO_ESP_LITTLEFS_PATH "" /**< Set the working directory. File/directory path…
2762 …#define LV_FS_ARDUINO_SD_PATH "" /**< Set the working directory. File/directory paths will…
2822 /** libjpeg-turbo decoder library.
2823 * - Supports complete JPEG specifications and high-performance JPEG decoding. */
2917 /** Built-in TTF decoder */
2953 * - Requires `LV_USE_MATRIX = 1` */
2980 /** Use lvgl built-in LZ4 lib */
2999 * - Requires `LV_USE_VECTOR_GRAPHIC = 1` */
3085 * - Requires `LV_USE_SYSMON = 1` */
3113 * - Requires `LV_USE_STDLIB_MALLOC = LV_STDLIB_BUILTIN`
3114 * - Requires `LV_USE_SYSMON = 1`*/
3142 /** 1: Enable the built-in profiler */
3400 * - Requires: lv_keyboard */
3432 /** Use 9-key input (k9). */
3456 * - Requires: lv_table */
3474 * - Requires: lv_list */
3489 * - Requires: LV_USE_FREETYPE */
3851 /** "setxkbmap -query" can help find the right values for your keyboard */
3950 …LV_USE_UEFI_INCLUDE "myefi.h" /**< Header that hides the actual framework (EDK2, gnu-efi, ...) */
4055 * - Requires at least 480x272 display. */
4128 /** Smart-phone like multi-language demo */
4164 /*E-bike demo with Lottie animations (if LV_USE_LOTTIE is enabled)*/
4182 /** High-resolution demo */
4202 /*----------------------------------
4204 -----------------------------------*/