Searched refs:pal_v (Results 1 – 1 of 1) sorted by relevance
148 void _ColorDecode(FX_DWORD pal_v, uint8_t& r, uint8_t& g, uint8_t& b) { in _ColorDecode() argument149 r = (uint8_t)((pal_v & 0xf00) >> 4); in _ColorDecode()150 g = (uint8_t)(pal_v & 0x0f0); in _ColorDecode()151 b = (uint8_t)((pal_v & 0x00f) << 4); in _ColorDecode()