aboutsummaryrefslogtreecommitdiffstats
path: root/tools/mcufontencoder/src/freetype_import.hh
blob: eacb8b91e2bdc2da8bee6822d80e6f45b06252a1 (plain)
1
2
3
4
5
6
7
8
9
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);

}