Home
last modified time | relevance | path

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

/xnu-8020.121.3/osfmk/console/
H A Dvideo_console.c2276 uint32_t palette_index = 0; in vc_decompress_lzss_next_pixel() local
2279 palette_index = next_data * 3; in vc_decompress_lzss_next_pixel()
2281 pixel_value = ((uint32_t) state->clut[palette_index + 0] << 16) in vc_decompress_lzss_next_pixel()
2282 | ((uint32_t) state->clut[palette_index + 1] << 8) in vc_decompress_lzss_next_pixel()
2283 | ((uint32_t) state->clut[palette_index + 2]); in vc_decompress_lzss_next_pixel()