| 784 | } |
| 785 | |
| 786 | std::string Configurator::LogLoaderMessage() const { |
| 787 | std::string log; |
| 788 | |
| 789 | if (this->loader_log_enabled) { |
| 790 | log += format(" - Vulkan Loader Messages: %s\n", GetLogString(this->loader_log_messages_flags).c_str()); |
| 791 | } else { |
| 792 | log += " - Vulkan Loader Messages: disabled\n"; |
| 793 | } |
| 794 | |
| 795 | log += "\n"; |
| 796 | |
| 797 | return log; |
| 798 | } |
| 799 | |
| 800 | std::string Configurator::Log() const { |
| 801 | std::string log; |
no test coverage detected