| 5725 | } |
| 5726 | |
| 5727 | void ImGui::PopClipRect() |
| 5728 | { |
| 5729 | ImGuiWindow* window = GetCurrentWindow(); |
| 5730 | window->DrawList->PopClipRect(); |
| 5731 | window->ClipRect = window->DrawList->_ClipRectStack.back(); |
| 5732 | } |
| 5733 | |
| 5734 | static void ImGui::RenderDimmedBackgroundBehindWindow(ImGuiWindow* window, ImU32 col) |
| 5735 | { |
no test coverage detected