| 6810 | } |
| 6811 | |
| 6812 | void ImGui::PopFont() |
| 6813 | { |
| 6814 | ImGuiContext& g = *GImGui; |
| 6815 | g.CurrentWindow->DrawList->PopTextureID(); |
| 6816 | g.FontStack.pop_back(); |
| 6817 | SetCurrentFont(g.FontStack.empty() ? GetDefaultFont() : g.FontStack.back()); |
| 6818 | } |
| 6819 | |
| 6820 | void ImGui::PushItemFlag(ImGuiItemFlags option, bool enabled) |
| 6821 | { |
nothing calls this directly
no test coverage detected