summaryrefslogtreecommitdiff
path: root/00f.glsl
blob: a3e8d18efff211cc1d04538100f0735791481fac (plain)
1
2
3
4
5
6
7
varying vec2 pos;
uniform float u_time;

void main() {
	float t = mod(u_time, 2.0*3.1415926536);
	gl_FragColor = vec4(pos.x, 0.5+0.5*sin(5.0*t), pos.y, 1.0);
}