| 5303 | } |
| 5304 | |
| 5305 | void ImGui::PopClipRect() |
| 5306 | { |
| 5307 | ImGuiWindow* window = GetCurrentWindow(); |
| 5308 | window->DrawList->PopClipRect(); |
| 5309 | window->ClipRect = window->DrawList->_ClipRectStack.back(); |
| 5310 | } |
| 5311 | |
| 5312 | static ImGuiWindow* FindFrontMostVisibleChildWindow(ImGuiWindow* window) |
| 5313 | { |
no test coverage detected