MCPcopy Create free account
hub / github.com/BoomingTech/Piccolo / TreeNodeExV

Method TreeNodeExV

engine/3rdparty/imgui/imgui_widgets.cpp:5825–5834  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5823}
5824
5825bool 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
5836bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args)
5837{

Callers

nothing calls this directly

Calls 3

GetCurrentWindowFunction · 0.85
ImFormatStringVFunction · 0.85
GetIDMethod · 0.45

Tested by

no test coverage detected