| 5500 | } |
| 5501 | |
| 5502 | ImGuiWindow* ImGui::FindWindowByID(ImGuiID id) |
| 5503 | { |
| 5504 | ImGuiContext& g = *GImGui; |
| 5505 | return (ImGuiWindow*)g.WindowsById.GetVoidPtr(id); |
| 5506 | } |
| 5507 | |
| 5508 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 5509 | { |
nothing calls this directly
no test coverage detected