| 862 | }; |
| 863 | |
| 864 | vec4f _builtin_hash ( Context & context, SimNode_CallBase * call, vec4f * args ) { |
| 865 | auto uhash = hash_value(context, args[0], call->types[0]); |
| 866 | return cast<uint64_t>::from(uhash); |
| 867 | } |
| 868 | |
| 869 | void heap_stats ( Context & ctx, uint64_t * bytes ) { |
| 870 | bytes[0] = ctx.heap->bytesAllocated(); |
nothing calls this directly
no test coverage detected