| 4762 | } |
| 4763 | |
| 4764 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 4765 | { |
| 4766 | ImGuiID id = ImHashStr(name); |
| 4767 | return FindWindowByID(id); |
| 4768 | } |
| 4769 | |
| 4770 | static ImGuiWindow* CreateNewWindow(const char* name, ImVec2 size, ImGuiWindowFlags flags) |
| 4771 | { |
nothing calls this directly
no test coverage detected