From: phish3y Date: Fri, 18 Nov 2022 23:08:46 +0000 (-0800) Subject: Layers: update documentation to make it clear the VK_LAYER_PATH supports both explici... X-Git-Tag: upstream/1.3.240~31 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=35e7a9c924b3e3042c698695999e78b22ed5631f;p=platform%2Fupstream%2FVulkan-Loader.git Layers: update documentation to make it clear the VK_LAYER_PATH supports both explicit directories and files --- diff --git a/docs/LoaderApplicationInterface.md b/docs/LoaderApplicationInterface.md index 6144a665..9b9eef25 100644 --- a/docs/LoaderApplicationInterface.md +++ b/docs/LoaderApplicationInterface.md @@ -471,7 +471,7 @@ This can be accomplished in one of two ways: 1. Selecting specific layer paths using the [VkConfig](https://github.com/LunarG/VulkanTools/blob/master/vkconfig/README.md) tool shipped with the Vulkan SDK. - 2. Directing the loader to look for layers in specific folders by using the + 2. Directing the loader to look for layers in specific files and/or folders by using the `VK_LAYER_PATH` environment variable. The `VK_LAYER_PATH` environment variable can contain multiple paths separated by @@ -479,7 +479,7 @@ the operating-system specific path separator. On Windows, this is a semicolon (`;`), while on Linux and macOS it is a colon (`:`). -If `VK_LAYER_PATH` exists, the folders listed in it will be scanned for explicit +If `VK_LAYER_PATH` exists, the files and/or folders listed will be scanned for explicit layer manifest files. Implicit layer discovery is unaffected by this environment variable. Each directory listed should be the full pathname of a folder containing layer diff --git a/docs/LoaderInterfaceArchitecture.md b/docs/LoaderInterfaceArchitecture.md index a2cc6358..8c203b82 100644 --- a/docs/LoaderInterfaceArchitecture.md +++ b/docs/LoaderInterfaceArchitecture.md @@ -659,7 +659,7 @@ discovery. VK_LAYER_PATH Override the loader's standard Layer library search folders and use the - provided delimited folders to search for explicit layer manifest files. + provided delimited file and/or folders to locate explicit layer manifest files.