x
 
1
/*
2
3
    daily: 007
4
    author: Will Stallwood
5
    insta: https://www.instagram.com/willstall/
6
    
7
*/
8
9
#ifdef GL_ES
10
    precision mediump float;
11
#endif
12
13
#define PI 3.14159265359
14
#define HALF_PI 1.57079632675
15
#define TWO_PI 6.283185307
16
17
uniform vec2 u_resolution;
18
uniform vec2 u_mouse;
19
uniform float u_time;
20
21
vec2 center(vec2 st)
22
{
23
    float aspect = u_resolution.x/u_resolution.y;
24
    st.x = st.x * aspect - aspect * 0.5 + 0.5;
25
    return st;
26
}
27
28
float mmax(float d, float d1, float d2)
29
{
30
    return min(d,  max(d1,d2));
31
}
32
33
void main() {
34
    vec2 st = gl_FragCoord.xy / u_resolution.xy;
35
    st = center( st );
36
37
    vec3 color = vec3(0.1);
38
39
    float d0 = length(st - vec2(0.5));
40
    
41
    float d1 = length(st);
42
    float d2 = length(st - vec2(1.0));
43
    float d3 = length(st - vec2(1.0,0.0));
44
    float d4 = length(st - vec2(0.0,1.0));
45
46
    float t = u_time * 5.0;
47
    float d = 1.0;
48
        d = mmax(d,d0,d1);
49
        d = mmax(d,d0,d2);
50
        d = mmax(d,d0,d3);
51
        d = mmax(d,d0,d4);
52
53
    float g = smoothstep(0.3,0.4,sin(d*100.0+t));
54
        g += smoothstep(-3.,1.0,sin(d*100.0+t))*.2*sin(t*1.0);
55
        g *= smoothstep( .1, .2,sin(d*10.0+t*1.5));//-.1;
56
        g -= smoothstep(-.1,.2,sin(d*10.0+t*1.5))*.2*sin(t*1.0);
57
        
58
        
59
    color += g;
60
61
    // vignette
62
    color *= 1.0-(length(st-0.5)-.3);
63
64
    gl_FragColor = vec4(color, 1.0);
65
}