Searched refs:whole (Results 1 – 17 of 17) sorted by relevance
/lvgl-3.7.0/src/misc/ |
D | lv_printf.c | 355 int whole = (int)value; in _ftoa() local 356 double tmp = (value - whole) * pow10[prec]; in _ftoa() 365 ++whole; in _ftoa() 376 diff = value - (double)whole; in _ftoa() 377 if((!(diff < 0.5) || (diff > 0.5)) && (whole & 1)) { in _ftoa() 380 ++whole; in _ftoa() 405 buf[len++] = (char)(48 + (whole % 10)); in _ftoa() 406 if(!(whole /= 10)) { in _ftoa()
|
/lvgl-3.7.0/docs/libs/ |
D | bmp.md | 6 The pixels are read on demand (not the whole image is loaded) so using BMP images requires very lit… 21 - Because not the whole image is read in can not be zoomed or rotated.
|
D | png.md | 10 The whole PNG image is decoded so during decoding RAM equals to `image width x image height x 4` by…
|
D | sjpg.md | 8 …- Decoding normal JPG consumes RAM with the size fo the whole uncompressed image (recommended only…
|
/lvgl-3.7.0/docs/overview/ |
D | image.md | 37 …be an alpha channel. This is ideal for bitmaps similar to fonts where the whole image is one color… 216 …* Required only if the "open" function can't open the whole decoded pixel array. (dsc->img_data ==… 257 - `decoder_read` is optional. Decoding the whole image requires extra memory and some computational… 258 However, it can decode one line of the image without decoding the whole image, you can save memory … 317 …g_cache_invalidate_src(&my_png)`. If `NULL` is passed as a parameter, the whole cache will be clea…
|
D | display.md | 21 Using more displays can be useful but in most cases it's not required. Therefore, the whole concept… 83 …become visible when the current screen is transparent or not positioned to cover the whole display.
|
D | drawing.md | 89 1. Initialize a mask parameter with `lv_draw_mask_<type>_init`. See `lv_draw_mask.h` for the whole …
|
D | style.md | 285 …es a snapshot about the widget and all its children in order to blend the whole widget with the se…
|
/lvgl-3.7.0/docs/widgets/core/ |
D | table.md | 43 If the label's width or height is set to `LV_SIZE_CONTENT` that size will be used to show the whole…
|
D | img.md | 86 The transformations require the whole image to be available. Therefore indexed images (`LV_IMG_CF_I… 87 …s C array, or if a custom [Image decoder](/overview/images#image-edecoder) returns the whole image.
|
D | canvas.md | 39 `lv_canvas_fill_bg(canvas, LV_COLOR_BLUE, LV_OPA_50)` fills the whole canvas to blue with 50% opaci…
|
D | textarea.md | 31 `lv_textarea_set_text(ta, "New text")` changes the whole text.
|
D | label.md | 53 The whole mechanism (click and select the text as you drag your finger/mouse) is implemented in [Te…
|
/lvgl-3.7.0/docs/porting/ |
D | display.md | 49 …_t`) enabling the `full_refresh` bit will force LVGL to always redraw the whole screen. This works… 98 - `full_refresh` always redrawn the whole screen (see above)
|
/lvgl-3.7.0/docs/ |
D | CONTRIBUTING.md | 286 This way your project will become part of the whole LVGL project and can get more visibility.
|
D | CHANGELOG.md | 1662 - `disp_drv->full_refresh = 1` makes always the whole display redraw. 1968 - Change all text related indices from 16-bit to 32-bit integers throughout whole library. #1545
|
/lvgl-3.7.0/scripts/ |
D | Doxyfile | 115 # and the result, after processing the whole list, is used as the annotated
|