thebookofshaders/05/linear.frag

27 lines
485 B
GLSL
Raw Normal View History

2015-03-15 15:21:47 +00:00
#ifdef GL_ES
precision mediump float;
#endif
uniform vec2 u_resolution;
uniform vec2 u_mouse;
uniform float u_time;
// Plot a line on Y using a value between 0.0-1.0
float plot(vec2 st) {
return smoothstep(0.02, 0.0, abs(st.y - st.x));
2015-03-15 15:21:47 +00:00
}
void main() {
vec2 st = gl_FragCoord.xy/u_resolution;
float y = st.x;
vec3 color = vec3(y);
2017-08-19 10:11:58 +00:00
2015-03-15 15:21:47 +00:00
// Plot a line
float pct = plot(st);
2015-03-15 15:21:47 +00:00
color = (1.0-pct)*color+pct*vec3(0.0,1.0,0.0);
2017-08-19 10:11:58 +00:00
2015-03-15 15:21:47 +00:00
gl_FragColor = vec4(color,1.0);
2017-08-19 10:11:58 +00:00
}