* Get height of a character for a given font size. * @param size Font size to get height of * @return Height of characters in the given font (pixels) */
| 85 | * @return Height of characters in the given font (pixels) |
| 86 | */ |
| 87 | int GetCharacterHeight(FontSize size) |
| 88 | { |
| 89 | return FontCache::Get(size)->GetHeight(); |
| 90 | } |
| 91 | |
| 92 | |
| 93 | /* static */ std::array<std::unique_ptr<FontCache>, FS_END> FontCache::caches{}; |
no test coverage detected