MCPcopy Create free account
hub / github.com/KhronosGroup/Vulkan-Profiles / GetDebugActionsLog

Function GetDebugActionsLog

layer/profiles_settings.cpp:53–66  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51
52
53std::string GetDebugActionsLog(DebugActionFlags flags) {
54 std::string result = {};
55
56 std::vector<std::string> tmp = GetDebugActionStrings(flags);
57
58 for (std::size_t i = 0, n = tmp.size(); i < n; ++i) {
59 if (!result.empty()) {
60 result += ", ";
61 }
62 result += tmp[i];
63 }
64
65 return result;
66}
67
68#if defined(__ANDROID__)
69

Callers 1

Calls 1

GetDebugActionStringsFunction · 0.85

Tested by

no test coverage detected