| 352 | } |
| 353 | |
| 354 | int DebugDraw::AddLines(const std::vector<float> &vertices, const std::vector<unsigned> &indices, const vec4 &color, const DDLifespan lifespan, const DDFlag &flags) { |
| 355 | DebugDrawElement *element = new DebugDrawLines(vertices, indices, color, flags); |
| 356 | return AddElement(element, lifespan); |
| 357 | } |
| 358 | |
| 359 | int DebugDraw::AddLines(const std::vector<vec3> &vertices, const vec4 &color, const DDLifespan lifespan, const DDFlag &flags) { |
| 360 | DebugDrawElement *element = new DebugDrawLines(vertices, color, flags); |
no outgoing calls
no test coverage detected