Searched refs:pal_v (Results 1 – 1 of 1) sorted by relevance
64 void _ColorDecode(uint32_t pal_v, uint8_t& r, uint8_t& g, uint8_t& b) { in _ColorDecode() argument65 r = (uint8_t)((pal_v & 0xf00) >> 4); in _ColorDecode()66 g = (uint8_t)(pal_v & 0x0f0); in _ColorDecode()67 b = (uint8_t)((pal_v & 0x00f) << 4); in _ColorDecode()