| 7286 | } |
| 7287 | |
| 7288 | void ImGui::PushTextWrapPos(float wrap_pos_x) |
| 7289 | { |
| 7290 | ImGuiWindow* window = GetCurrentWindow(); |
| 7291 | window->DC.TextWrapPosStack.push_back(window->DC.TextWrapPos); |
| 7292 | window->DC.TextWrapPos = wrap_pos_x; |
| 7293 | } |
| 7294 | |
| 7295 | void ImGui::PopTextWrapPos() |
| 7296 | { |
nothing calls this directly
no test coverage detected