| 7900 | } |
| 7901 | |
| 7902 | void ImGui::PushTextWrapPos(float wrap_pos_x) |
| 7903 | { |
| 7904 | ImGuiWindow* window = GetCurrentWindow(); |
| 7905 | window->DC.TextWrapPosStack.push_back(window->DC.TextWrapPos); |
| 7906 | window->DC.TextWrapPos = wrap_pos_x; |
| 7907 | } |
| 7908 | |
| 7909 | void ImGui::PopTextWrapPos() |
| 7910 | { |
nothing calls this directly
no test coverage detected