| 8430 | } |
| 8431 | |
| 8432 | void ImGui::PushID(const char* str_id) |
| 8433 | { |
| 8434 | ImGuiContext& g = *GImGui; |
| 8435 | ImGuiWindow* window = g.CurrentWindow; |
| 8436 | ImGuiID id = window->GetID(str_id); |
| 8437 | window->IDStack.push_back(id); |
| 8438 | } |
| 8439 | |
| 8440 | void ImGui::PushID(const char* str_id_begin, const char* str_id_end) |
| 8441 | { |