summaryrefslogtreecommitdiffstats
path: root/libvo/font_load.c
diff options
context:
space:
mode:
Diffstat (limited to 'libvo/font_load.c')
-rw-r--r--libvo/font_load.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/libvo/font_load.c b/libvo/font_load.c
index a18459b036..ba747dc7dc 100644
--- a/libvo/font_load.c
+++ b/libvo/font_load.c
@@ -335,3 +335,8 @@ fail_out:
free(desc);
return NULL;
}
+
+#ifndef CONFIG_FREETYPE
+void render_one_glyph(font_desc_t *desc, int c) {}
+int kerning(font_desc_t *desc, int prevc, int c) { return 0; }
+#endif