MCPcopy Create free account
hub / github.com/RenderKit/embree / MurmurHash3_finalize

Function MurmurHash3_finalize

tutorials/common/math/random_sampler.h:34–43  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32}
33
34__forceinline unsigned int MurmurHash3_finalize(unsigned int hash)
35{
36 hash ^= hash >> 16;
37 hash *= 0x85ebca6b;
38 hash ^= hash >> 13;
39 hash *= 0xc2b2ae35;
40 hash ^= hash >> 16;
41
42 return hash;
43}
44
45__forceinline unsigned int LCG_next(unsigned int value)
46{

Callers 2

renderPixelStandardFunction · 0.85
RandomSampler_initFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected