Searched refs:rgbaColorBytes (Results 1 – 1 of 1) sorted by relevance
264 int8_t* rgbaColorBytes = reinterpret_cast<int8_t*>(&rgbaColor); in surfaceControlPostBuffer() local265 rgbaColorBytes[0] = (argbColor >> 16) & 0xff; in surfaceControlPostBuffer()266 rgbaColorBytes[1] = (argbColor >> 8) & 0xff; in surfaceControlPostBuffer()267 rgbaColorBytes[2] = (argbColor >> 0) & 0xff; in surfaceControlPostBuffer()268 rgbaColorBytes[3] = (argbColor >> 24) & 0xff; in surfaceControlPostBuffer()