Fix windows build & a vulkan crash
Some checks failed
Windows setup / run-setup (push) Failing after 31m46s
Some checks failed
Windows setup / run-setup (push) Failing after 31m46s
This commit is contained in:
@@ -30,7 +30,7 @@ jobs:
|
|||||||
- name: Run GenerateProjectFiles.bat in repo root
|
- name: Run GenerateProjectFiles.bat in repo root
|
||||||
shell: cmd
|
shell: cmd
|
||||||
run: |
|
run: |
|
||||||
call RunGenerateProjectfiles.bat
|
call GenerateProjectfiles.bat
|
||||||
|
|
||||||
- name: Run winBuild.bat in repo root
|
- name: Run winBuild.bat in repo root
|
||||||
shell: cmd
|
shell: cmd
|
||||||
|
|||||||
@@ -2499,7 +2499,7 @@ void FVulkanPipelineStateCacheManager::NotifyDeletedGraphicsPSO(FRHIGraphicsPipe
|
|||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
(*Contained)->DeleteVkPipeline(true);
|
(*Contained)->DeleteVkPipeline(false);
|
||||||
check(VkPSO->GetVulkanPipeline() == 0 );
|
check(VkPSO->GetVulkanPipeline() == 0 );
|
||||||
}
|
}
|
||||||
GraphicsPSOLockedMap.Remove(Key);
|
GraphicsPSOLockedMap.Remove(Key);
|
||||||
@@ -2512,7 +2512,7 @@ void FVulkanPipelineStateCacheManager::NotifyDeletedGraphicsPSO(FRHIGraphicsPipe
|
|||||||
{
|
{
|
||||||
check(0);
|
check(0);
|
||||||
}
|
}
|
||||||
VkPSO->DeleteVkPipeline(true);
|
VkPSO->DeleteVkPipeline(false);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user