| 3871 | } |
| 3872 | |
| 3873 | void ImGui::PopColumnsBackground() |
| 3874 | { |
| 3875 | ImGuiWindow* window = GetCurrentWindowRead(); |
| 3876 | ImGuiOldColumns* columns = window->DC.CurrentColumns; |
| 3877 | if (columns->Count == 1) |
| 3878 | return; |
| 3879 | |
| 3880 | // Optimization: avoid PopClipRect() + SetCurrentChannel() |
| 3881 | SetWindowClipRectBeforeSetChannel(window, columns->HostBackupClipRect); |
| 3882 | columns->Splitter.SetCurrentChannel(window->DrawList, columns->Current + 1); |
| 3883 | } |
| 3884 | |
| 3885 | ImGuiOldColumns* ImGui::FindOrCreateColumns(ImGuiWindow* window, ImGuiID id) |
| 3886 | { |
nothing calls this directly
no test coverage detected