| 581 | } |
| 582 | |
| 583 | void float3_hash(const Node *node, const SocketType &socket, MD5Hash &md5) |
| 584 | { |
| 585 | /* Don't compare 4th element used for padding. */ |
| 586 | md5.append(((uint8_t *)node) + socket.struct_offset, sizeof(float) * 3); |
| 587 | } |
| 588 | |
| 589 | template<typename T> void array_hash(const Node *node, const SocketType &socket, MD5Hash &md5) |
| 590 | { |