| 5957 | } |
| 5958 | |
| 5959 | ImGuiWindow* ImGui::FindWindowByID(ImGuiID id) |
| 5960 | { |
| 5961 | ImGuiContext& g = *GImGui; |
| 5962 | return (ImGuiWindow*)g.WindowsById.GetVoidPtr(id); |
| 5963 | } |
| 5964 | |
| 5965 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 5966 | { |
nothing calls this directly
no test coverage detected