| 700 | }; |
| 701 | |
| 702 | static void SortCache(HFontMap font_map) |
| 703 | { |
| 704 | std::sort(font_map->m_CacheIndices, font_map->m_CacheIndices + font_map->m_CacheCursor, CompareCacheGlyphPred(font_map->m_Cache)); |
| 705 | } |
| 706 | |
| 707 | // Either get a free slot, or the oldest one |
| 708 | static CacheGlyph* AcquireFreeGlyphFromCache(HFontMap font_map) |
no test coverage detected