2022-01-13 05:24:03 +01:00
|
|
|
//
|
|
|
|
// Simple passthrough fragment shader
|
|
|
|
//
|
|
|
|
varying vec2 v_vTexcoord;
|
|
|
|
varying vec4 v_vColour;
|
|
|
|
|
2023-02-23 07:02:19 +01:00
|
|
|
#define TAU 6.283185307179586
|
2022-01-14 02:44:58 +01:00
|
|
|
|
2022-01-13 05:24:03 +01:00
|
|
|
uniform vec2 center;
|
|
|
|
uniform float angle;
|
|
|
|
uniform float radius;
|
|
|
|
uniform float shift;
|
|
|
|
uniform int type;
|
|
|
|
|
2023-09-27 14:55:21 +02:00
|
|
|
uniform int gradient_loop;
|
|
|
|
|
|
|
|
#region ////////////////////////////////////////// GRADIENT BEGIN //////////////////////////////////////////
|
|
|
|
|
|
|
|
#define GRADIENT_LIMIT 128
|
|
|
|
uniform int gradient_blend;
|
|
|
|
uniform vec4 gradient_color[GRADIENT_LIMIT];
|
|
|
|
uniform float gradient_time[GRADIENT_LIMIT];
|
|
|
|
uniform int gradient_keys;
|
|
|
|
|
2022-11-14 03:16:15 +01:00
|
|
|
vec3 rgb2hsv(vec3 c) {
|
|
|
|
vec4 K = vec4(0.0, -1.0 / 3.0, 2.0 / 3.0, -1.0);
|
|
|
|
vec4 p = mix(vec4(c.bg, K.wz), vec4(c.gb, K.xy), step(c.b, c.g));
|
|
|
|
vec4 q = mix(vec4(p.xyw, c.r), vec4(c.r, p.yzx), step(p.x, c.r));
|
|
|
|
|
|
|
|
float d = q.x - min(q.w, q.y);
|
|
|
|
float e = 0.0000000001;
|
|
|
|
return vec3(abs(q.z + (q.w - q.y) / (6.0 * d + e)), d / (q.x + e), q.x);
|
|
|
|
}
|
|
|
|
|
|
|
|
vec3 hsv2rgb(vec3 c) {
|
|
|
|
vec4 K = vec4(1.0, 2.0 / 3.0, 1.0 / 3.0, 3.0);
|
|
|
|
vec3 p = abs(fract(c.xxx + K.xyz) * 6.0 - K.www);
|
|
|
|
return c.z * mix(K.xxx, clamp(p - K.xxx, 0.0, 1.0), c.y);
|
|
|
|
}
|
|
|
|
|
|
|
|
float hueDist(float a0, float a1, float t) {
|
|
|
|
float da = fract(a1 - a0);
|
|
|
|
float ds = fract(2. * da) - da;
|
|
|
|
return a0 + ds * t;
|
|
|
|
}
|
|
|
|
|
|
|
|
vec3 hsvMix(vec3 c1, vec3 c2, float t) {
|
|
|
|
vec3 h1 = rgb2hsv(c1);
|
|
|
|
vec3 h2 = rgb2hsv(c2);
|
|
|
|
|
|
|
|
vec3 h = vec3(0.);
|
|
|
|
h.x = h.x + hueDist(h1.x, h2.x, t);
|
|
|
|
h.y = mix(h1.y, h2.y, t);
|
|
|
|
h.z = mix(h1.z, h2.z, t);
|
|
|
|
|
|
|
|
return hsv2rgb(h);
|
|
|
|
}
|
|
|
|
|
2022-01-14 02:44:58 +01:00
|
|
|
vec4 gradientEval(in float prog) {
|
2022-01-13 05:24:03 +01:00
|
|
|
vec4 col = vec4(0.);
|
|
|
|
|
2023-05-29 13:25:16 +02:00
|
|
|
for(int i = 0; i < GRADIENT_LIMIT; i++) {
|
2022-01-13 05:24:03 +01:00
|
|
|
if(gradient_time[i] == prog) {
|
|
|
|
col = gradient_color[i];
|
|
|
|
break;
|
|
|
|
} else if(gradient_time[i] > prog) {
|
|
|
|
if(i == 0)
|
|
|
|
col = gradient_color[i];
|
|
|
|
else {
|
2022-11-14 03:16:15 +01:00
|
|
|
float t = (prog - gradient_time[i - 1]) / (gradient_time[i] - gradient_time[i - 1]);
|
2022-01-13 05:24:03 +01:00
|
|
|
if(gradient_blend == 0)
|
2022-11-14 03:16:15 +01:00
|
|
|
col = mix(gradient_color[i - 1], gradient_color[i], t);
|
2022-01-13 05:24:03 +01:00
|
|
|
else if(gradient_blend == 1)
|
|
|
|
col = gradient_color[i - 1];
|
2022-11-14 03:16:15 +01:00
|
|
|
else if(gradient_blend == 2)
|
|
|
|
col = vec4(hsvMix(gradient_color[i - 1].rgb, gradient_color[i].rgb, t), 1.);
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2022-01-14 02:44:58 +01:00
|
|
|
if(i >= gradient_keys - 1) {
|
|
|
|
col = gradient_color[gradient_keys - 1];
|
2022-01-13 05:24:03 +01:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-14 02:44:58 +01:00
|
|
|
return col;
|
|
|
|
}
|
|
|
|
|
2023-09-27 14:55:21 +02:00
|
|
|
#endregion ////////////////////////////////////////// GRADIENT END //////////////////////////////////////////
|
|
|
|
|
2022-01-14 02:44:58 +01:00
|
|
|
void main() {
|
|
|
|
float prog = 0.;
|
|
|
|
if(type == 0) {
|
|
|
|
prog = .5 + (v_vTexcoord.x - center.x) * cos(angle) - (v_vTexcoord.y - center.y) * sin(angle);
|
|
|
|
} else if(type == 1) {
|
|
|
|
prog = distance(v_vTexcoord, center) / radius;
|
|
|
|
} else if(type == 2) {
|
|
|
|
vec2 _p = v_vTexcoord - center;
|
|
|
|
float _a = atan(_p.y, _p.x) + angle;
|
|
|
|
prog = (_a - floor(_a / TAU) * TAU) / TAU;
|
|
|
|
}
|
2022-01-19 14:48:30 +01:00
|
|
|
prog = prog + shift;
|
2022-01-19 04:16:28 +01:00
|
|
|
if(gradient_loop == 1) {
|
2022-01-19 14:48:30 +01:00
|
|
|
prog = abs(prog);
|
2022-01-19 04:16:28 +01:00
|
|
|
if(prog > 1.) {
|
|
|
|
if(prog == floor(prog))
|
|
|
|
prog = 1.;
|
|
|
|
else
|
|
|
|
prog = fract(prog);
|
|
|
|
}
|
|
|
|
}
|
2022-01-14 02:44:58 +01:00
|
|
|
|
|
|
|
vec4 col = gradientEval(prog);
|
|
|
|
|
2022-09-21 06:09:40 +02:00
|
|
|
gl_FragColor = vec4(col.rgb, texture2D( gm_BaseTexture, v_vTexcoord ).a);
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|