From: Andrew Cox Date: Wed, 1 Jun 2022 17:08:36 +0000 (+0100) Subject: Comment tweak to reflect new behaviour. X-Git-Tag: upstream/1.3.226~35 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d86dc61e76f66b32b6955e8e7cbfa3edc7ed7b32;p=platform%2Fupstream%2FVulkan-Loader.git Comment tweak to reflect new behaviour. --- diff --git a/loader/unknown_function_handling.c b/loader/unknown_function_handling.c index 1804eda9..73569e51 100644 --- a/loader/unknown_function_handling.c +++ b/loader/unknown_function_handling.c @@ -178,9 +178,9 @@ bool loader_check_icds_for_phys_dev_ext_address(struct loader_instance *inst, co bool loader_check_layer_list_for_phys_dev_ext_address(struct loader_instance *inst, const char *funcName) { struct loader_layer_properties *layer_prop_list = inst->expanded_activated_layer_list.list; + // Find the first layer in the call chain which supports vk_layerGetPhysicalDeviceProcAddr + // and call that, returning whether it found a valid pointer for this function name. for (uint32_t layer = 0; layer < inst->expanded_activated_layer_list.count; ++layer) { - // If this layer supports the vk_layerGetPhysicalDeviceProcAddr, then call - // it and see if it returns a valid pointer for this function name. if (layer_prop_list[layer].interface_version > 1) { const struct loader_layer_functions *const functions = &(layer_prop_list[layer].functions); if (NULL != functions->get_physical_device_proc_addr)