aboutsummaryrefslogtreecommitdiffstats
path: root/tools/mcufontencoder/src/freetype_import.hh
diff options
context:
space:
mode:
Diffstat (limited to 'tools/mcufontencoder/src/freetype_import.hh')
-rw-r--r--tools/mcufontencoder/src/freetype_import.hh10
1 files changed, 10 insertions, 0 deletions
diff --git a/tools/mcufontencoder/src/freetype_import.hh b/tools/mcufontencoder/src/freetype_import.hh
new file mode 100644
index 00000000..eacb8b91
--- /dev/null
+++ b/tools/mcufontencoder/src/freetype_import.hh
@@ -0,0 +1,10 @@
+// Function for importing any font supported by libfreetype.
+
+#pragma once
+#include "datafile.hh"
+
+namespace mcufont {
+
+std::unique_ptr<DataFile> LoadFreetype(std::istream &file, int size, bool bw);
+
+}