| 5823 | } |
| 5824 | |
| 5825 | bool ImGui::TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) |
| 5826 | { |
| 5827 | ImGuiWindow* window = GetCurrentWindow(); |
| 5828 | if (window->SkipItems) |
| 5829 | return false; |
| 5830 | |
| 5831 | ImGuiContext& g = *GImGui; |
| 5832 | const char* label_end = g.TempBuffer + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args); |
| 5833 | return TreeNodeBehavior(window->GetID(str_id), flags, g.TempBuffer, label_end); |
| 5834 | } |
| 5835 | |
| 5836 | bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) |
| 5837 | { |
nothing calls this directly
no test coverage detected