| 136 | } |
| 137 | |
| 138 | CFEGlyph CFEGetGlyphFromUnicode(CommodettoFontEngine tf, uint32_t unicode, uint8_t needPixels) |
| 139 | { |
| 140 | uint16_t glyphID = unicodeToMacRoman(unicode); |
| 141 | if (kInvalidGlyphID == glyphID) |
| 142 | return NULL; |
| 143 | |
| 144 | return CFEGetGlyphFromGlyphID(tf, glyphID, needPixels); |
| 145 | } |
| 146 | |
| 147 | int16_t CFEGetKerningOffset(CommodettoFontEngine tf, uint32_t unicode1, uint32_t unicode2) |
| 148 | { |
nothing calls this directly
no test coverage detected