| 6940 | } |
| 6941 | |
| 6942 | void ImGui::PushID(const char* str_id) |
| 6943 | { |
| 6944 | ImGuiWindow* window = GImGui->CurrentWindow; |
| 6945 | window->IDStack.push_back(window->GetIDNoKeepAlive(str_id)); |
| 6946 | } |
| 6947 | |
| 6948 | void ImGui::PushID(const char* str_id_begin, const char* str_id_end) |
| 6949 | { |
nothing calls this directly
no test coverage detected