| 3682 | } |
| 3683 | |
| 3684 | int ImGui::GetColumnsCount() |
| 3685 | { |
| 3686 | ImGuiWindow* window = GetCurrentWindowRead(); |
| 3687 | return window->DC.CurrentColumns ? window->DC.CurrentColumns->Count : 1; |
| 3688 | } |
| 3689 | |
| 3690 | float ImGui::GetColumnOffsetFromNorm(const ImGuiOldColumns* columns, float offset_norm) |
| 3691 | { |
nothing calls this directly
no test coverage detected