Home
last modified time | relevance | path

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

/xnu-12377.81.4/osfmk/console/
H A Dvideo_console.c2263 uint32_t palette_index = 0; in vc_decompress_lzss_next_pixel() local
2266 palette_index = next_data * 3; in vc_decompress_lzss_next_pixel()
2268 pixel_value = ((uint32_t) state->clut[palette_index + 0] << 16) in vc_decompress_lzss_next_pixel()
2269 | ((uint32_t) state->clut[palette_index + 1] << 8) in vc_decompress_lzss_next_pixel()
2270 | ((uint32_t) state->clut[palette_index + 2]); in vc_decompress_lzss_next_pixel()