| 5411 | } |
| 5412 | |
| 5413 | bool ImGui::BeginChild(const char* str_id, const ImVec2& size_arg, bool border, ImGuiWindowFlags extra_flags) |
| 5414 | { |
| 5415 | ImGuiWindow* window = GetCurrentWindow(); |
| 5416 | return BeginChildEx(str_id, window->GetID(str_id), size_arg, border, extra_flags); |
| 5417 | } |
| 5418 | |
| 5419 | bool ImGui::BeginChild(ImGuiID id, const ImVec2& size_arg, bool border, ImGuiWindowFlags extra_flags) |
| 5420 | { |
nothing calls this directly
no test coverage detected