| 5622 | } |
| 5623 | |
| 5624 | ImGuiWindow* ImGui::FindWindowByID(ImGuiID id) |
| 5625 | { |
| 5626 | ImGuiContext& g = *GImGui; |
| 5627 | return (ImGuiWindow*)g.WindowsById.GetVoidPtr(id); |
| 5628 | } |
| 5629 | |
| 5630 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 5631 | { |
nothing calls this directly
no test coverage detected