summaryrefslogtreecommitdiff
path: root/framebuffer/font_internal.h
diff options
context:
space:
mode:
Diffstat (limited to 'framebuffer/font_internal.h')
-rw-r--r--framebuffer/font_internal.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/framebuffer/font_internal.h b/framebuffer/font_internal.h
index 66beb42d0..5b0f30ba1 100644
--- a/framebuffer/font_internal.h
+++ b/framebuffer/font_internal.h
@@ -26,12 +26,15 @@ struct fb_font_desc {
const uint32_t *data;
};
-extern const struct fb_font_desc font_vga_8x16;
+extern const struct fb_font_desc font_regular;
+extern const struct fb_font_desc font_italic;
+extern const struct fb_font_desc font_bold;
+extern const struct fb_font_desc font_italic_bold;
extern const struct fb_font_desc* fb_get_font(const plot_font_style_t *fstyle);
extern utf8_convert_ret utf8_to_font_encoding(const struct fb_font_desc* font,
- const char *string,
+ const char *string,
size_t len,
char **result);