From 2c86ad0e651c3c5a42e7a1ec0d5f0c46bb706569 Mon Sep 17 00:00:00 2001 From: "Adam B." Date: Tue, 30 Jun 2026 19:29:42 +0100 Subject: [PATCH] Fixed a brain typo. --- tutorial/docs/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorial/docs/index.md b/tutorial/docs/index.md index 05ba30d..ee80181 100644 --- a/tutorial/docs/index.md +++ b/tutorial/docs/index.md @@ -361,7 +361,7 @@ chk(vkGetPhysicalDeviceSurfaceCapabilitiesKHR(devices[deviceIndex], surface, &su To visually present something to a surface (in our case, the window) we need to create a swapchain. It's basically a series of images, storing color information, that you enqueue to the presentation engine of the operating system. The [`VkSwapchainCreateInfoKHR`](https://docs.vulkan.org/refpages/latest/refpages/source/VkSwapchainCreateInfoKHR.html) is pretty extensive and requires some explanation. -First step is getting the correct extent of the swapchain. Usually we can get this from the surface capabilities we just queried, but on [Wayland](https://docs.vulkan.org/spec/latest/chapters/VK_KHR_surface/wsi.html#platformCreateSurface_wayland) this has the special value `0xFFFFFFFF`, which indicate that the surface size will basically be determined by the size of the surface: +First step is getting the correct extent of the swapchain. Usually we can get this from the surface capabilities we just queried, but on [Wayland](https://docs.vulkan.org/spec/latest/chapters/VK_KHR_surface/wsi.html#platformCreateSurface_wayland) this has the special value `0xFFFFFFFF`, which indicate that the surface size will basically be determined by the size of the window: ```cpp