| 8378 | } |
| 8379 | |
| 8380 | bool ImGui::IsWindowWithinBeginStackOf(ImGuiWindow* window, ImGuiWindow* potential_parent) |
| 8381 | { |
| 8382 | if (window->RootWindow == potential_parent) |
| 8383 | return true; |
| 8384 | while (window != NULL) |
| 8385 | { |
| 8386 | if (window == potential_parent) |
| 8387 | return true; |
| 8388 | window = window->ParentWindowInBeginStack; |
| 8389 | } |
| 8390 | return false; |
| 8391 | } |
| 8392 | |
| 8393 | bool ImGui::IsWindowAbove(ImGuiWindow* potential_above, ImGuiWindow* potential_below) |
| 8394 | { |
nothing calls this directly
no outgoing calls
no test coverage detected