Home
last modified time | relevance | path

Searched refs:swapped (Results 1 – 7 of 7) sorted by relevance

/lvgl-3.7.0/src/misc/
Dlv_txt.c568 uint32_t swapped; in lv_txt_utf8_conv_wc() local
571 swapped = (c8[0] << 24) + (c8[1] << 16) + (c8[2] << 8) + (c8[3]); in lv_txt_utf8_conv_wc()
574 if((swapped & 0xFF) == 0) in lv_txt_utf8_conv_wc()
575 swapped = (swapped >> 8); /*Ignore leading zeros (they were in the end originally)*/ in lv_txt_utf8_conv_wc()
577 c = swapped; in lv_txt_utf8_conv_wc()
/lvgl-3.7.0/docs/layouts/
Dgrid.md93 …IR_RTL`, the meaning of `LV_GRID_ALIGN_START` and `LV_GRID_ALIGN_END` is swapped. I.e. `START` wil…
Dflex.md95 …DIR_RTL` the meaning of `LV_FLEX_ALIGN_START` and `LV_FLEX_ALIGN_END` is swapped on `ROW` layouts.…
/lvgl-3.7.0/docs/overview/
Dfont.md139 …rary settings. By default, LVGL assumes `RGB` order, however this can be swapped by setting `LV_SU…
Ddrawing.md17 …and rendering happens to the other (inactive) frame buffer, and they are swapped when the renderin…
Dimage.md85 - RGB565 Swap for 16-bit color depth (two bytes are swapped)
/lvgl-3.7.0/docs/porting/
Ddisplay.md199 …mode, LVGL draws into the buffer as if your screen width and height were swapped. You are responsi…