Fonts: adding GetFontBaked() in public API.

This commit is contained in:
ocornut
2025-05-19 18:14:12 +02:00
parent 92ff153763
commit f3780c7354
3 changed files with 11 additions and 5 deletions

View File

@@ -8419,6 +8419,11 @@ ImFont* ImGui::GetFont()
return GImGui->Font;
}
ImFontBaked* ImGui::GetFontBaked()
{
return GImGui->FontBaked;
}
float ImGui::GetFontSize()
{
return GImGui->FontSize;