| 4873 | } |
| 4874 | |
| 4875 | void ImGui::PopClipRect() |
| 4876 | { |
| 4877 | ImGuiWindow* window = GetCurrentWindow(); |
| 4878 | window->DrawList->PopClipRect(); |
| 4879 | window->ClipRect = window->DrawList->_ClipRectStack.back(); |
| 4880 | } |
| 4881 | |
| 4882 | static void ImGui::RenderDimmedBackgroundBehindWindow(ImGuiWindow* window, ImU32 col) |
| 4883 | { |
no test coverage detected