2015-09-02 03:44:16 +03:00
|
|
|
#version 100
|
|
|
|
|
|
|
|
precision mediump float;
|
|
|
|
|
2016-05-18 13:04:27 +03:00
|
|
|
// Input vertex attributes (from vertex shader)
|
2015-09-02 03:44:16 +03:00
|
|
|
varying vec2 fragTexCoord;
|
2016-05-18 13:04:27 +03:00
|
|
|
varying vec4 fragColor;
|
2015-09-02 03:44:16 +03:00
|
|
|
|
2016-05-18 13:04:27 +03:00
|
|
|
// Input uniform values
|
2015-09-02 03:44:16 +03:00
|
|
|
uniform sampler2D texture0;
|
2016-07-19 11:57:35 +03:00
|
|
|
uniform vec4 colDiffuse;
|
2015-09-02 03:44:16 +03:00
|
|
|
|
|
|
|
// NOTE: Add here your custom variables
|
|
|
|
|
2016-07-19 11:57:35 +03:00
|
|
|
// NOTE: Render size values must be passed from code
|
|
|
|
const float renderWidth = 800;
|
|
|
|
const float renderHeight = 450;
|
2015-09-02 03:44:16 +03:00
|
|
|
|
|
|
|
float radius = 250.0;
|
|
|
|
float angle = 0.8;
|
|
|
|
|
2016-05-18 13:04:27 +03:00
|
|
|
uniform vec2 center = vec2(200.0, 200.0);
|
2015-09-02 03:44:16 +03:00
|
|
|
|
2016-05-18 13:04:27 +03:00
|
|
|
void main()
|
2015-09-02 03:44:16 +03:00
|
|
|
{
|
|
|
|
vec2 texSize = vec2(renderWidth, renderHeight);
|
|
|
|
vec2 tc = fragTexCoord*texSize;
|
|
|
|
tc -= center;
|
|
|
|
|
2016-05-18 13:04:27 +03:00
|
|
|
float dist = length(tc);
|
|
|
|
|
2015-09-02 03:44:16 +03:00
|
|
|
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)));
|
|
|
|
}
|
2016-05-18 13:04:27 +03:00
|
|
|
|
2015-09-02 03:44:16 +03:00
|
|
|
tc += center;
|
|
|
|
vec3 color = texture2D(texture0, tc/texSize).rgb;
|
|
|
|
|
|
|
|
gl_FragColor = vec4(color, 1.0);;
|
|
|
|
}
|