Lines Matching +full:10 +full:g
1 static inline unsigned int rgb_to_pixel8(unsigned int r, unsigned int g, in rgb_to_pixel8() argument
4 return ((r >> 5) << 5) | ((g >> 5) << 2) | (b >> 6); in rgb_to_pixel8()
7 static inline unsigned int rgb_to_pixel15(unsigned int r, unsigned int g, in rgb_to_pixel15() argument
10 return ((r >> 3) << 10) | ((g >> 3) << 5) | (b >> 3); in rgb_to_pixel15()
13 static inline unsigned int rgb_to_pixel15bgr(unsigned int r, unsigned int g, in rgb_to_pixel15bgr() argument
16 return ((b >> 3) << 10) | ((g >> 3) << 5) | (r >> 3); in rgb_to_pixel15bgr()
19 static inline unsigned int rgb_to_pixel16(unsigned int r, unsigned int g, in rgb_to_pixel16() argument
22 return ((r >> 3) << 11) | ((g >> 2) << 5) | (b >> 3); in rgb_to_pixel16()
25 static inline unsigned int rgb_to_pixel16bgr(unsigned int r, unsigned int g, in rgb_to_pixel16bgr() argument
28 return ((b >> 3) << 11) | ((g >> 2) << 5) | (r >> 3); in rgb_to_pixel16bgr()
31 static inline unsigned int rgb_to_pixel24(unsigned int r, unsigned int g, in rgb_to_pixel24() argument
34 return (r << 16) | (g << 8) | b; in rgb_to_pixel24()
37 static inline unsigned int rgb_to_pixel24bgr(unsigned int r, unsigned int g, in rgb_to_pixel24bgr() argument
40 return (b << 16) | (g << 8) | r; in rgb_to_pixel24bgr()
43 static inline unsigned int rgb_to_pixel32(unsigned int r, unsigned int g, in rgb_to_pixel32() argument
46 return (r << 16) | (g << 8) | b; in rgb_to_pixel32()
49 static inline unsigned int rgb_to_pixel32bgr(unsigned int r, unsigned int g, in rgb_to_pixel32bgr() argument
52 return (b << 16) | (g << 8) | r; in rgb_to_pixel32bgr()