Redesigning pipeline

This commit is contained in:
2026-02-20 11:30:18 +00:00
parent 38dd0e732c
commit 6d22df0c46
8 changed files with 533 additions and 10 deletions

View File

@@ -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;
}
}