| 6718 | } |
| 6719 | |
| 6720 | int ImGui::FindWindowDisplayIndex(ImGuiWindow* window) |
| 6721 | { |
| 6722 | ImGuiContext& g = *GImGui; |
| 6723 | return g.Windows.index_from_ptr(g.Windows.find(window)); |
| 6724 | } |
| 6725 | |
| 6726 | // Moving window to front of display and set focus (which happens to be back of our sorted list) |
| 6727 | void ImGui::FocusWindow(ImGuiWindow* window) |
nothing calls this directly
no test coverage detected