Home
last modified time | relevance | path

Searched refs:converted (Results 1 – 11 of 11) sorted by relevance

/lvgl-3.7.0/src/draw/sdl/
Dlv_draw_sdl_utils.c125 SDL_Surface * converted = SDL_ConvertSurfaceFormat(indexed, LV_DRAW_SDL_TEXTURE_FORMAT, 0); in lv_sdl_create_opa_surface() local
127 return converted; in lv_sdl_create_opa_surface()
/lvgl-3.7.0/docs/overview/
Dcolor.md123 …ions return with a number, so you have to use the `full` field to map a converted color back into …
135 c8.full = lv_color_to8(c); /*Give a 8 bit number with the converted color*/
138 c16.full = lv_color_to16(c); /*Give a 16 bit number with the converted color*/
141 c32.full = lv_color_to32(c); /*Give a 32 bit number with the converted color*/
Ddisplay.md9 If the displays are different in this regard the rendered image can be converted to the correct for…
87 …d image is a path to a file or a pointer to an `lv_img_dsc_t` variable (converted image data) to b…
Dimage.md123 If the image was converted with the online converter, you should use `LV_IMG_DECLARE(my_icon_dsc)` …
/lvgl-3.7.0/docs/widgets/core/
Dtable.md20 The cells can store only text so numbers need to be converted to text before displaying them in a t…
Dtextarea.md66 …22/index.htm)) character exists in the font, the entered characters are converted to it after some…
Dimg.md24 …image converter tool](https://lvgl.io/tools/imageconverter) and set the converted image with its p…
/lvgl-3.7.0/docs/widgets/extra/
Dmeter.md82 - `text`: `value` converted to decimal or `NULL` on minor lines
Dchart.md165 - `text`: `value` converted to decimal or `NULL` for minor ticks
/lvgl-3.7.0/src/extra/libs/png/
Dlodepng.c5913 unsigned char* converted; in lodepng_encode() local
5916 converted = (unsigned char*)lodepng_malloc(size); in lodepng_encode()
5917 if(!converted && size) state->error = 83; /*alloc fail*/ in lodepng_encode()
5919 state->error = lodepng_convert(converted, image, &info.color, &state->info_raw, w, h); in lodepng_encode()
5922 state->error = preProcessScanlines(&data, &datasize, converted, w, h, &info, &state->encoder); in lodepng_encode()
5924 lodepng_free(converted); in lodepng_encode()
/lvgl-3.7.0/docs/porting/
Ddisplay.md102 - `rounder_cb` Round the coordinates of areas to redraw. E.g. a 2x2 px can be converted to 2x8.