| 6437 | } |
| 6438 | |
| 6439 | ImGuiWindow* ImGui::FindWindowByID(ImGuiID id) |
| 6440 | { |
| 6441 | ImGuiContext& g = *GImGui; |
| 6442 | return (ImGuiWindow*)g.WindowsById.GetVoidPtr(id); |
| 6443 | } |
| 6444 | |
| 6445 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 6446 | { |
nothing calls this directly
no test coverage detected