| 221 | } |
| 222 | |
| 223 | void PatchMeshPrimitive::memoryUsage( Object::MemoryAccumulator &a ) const |
| 224 | { |
| 225 | Primitive::memoryUsage( a ); |
| 226 | a.accumulate( sizeof( CubicBasisf ) * 2 + sizeof( bool ) * 4 + sizeof( unsigned ) * 2 ); |
| 227 | } |
| 228 | |
| 229 | void PatchMeshPrimitive::hash( MurmurHash &h ) const |
| 230 | { |
nothing calls this directly
no test coverage detected