Searched refs:pix (Results 1 – 1 of 1) sorted by relevance
79 static inline uint32_t pixel_blend(uint8_t alpha, uint32_t pix) { in pixel_blend() argument81 if (alpha == 0) return pix; in pixel_blend()82 uint32_t pix_r = pix & 0xff; in pixel_blend()83 uint32_t pix_g = pix & 0xff00; in pixel_blend()84 uint32_t pix_b = pix & 0xff0000; in pixel_blend()