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