From: phish3y Date: Wed, 30 Nov 2022 04:24:44 +0000 (-0800) Subject: Layers: update log message and documentation so it is clear that VK_LAYER_PATH does... X-Git-Tag: upstream/1.3.240~27 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=6c21d914688487a5cd794ee95ba2cd29cd38256d;p=platform%2Fupstream%2FVulkan-Loader.git Layers: update log message and documentation so it is clear that VK_LAYER_PATH does not only search directories --- diff --git a/docs/LoaderDebugging.md b/docs/LoaderDebugging.md index 8ed0dfc6..1704c8f6 100644 --- a/docs/LoaderDebugging.md +++ b/docs/LoaderDebugging.md @@ -99,7 +99,7 @@ the following: ``` LAYER: Searching for layer manifest files -LAYER: In following folders: +LAYER: In following locations: LAYER: /home/${USER}/.config/vulkan/implicit_layer.d LAYER: /etc/xdg/vulkan/implicit_layer.d LAYER: /usr/local/etc/vulkan/implicit_layer.d diff --git a/loader/loader.c b/loader/loader.c index b8a7954f..bc802849 100644 --- a/loader/loader.c +++ b/loader/loader.c @@ -3118,7 +3118,7 @@ static VkResult read_data_files_in_search_paths(const struct loader_instance *in log_flags = VULKAN_LOADER_LAYER_BIT; loader_log(inst, VULKAN_LOADER_LAYER_BIT, 0, "Searching for layer manifest files"); } - loader_log(inst, log_flags, 0, " In following folders:"); + loader_log(inst, log_flags, 0, " In following locations:"); char *cur_file; char *next_file = tmp_search_path; while (NULL != next_file && *next_file != '\0') {