Home
last modified time | relevance | path

Searched refs:pal_v (Results 1 – 1 of 1) sorted by relevance

/external/pdfium/core/src/fxge/dib/
Dfx_dib_convert.cpp148 void _ColorDecode(FX_DWORD pal_v, uint8_t& r, uint8_t& g, uint8_t& b) { in _ColorDecode() argument
149 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()