| 362 | } |
| 363 | |
| 364 | int DebugDraw::AddCircle(const mat4 &transform, const vec4 &color, const DDLifespan lifespan, const DDFlag &flags) { |
| 365 | DebugDrawElement *element = new DebugDrawCircle(transform, color, flags); |
| 366 | return AddElement(element, lifespan); |
| 367 | } |
| 368 | |
| 369 | int DebugDraw::AddBillboard(const TextureRef &ref, const vec3 &position, float scale, const vec4 &color, AlphaMode mode, const DDLifespan lifespan) { |
| 370 | DebugDrawElement *element = new DebugDrawBillboard(ref, position, scale, color, mode); |
no outgoing calls
no test coverage detected