Home
last modified time | relevance | path

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

/lvgl-latest/src/extra/widgets/colorwheel/
Dlv_colorwheel.c626 uint16_t ww = v * bb; /*Don't try to be precise, but instead, be fast*/ in fast_hsv2rgb() local
627 *b = ww >> 8; in fast_hsv2rgb()
633ww = !h_frac ? ((uint16_t)s << 8) : (s * (uint8_t)(-h_frac)); /*Skip multiply if not required*/ in fast_hsv2rgb()
637 ww = s * h_frac; in fast_hsv2rgb()
639 bb = ww >> 8; in fast_hsv2rgb()
641 ww = v * bb; in fast_hsv2rgb()
642 *r = ww >> 8; in fast_hsv2rgb()