| 259 | } |
| 260 | |
| 261 | static void SetFontMapCacheSize(HFontMap font_map, uint16_t cell_width, uint16_t cell_height, uint16_t max_ascent) |
| 262 | { |
| 263 | font_map->m_IsCacheSizeDirty = 1; |
| 264 | |
| 265 | SetupCache(font_map, font_map->m_CacheWidth, font_map->m_CacheHeight, |
| 266 | cell_width, cell_height, max_ascent); |
| 267 | } |
| 268 | static void GetFontMapCacheSize(HFontMap font_map, uint16_t* cell_width, uint16_t* cell_height, uint16_t* max_ascent) |
| 269 | { |
| 270 | *cell_width = font_map->m_CacheCellWidth; |
no test coverage detected