Fix compile errors

This commit is contained in:
2019-10-15 16:32:22 +02:00
parent 886fa07059
commit 638009d729
2 changed files with 2 additions and 1 deletions

View File

@@ -74,7 +74,7 @@ namespace openVulkanoCpp
vk::GraphicsPipelineCreateInfo pipelineCreateInfo = { {}, static_cast<uint32_t>(shaderStageCreateInfos.size()), shaderStageCreateInfos.data(), &pipelineVertexInputStateCreateInfo, &inputAssembly,
nullptr, &viewportStateCreateInfo, &rasterizer, &msaa, &depth, &colorInfo, nullptr, context->pipeline.pipelineLayout, context->swapChainRenderPass.renderPass };
pipeline = this->device.createGraphicsPipeline({}, pipelineCreateInfo);
pipeline = this->device.createGraphicsPipeline({}, pipelineCreateInfo).value;
}