| 5229 | } |
| 5230 | |
| 5231 | bool ImGui::TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) |
| 5232 | { |
| 5233 | ImGuiWindow* window = GetCurrentWindow(); |
| 5234 | if (window->SkipItems) |
| 5235 | return false; |
| 5236 | |
| 5237 | ImGuiContext& g = *GImGui; |
| 5238 | const char* label_end = g.TempBuffer + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args); |
| 5239 | return TreeNodeBehavior(window->GetID(str_id), flags, g.TempBuffer, label_end); |
| 5240 | } |
| 5241 | |
| 5242 | bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) |
| 5243 | { |
nothing calls this directly
no test coverage detected