summaryrefslogtreecommitdiffhomepage
path: root/shaders/gles100/swirl.fs
blob: b50ed39edd0afe6e23216c1e91ac8f23548dd140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#version 100

precision mediump float;

varying vec2 fragTexCoord;

uniform sampler2D texture0;
uniform vec4 tintColor;

// NOTE: Add here your custom variables

const float renderWidth = 1280; 
const float renderHeight = 720; 

float radius = 250.0;
float angle = 0.8;

uniform vec2 center = vec2(200, 200);

void main (void)
{
    vec2 texSize = vec2(renderWidth, renderHeight);
    vec2 tc = fragTexCoord*texSize;
    tc -= center;
    float dist = length(tc);
    
    if (dist < radius) 
    {
        float percent = (radius - dist)/radius;
        float theta = percent*percent*angle*8.0;
        float s = sin(theta);
        float c = cos(theta);
        
        tc = vec2(dot(tc, vec2(c, -s)), dot(tc, vec2(s, c)));
    }
    
    tc += center;
    vec3 color = texture2D(texture0, tc/texSize).rgb;

    gl_FragColor = vec4(color, 1.0);;
}