| 4756 | } |
| 4757 | |
| 4758 | ImGuiWindow* ImGui::FindWindowByID(ImGuiID id) |
| 4759 | { |
| 4760 | ImGuiContext& g = *GImGui; |
| 4761 | return (ImGuiWindow*)g.WindowsById.GetVoidPtr(id); |
| 4762 | } |
| 4763 | |
| 4764 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 4765 | { |
nothing calls this directly
no test coverage detected