1
0
Fork 0
mirror of https://github.com/ocornut/imgui.git synced 2026-01-11 00:04:24 +00:00

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;