| 7090 | } |
| 7091 | |
| 7092 | bool ImGui::IsWindowWithinBeginStackOf(ImGuiWindow* window, ImGuiWindow* potential_parent) |
| 7093 | { |
| 7094 | if (window->RootWindow == potential_parent) |
| 7095 | return true; |
| 7096 | while (window != NULL) |
| 7097 | { |
| 7098 | if (window == potential_parent) |
| 7099 | return true; |
| 7100 | window = window->ParentWindowInBeginStack; |
| 7101 | } |
| 7102 | return false; |
| 7103 | } |
| 7104 | |
| 7105 | bool ImGui::IsWindowAbove(ImGuiWindow* potential_above, ImGuiWindow* potential_below) |
| 7106 | { |
nothing calls this directly
no outgoing calls
no test coverage detected