X-Git-Url: http://git.tdb.fi/?p=libs%2Fgl.git;a=blobdiff_plain;f=source%2Ffont.h;h=4eaed9635361ecca51ae5604b84c3c0d533c1109;hp=efef8351830bd45425dc8045ed144884bca3eac5;hb=20af6dd2f04caa224d8cae00befc97d010a1ed08;hpb=6327ae3d1f8a976f839ce333500c1643f9965fca diff --git a/source/font.h b/source/font.h index efef8351..4eaed963 100644 --- a/source/font.h +++ b/source/font.h @@ -60,6 +60,8 @@ private: float native_size; float ascent; float descent; + float cap_height; + float x_height; GlyphMap glyphs; KerningMap kerning; @@ -81,6 +83,8 @@ public: float get_ascent() const { return ascent; } float get_descent() const { return descent; } + float get_cap_height() const { return cap_height; } + float get_x_height() const { return x_height; } /** Returns the width of a string, in multiples of the font size. Scale the result according to the size used in rendering. */