Fix windows build & a vulkan crash
Some checks failed
Windows setup / run-setup (push) Failing after 31m46s

This commit is contained in:
Brandyn / Techy
2026-04-07 00:27:47 -05:00
parent 88a307df63
commit 6ad4b01281
2 changed files with 3 additions and 3 deletions

View File

@@ -2499,7 +2499,7 @@ void FVulkanPipelineStateCacheManager::NotifyDeletedGraphicsPSO(FRHIGraphicsPipe
}
else
{
(*Contained)->DeleteVkPipeline(true);
(*Contained)->DeleteVkPipeline(false);
check(VkPSO->GetVulkanPipeline() == 0 );
}
GraphicsPSOLockedMap.Remove(Key);
@@ -2512,7 +2512,7 @@ void FVulkanPipelineStateCacheManager::NotifyDeletedGraphicsPSO(FRHIGraphicsPipe
{
check(0);
}
VkPSO->DeleteVkPipeline(true);
VkPSO->DeleteVkPipeline(false);
}
}