Home
last modified time | relevance | path

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

/external/qemu/ui/
Dconsole.c70 uint8_t bgcol:4; member
468 printf(" fg: %d bg: %d ch:'%2X' '%c'\n", t_attrib->fgcol, t_attrib->bgcol, ch, ch); in console_print_text_attributes()
479 unsigned int fgcol, bgcol; in vga_putcharxy() local
487 bgcol = color_table[t_attrib->bold][t_attrib->fgcol]; in vga_putcharxy()
488 fgcol = color_table[t_attrib->bold][t_attrib->bgcol]; in vga_putcharxy()
491 bgcol = color_table[t_attrib->bold][t_attrib->bgcol]; in vga_putcharxy()
499 xorcol = bgcol ^ fgcol; in vga_putcharxy()
508 ((uint32_t *)d)[0] = (dmask16[(font_data >> 4)] & xorcol) ^ bgcol; in vga_putcharxy()
509 ((uint32_t *)d)[1] = (dmask16[(font_data >> 0) & 0xf] & xorcol) ^ bgcol; in vga_putcharxy()
521 ((uint32_t *)d)[0] = (dmask4[(font_data >> 6)] & xorcol) ^ bgcol; in vga_putcharxy()
[all …]