| 5274 | } |
| 5275 | |
| 5276 | ImGuiWindow* ImGui::FindWindowByName(const char* name) |
| 5277 | { |
| 5278 | ImGuiID id = ImHashStr(name); |
| 5279 | return FindWindowByID(id); |
| 5280 | } |
| 5281 | |
| 5282 | static void ApplyWindowSettings(ImGuiWindow* window, ImGuiWindowSettings* settings) |
| 5283 | { |
nothing calls this directly
no test coverage detected