Overv / VulkanTutorial

Tutorial for the Vulkan graphics and compute API
https://vulkan-tutorial.com
Creative Commons Attribution Share Alike 4.0 International
3.08k stars 513 forks source link

correction en/03_Drawing_a_triangle/02_Graphics_pipeline_basics/04_Conclusion.md #227

Closed hwpfeil closed 3 years ago

hwpfeil commented 3 years ago

"We start by referencing the array of VkPipelineShaderStageCreateInfo structs."

Should not that reference be "VkGraphicsPipelineCreateInfo" pointing to https://www.khronos.org/registry/vulkan/specs/1.2-extensions/man/html/VkGraphicsPipelineCreateInfo.html?

Overv commented 3 years ago

No, that instruction is referring to this line:

pipelineInfo.pStages = shaderStages;