| 59 | }; |
| 60 | |
| 61 | uint64_t hash_value ( Context & ctx, void * pX, TypeInfo * info ) { |
| 62 | HashDataWalker walker(ctx); |
| 63 | walker.walk((char*)pX,info); |
| 64 | return walker.getHash(); |
| 65 | } |
| 66 | |
| 67 | uint64_t hash_value ( Context & ctx, vec4f value, TypeInfo * info ) { |
| 68 | HashDataWalker walker(ctx); |
no test coverage detected