From 34190ed45ee99dff3e00cf0deae4c3a845d55482 Mon Sep 17 00:00:00 2001 From: Melvil <86117447+melvi-l@users.noreply.github.com> Date: Wed, 27 May 2026 20:22:02 +0200 Subject: [PATCH] Correction in 02_Validation_layers.adoc --- en/03_Drawing_a_triangle/00_Setup/02_Validation_layers.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/03_Drawing_a_triangle/00_Setup/02_Validation_layers.adoc b/en/03_Drawing_a_triangle/00_Setup/02_Validation_layers.adoc index 8e873d4a..6aea007b 100644 --- a/en/03_Drawing_a_triangle/00_Setup/02_Validation_layers.adoc +++ b/en/03_Drawing_a_triangle/00_Setup/02_Validation_layers.adoc @@ -160,7 +160,7 @@ the GLFW dependency for windowing. We'll check if all the required extensions are available. We first get a list of all supported instance extensions by using the -`vk::raii::Context::enumerateInstanceLayerProperties` function and check that all +`vk::raii::Context::enumerateInstanceExtensionProperties` function and check that all required layers are listed in that list. This check is also performed directly in the `createInstance` function: