| 3760 | } |
| 3761 | |
| 3762 | void ImGui::PopColumnsBackground() |
| 3763 | { |
| 3764 | ImGuiWindow* window = GetCurrentWindowRead(); |
| 3765 | ImGuiOldColumns* columns = window->DC.CurrentColumns; |
| 3766 | if (columns->Count == 1) |
| 3767 | return; |
| 3768 | |
| 3769 | // Optimization: avoid PopClipRect() + SetCurrentChannel() |
| 3770 | SetWindowClipRectBeforeSetChannel(window, columns->HostBackupClipRect); |
| 3771 | columns->Splitter.SetCurrentChannel(window->DrawList, columns->Current + 1); |
| 3772 | } |
| 3773 | |
| 3774 | ImGuiOldColumns* ImGui::FindOrCreateColumns(ImGuiWindow* window, ImGuiID id) |
| 3775 | { |
nothing calls this directly
no test coverage detected