Searched refs:pipelineLayoutInfo (Results 1 – 1 of 1) sorted by relevance
673 VkPipelineLayoutCreateInfo pipelineLayoutInfo{}; in createGraphicsPipeline() local674 pipelineLayoutInfo.sType = VK_STRUCTURE_TYPE_PIPELINE_LAYOUT_CREATE_INFO; in createGraphicsPipeline()675 pipelineLayoutInfo.setLayoutCount = 0; in createGraphicsPipeline()676 pipelineLayoutInfo.pSetLayouts = nullptr; in createGraphicsPipeline()677 pipelineLayoutInfo.pushConstantRangeCount = 0; in createGraphicsPipeline()678 pipelineLayoutInfo.pPushConstantRanges = nullptr; in createGraphicsPipeline()680 VK_CHECK(vkCreatePipelineLayout(device, &pipelineLayoutInfo, nullptr, &pipelineLayout)); in createGraphicsPipeline()