add color_font_ member

This commit is contained in:
artemp 2017-02-28 14:59:14 +01:00
parent 5492d93ccd
commit 8e97803e81

View file

@ -72,10 +72,13 @@ public:
bool glyph_dimensions(glyph_info &glyph) const;
inline bool is_color() const { return color_font_;}
~font_face();
private:
FT_Face face_;
bool color_font_ = false;
};
using face_ptr = std::shared_ptr<font_face>;