Searched refs:palette_index (Results 1 – 1 of 1) sorted by relevance
2276 uint32_t palette_index = 0; in vc_decompress_lzss_next_pixel() local2279 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()