Create Vulkan semaphores for swapchain synchronization

This commit is contained in:
2021-08-12 22:40:40 -07:00
parent 0285e734bc
commit 1114210039
4 changed files with 86 additions and 7 deletions

View File

@@ -764,7 +764,12 @@ const char *KRPipeline::getKey() const {
return m_szKey;
}
VkRenderPass& KRPipeline::GetRenderPass()
VkRenderPass& KRPipeline::getRenderPass()
{
return m_renderPass;
}
VkPipeline& KRPipeline::getPipeline()
{
return m_graphicsPipeline;
}