Skip to content

Commit b2ea3a7

Browse files
authored
Patch 1 (#380)
* fix casing of a create info struct field * fix French too
1 parent fe5f29e commit b2ea3a7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

en/03_Drawing_a_triangle/01_Presentation/01_Swap_chain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -515,7 +515,7 @@ you'll get the best performance by enabling clipping.
515515
createInfo.oldSwapchain = VK_NULL_HANDLE;
516516
```
517517

518-
That leaves one last field, `oldSwapChain`. With Vulkan it's possible that your swap chain becomes invalid or unoptimized while your application is
518+
That leaves one last field, `oldSwapchain`. With Vulkan it's possible that your swap chain becomes invalid or unoptimized while your application is
519519
running, for example because the window was resized. In that case the swap chain
520520
actually needs to be recreated from scratch and a reference to the old one must
521521
be specified in this field. This is a complex topic that we'll learn more about

fr/03_Dessiner_un_triangle/01_Présentation/01_Swap_chain.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ informations, vous obtiendrez de meilleures performances en activant ce mode.
458458
createInfo.oldSwapchain = VK_NULL_HANDLE;
459459
```
460460

461-
Il nous reste un dernier champ, `oldSwapChain`. Il est possible avec Vulkan que la swap chain devienne
461+
Il nous reste un dernier champ, `oldSwapchain`. Il est possible avec Vulkan que la swap chain devienne
462462
invalide ou mal adaptée pendant que votre application tourne, par exemple parce que la fenêtre a été redimensionnée.
463463
Dans ce cas la swap chain doit être intégralement recréée et une référence à l'ancienne swap chain doit être fournie.
464464
C'est un sujet compliqué que nous aborderons [dans un chapitre futur](!fr/Dessiner_un_triangle/Recréation_de_la_swap_chain).

0 commit comments

Comments
 (0)