Home
last modified time | relevance | path

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

/xnu-8792.61.2/osfmk/console/art/
H A Dprogress.m21 static pixel_t clut[MAX_COLORS];
29 if (clut[i].r == r &&
30 clut[i].g == g &&
31 clut[i].b == b) {
39 clut[clut_size].r = r;
40 clut[clut_size].g = g;
41 clut[clut_size].b = b;
82 bzero(clut, sizeof(clut));
109 assert(clut[0].r == 0);
110 assert(clut[0].g == 0);
[all …]
/xnu-8792.61.2/osfmk/console/
H A Dvideo_console.h125 const unsigned char * clut );
135 const uint8_t *clut);
H A Dvideo_console.c2255 const uint8_t* clut; member
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()
2320 const uint8_t *clut) in vc_display_lzss_icon() argument
2330 lzss_image_state state = {0, 0, image_width, image_height, bytes_per_row, image_start, clut}; in vc_display_lzss_icon()
2436 const unsigned char * clut ) in vc_progress_initialize() argument
2440 if ((!clut) || (!desc) || (!data1x)) { in vc_progress_initialize()
2443 vc_clut = clut; in vc_progress_initialize()
2444 vc_clut8 = clut; in vc_progress_initialize()