Lines Matching refs:fbfont
523 const struct font_desc *fbfont = NULL; in sti_select_fbfont() local
530 fbfont = find_font(fbfont_name); in sti_select_fbfont()
531 if (!fbfont) in sti_select_fbfont()
532 fbfont = get_default_font(1024, 768, NULL, NULL); in sti_select_fbfont()
533 if (!fbfont) in sti_select_fbfont()
537 fbfont->width, fbfont->height, fbfont->name); in sti_select_fbfont()
539 bpc = ((fbfont->width+7)/8) * fbfont->height; in sti_select_fbfont()
540 size = bpc * fbfont->charcount; in sti_select_fbfont()
548 nf->last_char = fbfont->charcount - 1; in sti_select_fbfont()
549 nf->width = fbfont->width; in sti_select_fbfont()
550 nf->height = fbfont->height; in sti_select_fbfont()
555 nf->underline_pos = fbfont->height - nf->underline_height; in sti_select_fbfont()
559 memcpy(dest, fbfont->data, bpc * fbfont->charcount); in sti_select_fbfont()