| 22 | using PathSegment = PGLPathSegmentData; |
| 23 | |
| 24 | OPENPGL_INLINE void Reset(PathSegment *pathSegment) |
| 25 | { |
| 26 | OPENPGL_ASSERT(pathSegment); |
| 27 | *pathSegment = PathSegment(); |
| 28 | } |
| 29 | |
| 30 | OPENPGL_INLINE void SetPosition(PathSegment *pathSegment, const pgl_point3f &position) |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected