WIP - Fonts: fixed calling AddFontXXX not invalidating texture for legacy backends.

This commit is contained in:
ocornut 2025-03-26 14:38:49 +01:00
parent 9915038673
commit 8b65586e9a

View file

@ -3583,6 +3583,7 @@ bool ImFontAtlasBuildAddFont(ImFontAtlas* atlas, ImFontConfig* src)
if (!loader->FontSrcInit(atlas, src))
return false;
atlas->TexIsBuilt = false; // For legacy backends
ImFontAtlasBuildSetupFontSpecialGlyphs(atlas, font, src);
return true;
}