From 4a89051018cef521243b0bc5c7d13ca362e328d7 Mon Sep 17 00:00:00 2001 From: Juan Ramos Date: Thu, 7 Dec 2023 11:16:36 -0700 Subject: [PATCH] Minor improvements to VK_EXT_layer_settings documentation 1. Provide link to extension 2. Document the release it's officially available --- docs/layer_configuration.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/layer_configuration.md b/docs/layer_configuration.md index 0ba7099..360fe9b 100644 --- a/docs/layer_configuration.md +++ b/docs/layer_configuration.md @@ -23,7 +23,8 @@ Vulkan supports intercepting or hooking API entry points via a layer framework. Vulkan layers allow application developers to add functionality to Vulkan applications without modifying the application itself, e.g., validating API usages, dumping API entry points or generating screenshots of specified frames. Vulkan layers can be configured using three different methods to match specific Vulkan developers' workflows: -- Using the Vulkan API: `vkCreateInstance()` and `VK_EXT_layer_settings`. +- Using the Vulkan API: `vkCreateInstance()` and the [VK_EXT_layer_settings](https://registry.khronos.org/vulkan/specs/1.3-extensions/man/html/VK_EXT_layer_settings.html) extension. + - `VK_EXT_layer_settings` is now an official extension as of `1.3.272` - Using the `vk_layer_settings.txt` file, that can be generated by the GUI interface called *[Vulkan Configurator](https://vulkan.lunarg.com/doc/sdk/latest/windows/vkconfig.html)*. - Using environment variables.