| 6633 | } |
| 6634 | |
| 6635 | ImGuiWindow* ImGui::FindWindowByID(ImGuiID id) |
| 6636 | { |
| 6637 | ImGuiContext& g = *GImGui; |
| 6638 | return (ImGuiWindow*)g.WindowsById.GetVoidPtr(id); |
| 6639 | } |
| 6640 | |
| 6641 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 6642 | { |
nothing calls this directly
no test coverage detected