| 397 | } |
| 398 | |
| 399 | void WritePoint3D(EncodeStream* stream, pag::Point3D value) { |
| 400 | stream->writeFloat(value.x); |
| 401 | stream->writeFloat(value.y); |
| 402 | stream->writeFloat(value.z); |
| 403 | } |
| 404 | |
| 405 | static void WritePathInternal(EncodeStream* stream, pag::PathHandle value) { |
| 406 | auto& points = value->points; |
no test coverage detected