| 350 | } |
| 351 | |
| 352 | uint64_t MakeGlyphIndexKey(HFont font, uint32_t glyph_index) |
| 353 | { |
| 354 | uint64_t path_hash = (uint64_t)FontGetPathHash(font); |
| 355 | return path_hash<<32 | glyph_index; |
| 356 | } |
| 357 | |
| 358 | static void AddGlyph(dmRender::HFontMap font_map, uint64_t key, FontGlyph* glyph) |
| 359 | { |
no test coverage detected