| 8765 | // Prefer using PushFont(NULL, style.FontSizeBase * factor), or use style.FontScaleMain to scale all windows. |
| 8766 | #ifndef IMGUI_DISABLE_OBSOLETE_FUNCTIONS |
| 8767 | void ImGui::SetWindowFontScale(float scale) |
| 8768 | { |
| 8769 | IM_ASSERT(scale > 0.0f); |
| 8770 | ImGuiWindow* window = GetCurrentWindow(); |
| 8771 | window->FontWindowScale = scale; |
| 8772 | UpdateCurrentFontSize(0.0f); |
| 8773 | } |
| 8774 | #endif |
| 8775 | |
| 8776 | void ImGui::PushFocusScope(ImGuiID id) |
nothing calls this directly
no test coverage detected