You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-08 12:40:44 +00:00
Properly setup seed in RNG
This commit is contained in:
10
thirdparty/misc/pcg.cpp
vendored
10
thirdparty/misc/pcg.cpp
vendored
@@ -13,3 +13,13 @@ uint32_t pcg32_random_r(pcg32_random_t* rng)
|
||||
uint32_t rot = oldstate >> 59u;
|
||||
return (xorshifted >> rot) | (xorshifted << ((-rot) & 31));
|
||||
}
|
||||
|
||||
// Source from http://www.pcg-random.org/downloads/pcg-c-basic-0.9.zip
|
||||
void pcg32_srandom_r(pcg32_random_t* rng, uint64_t initstate, uint64_t initseq)
|
||||
{
|
||||
rng->state = 0U;
|
||||
rng->inc = (initseq << 1u) | 1u;
|
||||
pcg32_random_r(rng);
|
||||
rng->state += initstate;
|
||||
pcg32_random_r(rng);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user