Redesigning pipeline
This commit is contained in:
@@ -6,4 +6,12 @@ namespace cve {
|
||||
glfwPollEvents();
|
||||
}
|
||||
}
|
||||
void FirstApp::createPipelineLayout() {
|
||||
VkPipelineLayoutCreateInfo pipelineLayoutInfo{};
|
||||
pipelineLayoutInfo.sType = VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO;
|
||||
pipelineLayoutInfo.setLayoutCount = 0;
|
||||
pipelineLayoutInfo.pSetLayouts = nullptr;
|
||||
pipelineLayoutInfo.pushConstantRangeCount = 0;
|
||||
pipelineLayoutInfo.pPushConstantRanges = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user