| 32 | ResourceTrueTypeFont::~ResourceTrueTypeFont() = default; |
| 33 | |
| 34 | void ResourceTrueTypeFont::deserialization(xml::ElementPtr _node, Version _version) |
| 35 | { |
| 36 | Base::deserialization(_node, _version); |
| 37 | MYGUI_LOG( |
| 38 | Error, |
| 39 | "ResourceTrueTypeFont: TrueType font '" |
| 40 | << getResourceName() << "' disabled. Define MYGUI_USE_FREETYE if you need TrueType fonts."); |
| 41 | } |
| 42 | |
| 43 | const GlyphInfo* ResourceTrueTypeFont::getGlyphInfo(Char _id) const |
| 44 | { |
nothing calls this directly
no test coverage detected