thebookofshaders/11/2d-noise.frag

52 lines
1.1 KiB
GLSL
Raw Normal View History

2015-03-15 15:35:14 +00:00
#ifdef GL_ES
precision mediump float;
#endif
uniform vec2 u_resolution;
2015-03-19 21:06:41 +00:00
uniform vec2 u_mouse;
2015-03-15 15:35:14 +00:00
uniform float u_time;
2015-09-22 20:59:05 +00:00
// 2D Random
2017-08-19 10:11:58 +00:00
float random (in vec2 st) {
2015-05-01 20:05:55 +00:00
return fract(sin(dot(st.xy,
2015-09-22 20:59:05 +00:00
vec2(12.9898,78.233)))
* 43758.5453123);
2015-03-15 15:35:14 +00:00
}
2015-09-22 20:59:05 +00:00
// 2D Noise based on Morgan McGuire @morgan3d
2015-03-15 15:35:14 +00:00
// https://www.shadertoy.com/view/4dS3Wd
2015-05-01 20:05:55 +00:00
float noise (in vec2 st) {
vec2 i = floor(st);
vec2 f = fract(st);
2015-03-15 15:35:14 +00:00
// Four corners in 2D of a tile
float a = random(i);
float b = random(i + vec2(1.0, 0.0));
float c = random(i + vec2(0.0, 1.0));
float d = random(i + vec2(1.0, 1.0));
// Smooth Interpolation
// Cubic Hermine Curve. Same as SmoothStep()
vec2 u = f*f*(3.0-2.0*f);
// u = smoothstep(0.,1.,f);
2015-03-15 15:35:14 +00:00
2015-09-22 20:59:05 +00:00
// Mix 4 coorners porcentages
2017-08-19 10:11:58 +00:00
return mix(a, b, u.x) +
(c - a)* u.y * (1.0 - u.x) +
2015-03-15 15:35:14 +00:00
(d - b) * u.x * u.y;
}
void main() {
vec2 st = gl_FragCoord.xy/u_resolution.xy;
2015-09-22 20:59:05 +00:00
// Scale the coordinate system to see
// some noise in action
2015-09-09 14:32:52 +00:00
vec2 pos = vec2(st*5.0);
2015-03-15 15:35:14 +00:00
2015-09-22 20:59:05 +00:00
// Use the noise function
float n = noise(pos);
2015-03-15 15:35:14 +00:00
2015-09-22 20:59:05 +00:00
gl_FragColor = vec4(vec3(n), 1.0);
2017-08-19 10:11:58 +00:00
}