| 13005 | } |
| 13006 | |
| 13007 | int ImGui::FindWindowDisplayIndex(ImGuiWindow* window) |
| 13008 | { |
| 13009 | ImGuiContext& g = *GImGui; |
| 13010 | return g.Windows.index_from_ptr(g.Windows.find(window)); |
| 13011 | } |
| 13012 | |
| 13013 | // Moving window to front of display and set focus (which happens to be back of our sorted list) |
| 13014 | void ImGui::FocusWindow(ImGuiWindow* window, ImGuiFocusRequestFlags flags) |
nothing calls this directly
no outgoing calls
no test coverage detected