| 5909 | } |
| 5910 | |
| 5911 | void ImGui::PopClipRect() |
| 5912 | { |
| 5913 | ImGuiWindow* window = GetCurrentWindow(); |
| 5914 | window->DrawList->PopClipRect(); |
| 5915 | window->ClipRect = window->DrawList->_ClipRectStack.back(); |
| 5916 | } |
| 5917 | |
| 5918 | static void ImGui::RenderDimmedBackgroundBehindWindow(ImGuiWindow* window, ImU32 col) |
| 5919 | { |
no test coverage detected