webgl-noise/src
Stefan Gustavson 3e2528debc
New permutation (improved randomness)
2021-06-30 16:10:31 +02:00
..
README Created file 2016-05-16 10:45:35 +02:00
cellular2D.glsl New permutation (improved randomness) 2021-06-30 16:05:32 +02:00
cellular2x2.glsl New permutation (improved randomness) 2021-06-30 16:06:11 +02:00
cellular2x2x2.glsl New permutation (improved randomness) 2021-06-30 16:06:49 +02:00
cellular3D.glsl New permutation (improved randomness) 2021-06-30 16:07:15 +02:00
classicnoise2D.glsl New permutation (improved randomness) 2021-06-30 16:07:40 +02:00
classicnoise3D.glsl New permutation (improved randomness) 2021-06-30 16:07:57 +02:00
classicnoise4D.glsl New permutation (improved randomness) 2021-06-30 16:08:16 +02:00
noise2D.glsl New permutation (improved randomness) 2021-06-30 16:08:31 +02:00
noise3D.glsl New permutation (improved randomness) 2021-06-30 16:08:50 +02:00
noise3Dgrad.glsl New permutation (improved randomness) 2021-06-30 16:09:09 +02:00
noise4D.glsl New permutation (improved randomness) 2021-06-30 16:09:32 +02:00
psrdnoise2D.glsl New permutation (improved randomness) 2021-06-30 16:10:31 +02:00

README

These files contain noise functions that are compatible with all
current versions of GLSL (1.20 and up), and all you need to use them
is provided in the source file. There is no external data, and no
setup procedure. Just cut and paste and call the function.

GLSL has a very rudimentary linker, so some helper functions are
included in several of the files with the same name. If you want to
use more than one of these functions in the same shader, you may run
into problems with redefinition of the functions mod289() and permute().
If that happens, just delete any superfluous definitions.