From 7b31327be16f9d9ca7b77f4c655b02320156aaa7 Mon Sep 17 00:00:00 2001 From: MikhailGorobets Date: Sun, 25 Jan 2026 12:33:12 +0600 Subject: [PATCH] Render State Notation: Fixed assert with async pipelines (close #259) --- RenderStateNotation/src/RenderStateNotationLoaderImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RenderStateNotation/src/RenderStateNotationLoaderImpl.cpp b/RenderStateNotation/src/RenderStateNotationLoaderImpl.cpp index 5ed54b86..a8dab7a7 100644 --- a/RenderStateNotation/src/RenderStateNotationLoaderImpl.cpp +++ b/RenderStateNotation/src/RenderStateNotationLoaderImpl.cpp @@ -295,7 +295,7 @@ void RenderStateNotationLoaderImpl::LoadPipelineState(const LoadPipelineStateInf } if (LoadInfo.AddToCache) - m_PipelineStateCache[std::make_pair(HashMapStringKey{pPipeline->GetDesc().Name, false}, pPipeline->GetDesc().PipelineType)] = pPipeline; + m_PipelineStateCache[std::make_pair(HashMapStringKey{LoadInfo.Name, false}, LoadInfo.PipelineType)] = pPipeline; } *ppPSO = pPipeline.Detach();