MCPcopy Create free account
hub / github.com/VictorGordan/opengl-tutorials / TreeNodeExV

Method TreeNodeExV

ImGUI GLFW Tutorial/imgui/imgui_widgets.cpp:5634–5643  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5632}
5633
5634bool ImGui::TreeNodeExV(const char* str_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args)
5635{
5636 ImGuiWindow* window = GetCurrentWindow();
5637 if (window->SkipItems)
5638 return false;
5639
5640 ImGuiContext& g = *GImGui;
5641 const char* label_end = g.TempBuffer + ImFormatStringV(g.TempBuffer, IM_ARRAYSIZE(g.TempBuffer), fmt, args);
5642 return TreeNodeBehavior(window->GetID(str_id), flags, g.TempBuffer, label_end);
5643}
5644
5645bool ImGui::TreeNodeExV(const void* ptr_id, ImGuiTreeNodeFlags flags, const char* fmt, va_list args)
5646{

Callers

nothing calls this directly

Calls 3

GetCurrentWindowFunction · 0.70
ImFormatStringVFunction · 0.70
GetIDMethod · 0.45

Tested by

no test coverage detected