| 7202 | } |
| 7203 | |
| 7204 | void ImGui::PopFont() |
| 7205 | { |
| 7206 | ImGuiContext& g = *GImGui; |
| 7207 | g.CurrentWindow->DrawList->PopTextureID(); |
| 7208 | g.FontStack.pop_back(); |
| 7209 | SetCurrentFont(g.FontStack.empty() ? GetDefaultFont() : g.FontStack.back()); |
| 7210 | } |
| 7211 | |
| 7212 | void ImGui::PushItemFlag(ImGuiItemFlags option, bool enabled) |
| 7213 | { |
nothing calls this directly
no test coverage detected