| 200 | #define API_NAME "Vulkan" |
| 201 | |
| 202 | std::vector<const char *> get_c_str_array(std::vector<std::string> const &vec) { |
| 203 | std::vector<const char *> ret; |
| 204 | for (auto &str : vec) ret.push_back(str.c_str()); |
| 205 | return ret; |
| 206 | } |
| 207 | |
| 208 | static const char *VkDebugReportFlagsEXTString(const VkDebugReportFlagsEXT flags) { |
| 209 | switch (flags) { |
no outgoing calls
no test coverage detected