Home
last modified time | relevance | path

Searched refs:c32 (Results 1 – 6 of 6) sorted by relevance

/lvgl-3.5.0/src/misc/
Dlv_color.c46 uint32_t c32 = (uint32_t)color.full + ((uint32_t)color.full << 16); in lv_color_fill() local
50 *buf32 = c32; in lv_color_fill()
52 *buf32 = c32; in lv_color_fill()
54 *buf32 = c32; in lv_color_fill()
56 *buf32 = c32; in lv_color_fill()
59 *buf32 = c32; in lv_color_fill()
61 *buf32 = c32; in lv_color_fill()
63 *buf32 = c32; in lv_color_fill()
65 *buf32 = c32; in lv_color_fill()
Dlv_color.h589 lv_color32_t c32; in lv_color_brightness() local
590 c32.full = lv_color_to32(color); in lv_color_brightness()
591 …t16_t bright = (uint16_t)(3u * LV_COLOR_GET_R32(c32) + LV_COLOR_GET_B32(c32) + 4u * LV_COLOR_GET_G… in lv_color_brightness()
/lvgl-3.5.0/src/draw/
Dlv_img_buf.c317 lv_color32_t c32; in lv_img_buf_set_palette() local
318 c32.full = lv_color_to32(c); in lv_img_buf_set_palette()
320 lv_memcpy_small(&buf[id * sizeof(c32)], &c32, sizeof(c32)); in lv_img_buf_set_palette()
/lvgl-3.5.0/src/extra/widgets/colorwheel/
Dlv_colorwheel.c125 lv_color32_t c32; in lv_colorwheel_set_rgb() local
126 c32.full = lv_color_to32(color); in lv_colorwheel_set_rgb()
128 return lv_colorwheel_set_hsv(obj, lv_color_rgb_to_hsv(c32.ch.red, c32.ch.green, c32.ch.blue)); in lv_colorwheel_set_rgb()
/lvgl-3.5.0/src/draw/sw/
Dlv_draw_sw_blend.c289 uint32_t c32 = color.full + ((uint32_t)color.full << 16); in fill_normal() local
306 *d = c32; in fill_normal()
311 *d = c32; in fill_normal()
312 *(d + 1) = c32; in fill_normal()
/lvgl-3.5.0/docs/overview/
Dcolor.md141 c32.full = lv_color_to32(c); /*Give a 32 bit number with the converted color*/