| 3792 | } |
| 3793 | |
| 3794 | void ImGui::PushColumnClipRect(int column_index) |
| 3795 | { |
| 3796 | ImGuiWindow* window = GetCurrentWindowRead(); |
| 3797 | ImGuiOldColumns* columns = window->DC.CurrentColumns; |
| 3798 | if (column_index < 0) |
| 3799 | column_index = columns->Current; |
| 3800 | |
| 3801 | ImGuiOldColumnData* column = &columns->Columns[column_index]; |
| 3802 | PushClipRect(column->ClipRect.Min, column->ClipRect.Max, false); |
| 3803 | } |
| 3804 | |
| 3805 | // Get into the columns background draw command (which is generally the same draw command as before we called BeginColumns) |
| 3806 | void ImGui::PushColumnsBackground() |
nothing calls this directly
no test coverage detected