| 27 | } |
| 28 | |
| 29 | void DrawTriangles(dmVMath::Point3* points, uint32_t point_count, dmVMath::Vector4 color, void* user_data) |
| 30 | { |
| 31 | for (uint32_t i = 0; i < point_count/3; ++i) |
| 32 | dmRender::Triangle3d((dmRender::HRenderContext)user_data, &points[3*i], color); |
| 33 | } |
| 34 | } |
nothing calls this directly
no test coverage detected