Pixel-Composer/shaders/sh_polar/sh_polar.fsh

138 lines
3.6 KiB
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
//
// Simple passthrough fragment shader
//
2023-11-22 10:21:50 +01:00
varying vec2 v_vTexcoord;
varying vec4 v_vColour;
uniform int invert;
2023-11-25 08:54:35 +01:00
uniform int distMode;
2023-11-26 13:16:38 +01:00
uniform int swap;
2024-03-26 04:03:45 +01:00
uniform vec2 tile;
2022-01-13 05:24:03 +01:00
2023-12-23 09:39:55 +01:00
uniform vec2 blend;
uniform int blendUseSurf;
uniform sampler2D blendSurf;
uniform vec2 range;
2023-12-23 09:39:55 +01:00
2023-11-20 13:21:50 +01:00
#region /////////////// SAMPLING ///////////////
2023-03-21 03:01:53 +01:00
2024-02-15 14:23:26 +01:00
const float PI = 3.14159265358979323846;
uniform int interpolation;
uniform vec2 sampleDimension;
2023-03-21 03:01:53 +01:00
const int RSIN_RADIUS = 1;
float sinc ( float x ) { return x == 0.? 1. : sin(x * PI) / (x * PI); }
2024-05-17 05:19:11 +02:00
vec4 texture2D_bilinear( sampler2D texture, vec2 uv ) {
uv = uv * sampleDimension - .5;
vec2 iuv = floor( uv );
vec2 fuv = fract( uv );
vec4 mixed = mix(
mix(
texture2D( texture, (iuv + vec2(0., 0.)) / sampleDimension ),
texture2D( texture, (iuv + vec2(1., 0.)) / sampleDimension ),
fuv.x
),
mix(
texture2D( texture, (iuv + vec2(0., 1.)) / sampleDimension ),
texture2D( texture, (iuv + vec2(1., 1.)) / sampleDimension ),
fuv.x
),
fuv.y
);
mixed.rgb /= mixed.a;
return mixed;
}
2023-03-21 03:01:53 +01:00
vec4 texture2D_rsin( sampler2D texture, vec2 uv ) {
vec2 tx = 1.0 / sampleDimension;
vec2 p = uv * sampleDimension - vec2(0.5);
vec4 sum = vec4(0.0);
float weights = 0.;
for (int x = -RSIN_RADIUS; x <= RSIN_RADIUS; x++)
for (int y = -RSIN_RADIUS; y <= RSIN_RADIUS; y++) {
float a = length(vec2(float(x), float(y))) / float(RSIN_RADIUS);
if(a > 1.) continue;
float w = sinc(a * PI * tx.x) * sinc(a * PI * tx.y);
vec2 offset = vec2(float(x), float(y)) * tx;
2024-05-17 05:19:11 +02:00
vec4 sample = texture2D_bilinear(texture, (p + offset + vec2(0.5)) / sampleDimension);
2023-03-21 03:01:53 +01:00
sum += w * sample;
weights += w;
}
return sum / weights;
}
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;
2024-05-17 05:19:11 +02:00
return texture2D_bilinear( texture, uv );
2023-03-21 03:01:53 +01:00
}
vec4 texture2Dintp( sampler2D texture, vec2 uv ) {
2024-05-17 05:19:11 +02:00
if(interpolation == 1) return texture2D_bilinear( texture, uv );
else if(interpolation == 2) return texture2D_bicubic( texture, uv );
else if(interpolation == 3) return texture2D_rsin( texture, uv );
2023-03-21 03:01:53 +01:00
return texture2D( texture, uv );
}
2023-11-20 13:21:50 +01:00
#endregion /////////////// SAMPLING ///////////////
2022-01-13 05:24:03 +01:00
void main() {
2023-11-20 13:21:50 +01:00
vec2 center = vec2(0.5, 0.5);
2023-11-22 10:21:50 +01:00
vec2 coord;
vec2 til = tile/* * vec2(1., PI * 2.)*/;
vec2 _tile = swap == 1? til.yx : til;
2022-01-13 05:24:03 +01:00
2023-12-23 09:39:55 +01:00
float bld = blend.x;
if(blendUseSurf == 1) {
vec4 _vMap = texture2Dintp( blendSurf, v_vTexcoord );
bld = mix(blend.x, blend.y, (_vMap.r + _vMap.g + _vMap.b) / 3.);
}
float rad0 = radians(range.x);
float rad1 = radians(range.y);
float radr = (range.y - range.x) / 360.;
gl_FragColor = vec4(0.);
2023-11-20 13:21:50 +01:00
if(invert == 0) {
2023-11-25 08:54:35 +01:00
float dist = distance(v_vTexcoord, center) / (sqrt(2.) * .5);
if(distMode == 1) dist = sqrt(dist);
else if(distMode == 2) dist = log(dist);
2023-11-20 13:21:50 +01:00
vec2 cenPos = v_vTexcoord - center;
float angle = atan(cenPos.y, -cenPos.x) + PI;
angle = (angle - rad0) / radr;
if(angle < rad0 || angle > rad1) return;
2023-11-20 13:21:50 +01:00
angle /= PI * 2.;
2024-03-26 04:03:45 +01:00
coord = fract(vec2(dist, angle) * _tile);
2023-11-20 13:21:50 +01:00
} else if(invert == 1) {
float dist = v_vTexcoord.x * 0.5;
2023-11-25 08:54:35 +01:00
if(distMode == 1) dist = sqrt(dist);
else if(distMode == 2) dist = log(dist);
float angle = v_vTexcoord.y * PI * 2.;
angle = (angle - rad0) / radr;
if(angle < rad0 || angle > rad1) return;
2023-11-20 13:21:50 +01:00
coord = fract(center + vec2(cos(angle), sin(angle)) * dist * _tile);
2023-11-20 13:21:50 +01:00
}
2023-11-22 10:21:50 +01:00
2023-11-26 13:16:38 +01:00
if(swap == 1) coord.xy = coord.yx;
2024-03-26 04:03:45 +01:00
2023-12-23 09:39:55 +01:00
gl_FragColor = texture2Dintp( gm_BaseTexture, mix(v_vTexcoord, coord, bld) );
2022-01-13 05:24:03 +01:00
}