| 12898 | } |
| 12899 | |
| 12900 | static int ImGui::FindWindowFocusIndex(ImGuiWindow* window) |
| 12901 | { |
| 12902 | ImGuiContext& g = *GImGui; |
| 12903 | IM_UNUSED(g); |
| 12904 | int order = window->FocusOrder; |
| 12905 | IM_ASSERT(window->RootWindow == window); // No child window (not testing _ChildWindow because of docking) |
| 12906 | IM_ASSERT(g.WindowsFocusOrder[order] == window); |
| 12907 | return order; |
| 12908 | } |
| 12909 | |
| 12910 | static void ImGui::UpdateWindowInFocusOrderList(ImGuiWindow* window, bool just_created, ImGuiWindowFlags new_flags) |
| 12911 | { |
nothing calls this directly
no outgoing calls
no test coverage detected