| 3846 | } |
| 3847 | |
| 3848 | void ImGui::PushColumnClipRect(int column_index) |
| 3849 | { |
| 3850 | ImGuiWindow* window = GetCurrentWindowRead(); |
| 3851 | ImGuiOldColumns* columns = window->DC.CurrentColumns; |
| 3852 | if (column_index < 0) |
| 3853 | column_index = columns->Current; |
| 3854 | |
| 3855 | ImGuiOldColumnData* column = &columns->Columns[column_index]; |
| 3856 | PushClipRect(column->ClipRect.Min, column->ClipRect.Max, false); |
| 3857 | } |
| 3858 | |
| 3859 | // Get into the columns background draw command (which is generally the same draw command as before we called BeginColumns) |
| 3860 | void ImGui::PushColumnsBackground() |
nothing calls this directly
no test coverage detected