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

Method PushID

ImGUI GLFW Tutorial/imgui/imgui.cpp:7017–7023  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

7015}
7016
7017void ImGui::PushID(const char* str_id)
7018{
7019 ImGuiContext& g = *GImGui;
7020 ImGuiWindow* window = g.CurrentWindow;
7021 ImGuiID id = window->GetIDNoKeepAlive(str_id);
7022 window->IDStack.push_back(id);
7023}
7024
7025void ImGui::PushID(const char* str_id_begin, const char* str_id_end)
7026{

Callers

nothing calls this directly

Calls 2

GetIDNoKeepAliveMethod · 0.45
push_backMethod · 0.45

Tested by

no test coverage detected