| 5871 | } |
| 5872 | |
| 5873 | bool ImGui::BeginChild(const char* str_id, const ImVec2& size_arg, bool border, ImGuiWindowFlags extra_flags) |
| 5874 | { |
| 5875 | ImGuiWindow* window = GetCurrentWindow(); |
| 5876 | return BeginChildEx(str_id, window->GetID(str_id), size_arg, border, extra_flags); |
| 5877 | } |
| 5878 | |
| 5879 | bool ImGui::BeginChild(ImGuiID id, const ImVec2& size_arg, bool border, ImGuiWindowFlags extra_flags) |
| 5880 | { |
nothing calls this directly
no test coverage detected