MCPcopy Create free account
hub / github.com/DISTRHO/Cardinal / TreeNodeExV

Method TreeNodeExV

plugins/Cardinal/src/DearImGui/imgui_widgets.cpp:5806–5815  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5804}
5805
5806bool ImGui::TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args)
5807{
5808 ImGuiWindow* window = GetCurrentWindow();
5809 if (window->SkipItems)
5810 return false;
5811
5812 ImGuiContext& g = *GImGui;
5813 const char* label_end = g.TempBuffer + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args);
5814 return TreeNodeBehavior(window->GetID(str_id), flags, g.TempBuffer, label_end);
5815}
5816
5817bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args)
5818{

Callers

nothing calls this directly

Calls 3

GetCurrentWindowFunction · 0.85
ImFormatStringVFunction · 0.85
GetIDMethod · 0.80

Tested by

no test coverage detected