| 8369 | } |
| 8370 | |
| 8371 | bool ImGui::IsWindowInBeginStack(ImGuiWindow* window) |
| 8372 | { |
| 8373 | ImGuiContext& g = *GImGui; |
| 8374 | for (int n = g.CurrentWindowStack.Size - 1; n >= 0; n--) |
| 8375 | if (g.CurrentWindowStack[n].Window == window) |
| 8376 | return true; |
| 8377 | return false; |
| 8378 | } |
| 8379 | |
| 8380 | bool ImGui::IsWindowWithinBeginStackOf(ImGuiWindow* window, ImGuiWindow* potential_parent) |
| 8381 | { |
nothing calls this directly
no outgoing calls
no test coverage detected