Searched refs:RGB565toSKCOLOR (Results 1 – 1 of 1) sorted by relevance
41 #define RGB565toSKCOLOR(c) ( (((c)&0xF800)>>8) | (((c)&0x7E0)<<5) | (((c)&0x1F)<<19) | 0xFF000000) macro121 dst[i] = RGB565toSKCOLOR(src[i]); in VBcallback()