| 241 | } |
| 242 | |
| 243 | void ImagePrimitive::hash( MurmurHash &h ) const |
| 244 | { |
| 245 | BlindDataHolder::hash( h ); |
| 246 | |
| 247 | for( const auto &channel : channels ) |
| 248 | { |
| 249 | h.append( channel.first ); |
| 250 | channel.second->hash( h ); |
| 251 | } |
| 252 | |
| 253 | h.append( m_dataWindow ); |
| 254 | h.append( m_displayWindow ); |
| 255 | } |
| 256 | |
| 257 | /////////////////////////////////////////////////////////////////////////////////////////// |
| 258 | // Space methods |