| 5107 | } |
| 5108 | |
| 5109 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 5110 | { |
| 5111 | ImGuiID id = ImHashStr(name); |
| 5112 | return FindWindowByID(id); |
| 5113 | } |
| 5114 | |
| 5115 | static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) |
| 5116 | { |
nothing calls this directly
no test coverage detected