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

Function RandomSampler_getInt

tutorials/common/math/random_sampler.h:77–79  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

75}
76
77__forceinline int RandomSampler_getInt(RandomSampler& self) {
78 self.s = LCG_next(self.s); return self.s >> 1;
79}
80
81__forceinline unsigned int RandomSampler_getUInt(RandomSampler& self) {
82 self.s = LCG_next(self.s); return self.s;

Callers 15

random_boolMethod · 0.85
random_intMethod · 0.85
addRandomSubdivFeaturesFunction · 0.85
addHairMethod · 0.85
resizeRandomlyMethod · 0.85
runMethod · 0.85
runMethod · 0.85
RandomSampler_getFloatFunction · 0.85
resize_randomlyMethod · 0.85

Calls 1

LCG_nextFunction · 0.85

Tested by

no test coverage detected