| 8422 | } |
| 8423 | |
| 8424 | bool ImGui::IsWindowInBeginStack(ImGuiWindow* window) |
| 8425 | { |
| 8426 | ImGuiContext& g = *GImGui; |
| 8427 | for (int n = g.CurrentWindowStack.Size - 1; n >= 0; n--) |
| 8428 | if (g.CurrentWindowStack[n].Window == window) |
| 8429 | return true; |
| 8430 | return false; |
| 8431 | } |
| 8432 | |
| 8433 | bool ImGui::IsWindowWithinBeginStackOf(ImGuiWindow* window, ImGuiWindow* potential_parent) |
| 8434 | { |
nothing calls this directly
no outgoing calls
no test coverage detected