| 272 | } |
| 273 | |
| 274 | void DrawNode::drawPoint(const Vec2& position, |
| 275 | const float pointSize, |
| 276 | const Color4F& color, |
| 277 | const DrawNode::PointType pointType) |
| 278 | { |
| 279 | if (pointSize <= 0.0f) |
| 280 | return; |
| 281 | |
| 282 | _drawPoint(position, pointSize, color, pointType); |
| 283 | } |
| 284 | |
| 285 | void DrawNode::drawPoints(const Vec2* position, |
| 286 | unsigned int numberOfPoints, |
no outgoing calls