| 148 | } |
| 149 | |
| 150 | void CurvesPrimitive::memoryUsage( Object::MemoryAccumulator &a ) const |
| 151 | { |
| 152 | Primitive::memoryUsage( a ); |
| 153 | a.accumulate( sizeof( CubicBasisf ) + sizeof( bool ) * 2 + sizeof( unsigned ) * 2 ); |
| 154 | a.accumulate( m_vertsPerCurve.get() ); |
| 155 | } |
| 156 | |
| 157 | void CurvesPrimitive::hash( MurmurHash &h ) const |
| 158 | { |
nothing calls this directly
no test coverage detected