add Font::get_line_height()

This commit is contained in:
Josh Holtrop 2016-07-10 16:31:32 -04:00
parent eacfe407b4
commit 3fdc113b5f

View File

@ -11,6 +11,7 @@ public:
bool load(const char * fname, int size);
std::shared_ptr<Glyph> get_glyph(FT_ULong character);
int get_advance() { return m_advance; }
int get_line_height() { return m_line_height; }
protected:
bool preload_glyphs();