Lines Matching refs:font_buf
604 u_char font_buf[128]; in draw_txtmouse() local
617 &font_buf[0], scp->font_size); in draw_txtmouse()
619 &font_buf[32], scp->font_size); in draw_txtmouse()
622 &font_buf[64], scp->font_size); in draw_txtmouse()
625 &font_buf[96], scp->font_size); in draw_txtmouse()
627 cursor[i] = font_buf[i]<<8 | font_buf[i+32]; in draw_txtmouse()
628 cursor[i + scp->font_size] = font_buf[i+64]<<8 | font_buf[i+96]; in draw_txtmouse()
654 font_buf[i] = (cursor[i] & 0xff00) >> 8; in draw_txtmouse()
655 font_buf[i + 32] = cursor[i] & 0xff; in draw_txtmouse()
656 font_buf[i + 64] = (cursor[i + scp->font_size] & 0xff00) >> 8; in draw_txtmouse()
657 font_buf[i + 96] = cursor[i + scp->font_size] & 0xff; in draw_txtmouse()
668 vidd_load_font(scp->sc->adp, 0, 32, 8, font_buf, c, 4); in draw_txtmouse()