| 560 | } |
| 561 | |
| 562 | static void SetValidationSetting(VkuLayerSettingSet layer_setting_set, ValidationDisabled& disable_data, |
| 563 | const DisableFlags feature_disable, const char* setting) { |
| 564 | if (vkuHasLayerSetting(layer_setting_set, setting)) { |
| 565 | bool enabled = true; |
| 566 | vkuGetLayerSettingValue(layer_setting_set, setting, enabled); |
| 567 | disable_data[feature_disable] = !enabled; |
| 568 | } |
| 569 | } |
| 570 | |
| 571 | static void SetValidationSetting(VkuLayerSettingSet layer_setting_set, ValidationEnabled& enable_data, |
| 572 | const EnableFlags feature_enable, const char* setting) { |
no outgoing calls
no test coverage detected