| 471 | } |
| 472 | |
| 473 | void Primitive::memoryUsage( Object::MemoryAccumulator &a ) const |
| 474 | { |
| 475 | VisibleRenderable::memoryUsage( a ); |
| 476 | for( PrimitiveVariableMap::const_iterator it=variables.begin(); it!=variables.end(); it++ ) |
| 477 | { |
| 478 | a.accumulate( it->second.data.get() ); |
| 479 | } |
| 480 | } |
| 481 | |
| 482 | void Primitive::hash( MurmurHash &h ) const |
| 483 | { |
nothing calls this directly
no test coverage detected