| 9826 | } |
| 9827 | |
| 9828 | void ImGui::PushID(const char* str_id) |
| 9829 | { |
| 9830 | ImGuiContext& g = *GImGui; |
| 9831 | ImGuiWindow* window = g.CurrentWindow; |
| 9832 | ImGuiID id = window->GetID(str_id); |
| 9833 | window->IDStack.push_back(id); |
| 9834 | } |
| 9835 | |
| 9836 | void ImGui::PushID(const char* str_id_begin, const char* str_id_end) |
| 9837 | { |