| 134 | bool Empty() const { return name.empty(); } |
| 135 | |
| 136 | VkDebugUtilsLabelEXT Export() const { |
| 137 | VkDebugUtilsLabelEXT out = vku::InitStructHelper(); |
| 138 | out.pLabelName = name.c_str(); |
| 139 | std::copy(color.cbegin(), color.cend(), out.color); |
| 140 | return out; |
| 141 | }; |
| 142 | |
| 143 | LoggingLabel() : name(), color({{0.f, 0.f, 0.f, 0.f}}) {} |
| 144 | LoggingLabel(const VkDebugUtilsLabelEXT* label_info); |
no test coverage detected