| 6044 | } |
| 6045 | |
| 6046 | bool ImGui::TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) |
| 6047 | { |
| 6048 | ImGuiWindow* window = GetCurrentWindow(); |
| 6049 | if (window->SkipItems) |
| 6050 | return false; |
| 6051 | |
| 6052 | const char* label, * label_end; |
| 6053 | ImFormatStringToTempBufferV(&label, &label_end, fmt, args); |
| 6054 | return TreeNodeBehavior(window->GetID(str_id), flags, label, label_end); |
| 6055 | } |
| 6056 | |
| 6057 | bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args) |
| 6058 | { |
nothing calls this directly
no test coverage detected