MCPcopy Create free account
hub / github.com/danoon2/Boxedwine / TreeNodeExV

Method TreeNodeExV

lib/imgui/imgui_widgets.cpp:5231–5240  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5229}
5230
5231bool 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
5242bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args)
5243{

Callers

nothing calls this directly

Calls 3

GetCurrentWindowFunction · 0.85
ImFormatStringVFunction · 0.85
GetIDMethod · 0.45

Tested by

no test coverage detected