runnable fragment
code snippet
#ifdef GL_FRAGMENT_PRECISION_HIGH
precision highp float;
#else
precision mediump float;
#endif
uniform vec2 resolution;
uniform float time;
float frac(float c) {
return c - floor(c);
}
float rand(vec2 co, float e) {