| 4369 | } |
| 4370 | |
| 4371 | void ImGui::PopClipRect() |
| 4372 | { |
| 4373 | ImGuiWindow* window = GetCurrentWindow(); |
| 4374 | window->DrawList->PopClipRect(); |
| 4375 | window->ClipRect = window->DrawList->_ClipRectStack.back(); |
| 4376 | } |
| 4377 | |
| 4378 | // This is normally called by Render(). You may want to call it directly if you want to avoid calling Render() but the gain will be very minimal. |
| 4379 | void ImGui::EndFrame() |
no test coverage detected