MCPcopy Create free account
hub / github.com/RenderKit/embree / TreeNodeExV

Method TreeNodeExV

tutorials/common/imgui/imgui_widgets.cpp:5867–5876  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5865}
5866
5867bool ImGui::TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args)
5868{
5869 ImGuiWindow* window = GetCurrentWindow();
5870 if (window->SkipItems)
5871 return false;
5872
5873 const char* label, *label_end;
5874 ImFormatStringToTempBufferV(&label, &label_end, fmt, args);
5875 return TreeNodeBehavior(window->GetID(str_id), flags, label, label_end);
5876}
5877
5878bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args)
5879{

Callers

nothing calls this directly

Calls 3

GetCurrentWindowFunction · 0.85
GetIDMethod · 0.80

Tested by

no test coverage detected