| 2694 | } |
| 2695 | |
| 2696 | ImGuiID ImGuiWindow::GetIDNoKeepAlive(const char* str, const char* str_end) |
| 2697 | { |
| 2698 | ImGuiID seed = IDStack.back(); |
| 2699 | return ImHashStr(str, str_end ? (str_end - str) : 0, seed); |
| 2700 | } |
| 2701 | |
| 2702 | ImGuiID ImGuiWindow::GetIDNoKeepAlive(const void* ptr) |
| 2703 | { |
no test coverage detected