| 14 | { |
| 15 | |
| 16 | const GlyphInfo* ResourceManualFont::getGlyphInfo(Char _id) const |
| 17 | { |
| 18 | CharMap::const_iterator iter = mCharMap.find(_id); |
| 19 | |
| 20 | if (iter != mCharMap.end()) |
| 21 | return &iter->second; |
| 22 | |
| 23 | return mSubstituteGlyphInfo; |
| 24 | } |
| 25 | |
| 26 | void ResourceManualFont::loadTexture() |
| 27 | { |