| 7210 | } |
| 7211 | |
| 7212 | void ImGui::PushTextWrapPos(float wrap_pos_x) |
| 7213 | { |
| 7214 | ImGuiWindow* window = GetCurrentWindow(); |
| 7215 | window->DC.TextWrapPosStack.push_back(window->DC.TextWrapPos); |
| 7216 | window->DC.TextWrapPos = wrap_pos_x; |
| 7217 | } |
| 7218 | |
| 7219 | void ImGui::PopTextWrapPos() |
| 7220 | { |
nothing calls this directly
no test coverage detected