Overv / VulkanTutorial

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

Missing updates and code inconsistence #280

Open Flixkowsky opened 2 years ago

Flixkowsky commented 2 years ago

Awesome tutorial, really appreciating it 👍 but:

The example code provided in this repo does not match the little excerpts/code blocks inside the website. Also the code blocks are not the same in the different language versions of the website.

279

Example: (links down below) See the second code block in the given chapter

french website: submitInfo.pCommandBuffers = &commandBuffers[imageIndex]; englisch website: submitInfo.pCommandBuffers = commandBuffer; github code 15_hello_triangle.cpp::L653: submitInfo.pCommandBuffers = &commandBuffer;

Krenodeno commented 2 years ago

Hi, The tutorial was recently updated with a big change in how we record and use command buffers, the french translation is not up to date yet. I'm trying to keep track of all the changes, but I'm lacking time.