mirror of
				https://github.com/Drezil/imgui.git
				synced 2025-11-03 22:51:06 +01:00 
			
		
		
		
	This commit is contained in:
		@@ -7514,6 +7514,15 @@ ImGuiID ImGui::GetIDWithSeed(const char* str, const char* str_end, ImGuiID seed)
 | 
			
		||||
    return id;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
ImGuiID ImGui::GetIDWithSeed(int n, ImGuiID seed)
 | 
			
		||||
{
 | 
			
		||||
    ImGuiID id = ImHashData(&n, sizeof(n), seed);
 | 
			
		||||
    ImGuiContext& g = *GImGui;
 | 
			
		||||
    if (g.DebugHookIdInfo == id)
 | 
			
		||||
        DebugHookIdInfo(id, ImGuiDataType_S32, (void*)(intptr_t)n, NULL);
 | 
			
		||||
    return id;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void ImGui::PopID()
 | 
			
		||||
{
 | 
			
		||||
    ImGuiWindow* window = GImGui->CurrentWindow;
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user