| 135 | } |
| 136 | |
| 137 | void Drawer::text(const char *formatstr, ...) |
| 138 | { |
| 139 | va_list args; |
| 140 | va_start(args, formatstr); |
| 141 | ImGui::TextV(formatstr, args); |
| 142 | va_end(args); |
| 143 | } |
| 144 | |
| 145 | template <> |
| 146 | bool Drawer::color_op_impl<Drawer::ColorOp::Edit, 3>(const char *caption, float *colors, ImGuiColorEditFlags flags) |
no outgoing calls
no test coverage detected