| 8431 | } |
| 8432 | |
| 8433 | bool ImGui::IsWindowWithinBeginStackOf(ImGuiWindow* window, ImGuiWindow* potential_parent) |
| 8434 | { |
| 8435 | if (window->RootWindow == potential_parent) |
| 8436 | return true; |
| 8437 | while (window != NULL) |
| 8438 | { |
| 8439 | if (window == potential_parent) |
| 8440 | return true; |
| 8441 | window = window->ParentWindowInBeginStack; |
| 8442 | } |
| 8443 | return false; |
| 8444 | } |
| 8445 | |
| 8446 | bool ImGui::IsWindowAbove(ImGuiWindow* potential_above, ImGuiWindow* potential_below) |
| 8447 | { |
nothing calls this directly
no outgoing calls
no test coverage detected