New permutation (improved randomness)

master
Stefan Gustavson 2021-06-30 16:06:49 +02:00 committed by GitHub
parent 079ea98dcf
commit aa505adc3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -23,11 +23,11 @@ vec4 mod7(vec4 x) {
// Permutation polynomial: (34x^2 + 6x) mod 289
vec3 permute(vec3 x) {
return mod289((34.0 * x + 6.0) * x);
return mod289((34.0 * x + 10.0) * x);
}
vec4 permute(vec4 x) {
return mod289((34.0 * x + 6.0) * x);
return mod289((34.0 * x + 10.0) * x);
}
// Cellular noise, returning F1 and F2 in a vec2.