diff --git a/config.json b/config.json index edb3a0b3..f07a1061 100644 --- a/config.json +++ b/config.json @@ -27,7 +27,8 @@ "Java code": "https://github.com/Naitsirc98/Vulkan-Tutorial-Java", "Go code": "https://github.com/vkngwrapper/vulkan-tutorial", "Visual Studio 2019 samples": "https://github.com/jjYBdx4IL/VulkanTutorial-VisualStudioProjectFiles", - "Chinese translation": "https://github.com/fangcun010/VulkanTutorialCN" + "Chinese translation": "https://github.com/fangcun010/VulkanTutorialCN", + "Arabic tutorial": "https://almhajer.github.io/GraphicsProgrammingAtlas/" } }, "ignore": { diff --git a/en/00_Introduction.md b/en/00_Introduction.md index 1d14c781..78a6a0f4 100644 --- a/en/00_Introduction.md +++ b/en/00_Introduction.md @@ -1,4 +1,4 @@ ->## Read before following this tutorial +## Read before following this tutorial > >This tutorial was written shortly after Vulkan was initially released, back in >2016. A lot has changed since then and this tutorial no longer reflects the best diff --git a/en/06_Texture_mapping/02_Combined_image_sampler.md b/en/06_Texture_mapping/02_Combined_image_sampler.md index 0f1e5496..270a952f 100644 --- a/en/06_Texture_mapping/02_Combined_image_sampler.md +++ b/en/06_Texture_mapping/02_Combined_image_sampler.md @@ -72,7 +72,7 @@ Since Vulkan shifts the responsiblity for the allocation to the driver, it is no longer a strict requirement to only allocate as many descriptors of a certain type (`VK_DESCRIPTOR_TYPE_COMBINED_IMAGE_SAMPLER`, etc.) as specified by the corresponding `descriptorCount` members for the creation of the descriptor pool. -However, it remains best practise to do so, and in the future, +However, it remains best practice to do so, and in the future, `VK_LAYER_KHRONOS_validation` will warn about this type of problem if you enable [Best Practice Validation](https://vulkan.lunarg.com/doc/view/1.4.304.0/linux/best_practices.html).