Lines Matching refs:bg
1014 PIXTYPE bg; \ in tpg_gen_text()
1016 memcpy(&bg, tpg->textbg[p], sizeof(PIXTYPE)); \ in tpg_gen_text()
1029 pos[7] = (chr & (0x01 << 7) ? fg : bg); \ in tpg_gen_text()
1030 pos[6] = (chr & (0x01 << 6) ? fg : bg); \ in tpg_gen_text()
1031 pos[5] = (chr & (0x01 << 5) ? fg : bg); \ in tpg_gen_text()
1032 pos[4] = (chr & (0x01 << 4) ? fg : bg); \ in tpg_gen_text()
1033 pos[3] = (chr & (0x01 << 3) ? fg : bg); \ in tpg_gen_text()
1034 pos[2] = (chr & (0x01 << 2) ? fg : bg); \ in tpg_gen_text()
1035 pos[1] = (chr & (0x01 << 1) ? fg : bg); \ in tpg_gen_text()
1036 pos[0] = (chr & (0x01 << 0) ? fg : bg); \ in tpg_gen_text()
1038 pos[0] = (chr & (0x01 << 7) ? fg : bg); \ in tpg_gen_text()
1039 pos[1] = (chr & (0x01 << 6) ? fg : bg); \ in tpg_gen_text()
1040 pos[2] = (chr & (0x01 << 5) ? fg : bg); \ in tpg_gen_text()
1041 pos[3] = (chr & (0x01 << 4) ? fg : bg); \ in tpg_gen_text()
1042 pos[4] = (chr & (0x01 << 3) ? fg : bg); \ in tpg_gen_text()
1043 pos[5] = (chr & (0x01 << 2) ? fg : bg); \ in tpg_gen_text()
1044 pos[6] = (chr & (0x01 << 1) ? fg : bg); \ in tpg_gen_text()
1045 pos[7] = (chr & (0x01 << 0) ? fg : bg); \ in tpg_gen_text()