mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-10 20:45:35 +01:00
78 lines
1.7 KiB
GLSL
78 lines
1.7 KiB
GLSL
//
|
|
// Simple passthrough fragment shader
|
|
//
|
|
varying vec2 v_vTexcoord;
|
|
varying vec4 v_vColour;
|
|
|
|
uniform vec2 dimension;
|
|
uniform vec2 scale;
|
|
uniform vec2 shift;
|
|
uniform float height;
|
|
uniform int slope;
|
|
|
|
#define TAU 6.28318
|
|
|
|
float bright(in vec4 col) {
|
|
return (col.r + col.g + col.b) / 3. * col.a;
|
|
}
|
|
|
|
void main() {
|
|
vec2 pixelStep = 1. / dimension;
|
|
float tauDiv = TAU / 32.;
|
|
|
|
vec4 col = texture2D(gm_BaseTexture, v_vTexcoord);
|
|
vec4 col1;
|
|
gl_FragColor = col;
|
|
bool done = false;
|
|
|
|
float b0 = bright(col);
|
|
float shift_angle = atan(shift.y, shift.x);
|
|
float shift_distance = length(shift);
|
|
float slope_distance = height * b0;
|
|
float max_distance = height;
|
|
|
|
if(b0 == 0.) return;
|
|
|
|
float b1 = b0;
|
|
float ang, added_distance, _b1;
|
|
vec2 shf, pxs;
|
|
|
|
for(float i = 1.; i < height; i++) {
|
|
for(float j = 0.; j < 32.; j++) {
|
|
ang = j * tauDiv;
|
|
added_distance = 1. + cos(abs(shift_angle - ang)) * shift_distance;
|
|
|
|
shf = vec2( cos(ang), sin(ang)) * (i * added_distance) / scale;
|
|
pxs = v_vTexcoord + shf * pixelStep;
|
|
|
|
if(pxs.x < 0. || pxs.y < 0. || pxs.x > 1. || pxs.y > 1.)
|
|
_b1 = 0.;
|
|
else {
|
|
col1 = texture2D( gm_BaseTexture, pxs );
|
|
_b1 = bright(col1);
|
|
}
|
|
|
|
if(_b1 < b1) {
|
|
slope_distance = min(slope_distance, i);
|
|
max_distance = min(max_distance, (b0 - _b1) * height);
|
|
b1 = min(b1, _b1);
|
|
|
|
i = height;
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
if(max_distance == 0.)
|
|
gl_FragColor = vec4(vec3(b0), col.a);
|
|
else {
|
|
float mx = slope_distance / max_distance;
|
|
if(slope == 1) mx = pow(mx, 3.) + 3. * mx * mx * (1. - mx);
|
|
else if(slope == 2) mx = sqrt(1. - pow(mx - 1., 2.));
|
|
|
|
mx = clamp(mx, 0., 1.);
|
|
float prg = mix(b1, b0, mx);
|
|
gl_FragColor = vec4(vec3(prg), col.a);
|
|
}
|
|
}
|