| 7816 | } |
| 7817 | |
| 7818 | void ImGui::PopFont() |
| 7819 | { |
| 7820 | ImGuiContext& g = *GImGui; |
| 7821 | g.CurrentWindow->DrawList->PopTextureID(); |
| 7822 | g.FontStack.pop_back(); |
| 7823 | SetCurrentFont(g.FontStack.empty() ? GetDefaultFont() : g.FontStack.back()); |
| 7824 | } |
| 7825 | |
| 7826 | void ImGui::PushItemFlag(ImGuiItemFlags option, bool enabled) |
| 7827 | { |
nothing calls this directly
no test coverage detected