| 7015 | } |
| 7016 | |
| 7017 | void 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 | |
| 7025 | void ImGui::PushID(const char* str_id_begin, const char* str_id_end) |
| 7026 | { |
nothing calls this directly
no test coverage detected