Lines Matching +full:- +full:validation +full:- +full:settings
3 * Copyright (c) 2014-2022 The Khronos Group Inc.
4 * Copyright (c) 2014-2022 Valve Corporation
5 * Copyright (c) 2014-2022 LunarG, Inc.
11 * http://www.apache.org/licenses/LICENSE-2.0
21 * Author: Chia-I Wu <olvaffe@gmail.com>
22 * Author: Chia-I Wu <olv@lunarg.com>
37 #include "settings.h"
52 // Parse comma-separated debug options in loader_init_global_debug_level()
59 len = p - env; in loader_init_global_debug_level()
149 msg[sizeof(msg) - 1] = '\0'; in loader_log()
175 …// For loader logging, if it's a validation message, we still want to also keep the general flag a… in loader_log()
176 // so messages of type validation can still be triggered for general message callbacks. in loader_log()
196 if (inst && inst->settings.settings_active && inst->settings.debug_level > 0) { in loader_log()
197 …// Exit early if the current instance settings have some debugging options but do match the curren… in loader_log()
198 if (0 == (msg_type & inst->settings.debug_level)) { in loader_log()
201 … // Check the global settings and if that doesn't say to skip, check the environment variable in loader_log()
260 // Only write (32 - num_used) spaces in loader_log()
261 … loader_strncat(cmd_line_msg, cmd_line_size, space_buffer, sizeof(space_buffer) - 1 - num_used); in loader_log()