| 5865 | } |
| 5866 | |
| 5867 | bool ImGui::TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) |
| 5868 | { |
| 5869 | ImGuiWindow* window = GetCurrentWindow(); |
| 5870 | if (window->SkipItems) |
| 5871 | return false; |
| 5872 | |
| 5873 | const char* label, *label_end; |
| 5874 | ImFormatStringToTempBufferV(&label, &label_end, fmt, args); |
| 5875 | return TreeNodeBehavior(window->GetID(str_id), flags, label, label_end); |
| 5876 | } |
| 5877 | |
| 5878 | bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) |
| 5879 | { |
nothing calls this directly
no test coverage detected