2024-10-24 12:40:14 +02:00
|
|
|
#pragma use(sampler)
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2024-10-24 12:40:14 +02:00
|
|
|
#region -- sampler -- [1729740697.9444373]
|
|
|
|
uniform int interpolation;
|
|
|
|
uniform vec2 sampleDimension;
|
|
|
|
uniform int sampleMode;
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2024-10-24 12:40:14 +02:00
|
|
|
const float PI = 3.14159265358979323846;
|
|
|
|
float sinc ( float x ) { return x == 0.? 1. : sin(x * PI) / (x * PI); }
|
2022-01-13 05:24:03 +01:00
|
|
|
|
2024-10-24 12:40:14 +02:00
|
|
|
vec4 texture2D_bicubic( sampler2D texture, vec2 uv ) {
|
|
|
|
uv = uv * sampleDimension + 0.5;
|
|
|
|
vec2 iuv = floor( uv );
|
|
|
|
vec2 fuv = fract( uv );
|
|
|
|
uv = iuv + fuv * fuv * (3.0 - 2.0 * fuv);
|
|
|
|
uv = (uv - 0.5) / sampleDimension;
|
|
|
|
return texture2D( texture, uv );
|
|
|
|
}
|
2023-04-08 20:06:27 +02:00
|
|
|
|
2024-10-24 12:40:14 +02:00
|
|
|
const int RSIN_RADIUS = 1;
|
|
|
|
vec4 texture2D_rsin( sampler2D texture, vec2 uv ) {
|
|
|
|
vec2 tx = 1.0 / sampleDimension;
|
|
|
|
vec2 p = uv * sampleDimension;
|
|
|
|
|
|
|
|
vec4 col = vec4(0.);
|
|
|
|
float wei = 0.;
|
|
|
|
|
|
|
|
for (int x = -RSIN_RADIUS; x <= RSIN_RADIUS; x++)
|
|
|
|
for (int y = -RSIN_RADIUS; y <= RSIN_RADIUS; y++) {
|
|
|
|
vec2 sx = vec2(float(x), float(y));
|
|
|
|
float a = length(sx) / float(RSIN_RADIUS);
|
|
|
|
// if(a > 1.) continue;
|
|
|
|
|
|
|
|
vec4 sample = texture2D(texture, uv + sx * tx);
|
|
|
|
float w = sinc(a * PI * tx.x) * sinc(a * PI * tx.y);
|
|
|
|
|
|
|
|
col += w * sample;
|
|
|
|
wei += w;
|
|
|
|
}
|
|
|
|
|
|
|
|
col /= wei;
|
|
|
|
return col;
|
|
|
|
}
|
2023-04-08 20:06:27 +02:00
|
|
|
|
2024-10-24 12:40:14 +02:00
|
|
|
const int LANCZOS_RADIUS = 3;
|
|
|
|
float lanczosWeight(float d, float n) { return d == 0.0 ? 1.0 : (d * d < n * n ? sinc(d) * sinc(d / n) : 0.0); }
|
2023-04-08 20:06:27 +02:00
|
|
|
|
2024-10-24 12:40:14 +02:00
|
|
|
vec4 texture2D_lanczos3( sampler2D texture, vec2 uv ) {
|
|
|
|
vec2 center = uv - (mod(uv * sampleDimension, 1.0) - 0.5) / sampleDimension;
|
|
|
|
vec2 offset = (uv - center) * sampleDimension;
|
|
|
|
vec2 tx = 1. / sampleDimension;
|
|
|
|
|
|
|
|
vec4 col = vec4(0.);
|
|
|
|
float wei = 0.;
|
|
|
|
|
|
|
|
for(int x = -LANCZOS_RADIUS; x < LANCZOS_RADIUS; x++)
|
|
|
|
for(int y = -LANCZOS_RADIUS; y < LANCZOS_RADIUS; y++) {
|
|
|
|
|
|
|
|
float wx = lanczosWeight(float(x) - offset.x, float(LANCZOS_RADIUS));
|
|
|
|
float wy = lanczosWeight(float(y) - offset.y, float(LANCZOS_RADIUS));
|
|
|
|
float w = wx * wy;
|
|
|
|
|
|
|
|
col += w * texture2D(texture, center + vec2(x, y) * tx);
|
|
|
|
wei += w;
|
|
|
|
}
|
|
|
|
|
|
|
|
col /= wei;
|
|
|
|
return col;
|
|
|
|
}
|
2023-04-08 20:06:27 +02:00
|
|
|
|
2024-10-24 12:40:14 +02:00
|
|
|
vec4 texture2Dintp( sampler2D texture, vec2 uv ) {
|
|
|
|
if(interpolation <= 1) return texture2D( texture, uv );
|
|
|
|
else if(interpolation == 2) return texture2D_bicubic( texture, uv );
|
|
|
|
else if(interpolation == 3) return texture2D_lanczos3( texture, uv );
|
|
|
|
|
|
|
|
return texture2D( texture, uv );
|
|
|
|
}
|
2024-05-17 05:19:11 +02:00
|
|
|
|
2024-10-24 12:40:14 +02:00
|
|
|
vec4 sampleTexture( sampler2D texture, vec2 pos) {
|
|
|
|
if(pos.x >= 0. && pos.y >= 0. && pos.x <= 1. && pos.y <= 1.)
|
|
|
|
return texture2Dintp(texture, pos);
|
|
|
|
|
|
|
|
if(sampleMode <= 1) return vec4(0.);
|
|
|
|
else if(sampleMode == 2) return texture2Dintp(texture, clamp(pos, 0., 1.));
|
|
|
|
else if(sampleMode == 3) return texture2Dintp(texture, fract(pos));
|
|
|
|
else if(sampleMode == 4) return vec4(vec3(0.), 1.);
|
|
|
|
|
|
|
|
return vec4(0.);
|
|
|
|
}
|
|
|
|
#endregion -- sampler --
|
2023-04-08 20:06:27 +02:00
|
|
|
|
2024-10-24 12:40:14 +02:00
|
|
|
varying vec2 v_vTexcoord;
|
|
|
|
varying vec4 v_vColour;
|
2023-04-08 20:06:27 +02:00
|
|
|
|
2024-10-24 12:40:14 +02:00
|
|
|
uniform vec2 center;
|
|
|
|
uniform vec2 dimension;
|
|
|
|
uniform int gamma;
|
2023-04-08 20:06:27 +02:00
|
|
|
|
2024-10-24 12:40:14 +02:00
|
|
|
uniform vec2 strength;
|
|
|
|
uniform int strengthUseSurf;
|
|
|
|
uniform sampler2D strengthSurf;
|
2023-04-08 20:06:27 +02:00
|
|
|
|
2024-10-24 12:40:14 +02:00
|
|
|
#define ITERATION 64.
|
2022-12-27 04:00:50 +01:00
|
|
|
|
2022-01-13 05:24:03 +01:00
|
|
|
void main() {
|
2023-12-23 09:39:55 +01:00
|
|
|
float str = strength.x;
|
|
|
|
float strMax = max(strength.x, strength.y);
|
|
|
|
if(strengthUseSurf == 1) {
|
|
|
|
vec4 _vMap = texture2D( strengthSurf, v_vTexcoord );
|
|
|
|
str = mix(strength.x, strength.y, (_vMap.r + _vMap.g + _vMap.b) / 3.);
|
|
|
|
}
|
|
|
|
|
2023-01-25 06:49:00 +01:00
|
|
|
vec2 pxPos = v_vTexcoord * dimension;
|
|
|
|
vec2 pxCen = center * dimension;
|
2024-04-27 11:53:57 +02:00
|
|
|
vec2 vecPc = pxPos - pxCen;
|
2023-01-01 02:06:02 +01:00
|
|
|
|
2024-04-27 11:53:57 +02:00
|
|
|
float angle = atan(vecPc.y, vecPc.x);
|
|
|
|
float dist = length(vecPc);
|
|
|
|
vec4 clr = vec4(0.);
|
2023-01-25 06:49:00 +01:00
|
|
|
float weight = 0.;
|
2024-04-27 11:53:57 +02:00
|
|
|
float maxBright = 0.;
|
2023-01-01 02:06:02 +01:00
|
|
|
|
2023-12-23 09:39:55 +01:00
|
|
|
for(float i = -strMax; i <= strMax; i++) {
|
|
|
|
if(i < -str) continue;
|
|
|
|
if(i > str) break;
|
|
|
|
|
2023-01-25 06:49:00 +01:00
|
|
|
float ang = angle + i / 100.;
|
2024-10-24 12:40:14 +02:00
|
|
|
vec4 col = sampleTexture( gm_BaseTexture, (pxCen + vec2(cos(ang), sin(ang)) * dist) / dimension);
|
2023-01-25 06:49:00 +01:00
|
|
|
|
2024-06-13 09:21:07 +02:00
|
|
|
if(gamma == 1) col.rgb = pow(col.rgb, vec3(2.2));
|
2024-04-27 11:53:57 +02:00
|
|
|
|
2023-01-25 06:49:00 +01:00
|
|
|
clr += col;
|
|
|
|
weight += col.a;
|
|
|
|
}
|
2023-01-01 02:06:02 +01:00
|
|
|
|
2024-06-13 09:21:07 +02:00
|
|
|
vec4 res = clr / weight;
|
|
|
|
if(gamma == 1) res.rgb = pow(res.rgb, vec3(1. / 2.2));
|
|
|
|
|
|
|
|
gl_FragColor = res;
|
2022-01-13 05:24:03 +01:00
|
|
|
}
|