Home
last modified time | relevance | path

Searched defs:g8 (Results 1 – 1 of 1) sorted by relevance

/AliOS-Things-master/components/littlevgl/src/lv_misc/
A Dlv_color.h369 #define LV_COLOR_MAKE(r8, g8, b8) ((lv_color_t){(b8 >> 7 | g8 >> 7 | r8 >> 7)}) in lv_color_to1() argument
370 static inline lv_color_t lv_color_make(int r8, int g8, int b8) in lv_color_to1()
377 #define LV_COLOR_MAKE(r8, g8, b8) ((lv_color_t){{b8 >> 6, g8 >> 5, r8 >> 5}}) in lv_color_to1() argument
378 static inline lv_color_t lv_color_make(uint8_t r8, int g8, int b8) in lv_color_to1()
388 #define LV_COLOR_MAKE(r8, g8, b8) ((lv_color_t){{b8 >> 3, g8 >> 2, r8 >> 3}}) in lv_color_to1() argument
389 static inline lv_color_t lv_color_make(uint8_t r8, uint8_t g8, uint8_t b8) in lv_color_to1()
398 #define LV_COLOR_MAKE(r8, g8, b8) ((lv_color_t){{g8 >> 5, r8 >> 3, b8 >> 3, (g8 >> 2) & 0x7}}) in lv_color_to1() argument
399 static inline lv_color_t lv_color_make(uint8_t r8, uint8_t g8, uint8_t b8) in lv_color_to1()
410 #define LV_COLOR_MAKE(r8, g8, b8) ((lv_color_t){{b8, g8, r8, 0xff}}) /*Fix 0xff alpha*/ in lv_color_to1() argument
411 static inline lv_color_t lv_color_make(uint8_t r8, uint8_t g8, uint8_t b8) in lv_color_to1()

Completed in 5 milliseconds