MCPcopy Create free account
hub / github.com/FlaxEngine/FlaxEngine / Invalidate

Method Invalidate

Source/Engine/Render2D/Font.cpp:115–124  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

113}
114
115void 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
126void Font::ProcessText(const StringView& text, Array<FontLineCache, InlinedAllocation<8>>& outputLines, const TextLayoutOptions& layout)
127{

Callers 5

PreInitSkinningDataMethod · 0.45
OnActiveInTreeChangedMethod · 0.45
OnSkinnedModelChangedMethod · 0.45
OnSkinnedModelLoadedMethod · 0.45
OnPropertyEditedMethod · 0.45

Calls 4

InvalidateFunction · 0.85
BeginMethod · 0.45
IsNotEndMethod · 0.45
ClearMethod · 0.45

Tested by

no test coverage detected