MCPcopy Create free account
hub / github.com/KebsCS/KBotExt / TreeNodeExV

Method TreeNodeExV

KBotExt/imgui/imgui_widgets.cpp:6046–6055  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

6044}
6045
6046bool 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
6057bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args)
6058{

Callers

nothing calls this directly

Calls 3

GetCurrentWindowFunction · 0.85
GetIDMethod · 0.80

Tested by

no test coverage detected