| 113 | } |
| 114 | |
| 115 | void Font::Invalidate() |
| 116 | { |
| 117 | ScopeLock lock(_asset->Locker); |
| 118 | |
| 119 | for (auto i = _characters.Begin(); i.IsNotEnd(); ++i) |
| 120 | { |
| 121 | FontManager::Invalidate(i->Value); |
| 122 | } |
| 123 | _characters.Clear(); |
| 124 | } |
| 125 | |
| 126 | void Font::ProcessText(const StringView& text, Array<FontLineCache, InlinedAllocation<8>>& outputLines, const TextLayoutOptions& layout) |
| 127 | { |
no test coverage detected