| 7097 | } |
| 7098 | |
| 7099 | int ImGui::FindWindowDisplayIndex(ImGuiWindow* window) |
| 7100 | { |
| 7101 | ImGuiContext& g = *GImGui; |
| 7102 | return g.Windows.index_from_ptr(g.Windows.find(window)); |
| 7103 | } |
| 7104 | |
| 7105 | // Moving window to front of display and set focus (which happens to be back of our sorted list) |
| 7106 | void ImGui::FocusWindow(ImGuiWindow* window) |
nothing calls this directly
no test coverage detected