Home | History | Annotate | Download | only in libpixelflinger

Lines Matching refs:pix

131 static inline uint16_t  convertAbgr8888ToRgb565(uint32_t  pix)
133 return uint16_t( ((pix << 8) & 0xf800) |
134 ((pix >> 5) & 0x07e0) |
135 ((pix >> 19) & 0x001f) );