Pixel-Composer/shaders/sh_atlas/sh_atlas.fsh

39 lines
715 B
Plaintext
Raw Normal View History

2022-01-13 05:24:03 +01:00
varying vec2 v_vTexcoord;
varying vec4 v_vColour;
uniform vec2 dimension;
2022-12-27 04:00:50 +01:00
#define TAU 6.283185307179586
2022-12-21 02:30:23 +01:00
#define distance_sample 64.
2022-01-13 05:24:03 +01:00
void main() {
2024-04-11 05:51:13 +02:00
vec2 tx = 1. / dimension;
2022-01-13 05:24:03 +01:00
vec4 col = texture2D( gm_BaseTexture, v_vTexcoord );
gl_FragColor = col;
2024-04-11 05:51:13 +02:00
if(col.a == 1.)
2022-12-27 04:00:50 +01:00
return;
2023-02-23 07:02:19 +01:00
for(float i = 1.; i <= distance_sample; i++) {
float base = 1.;
float top = 0.;
2024-04-11 05:51:13 +02:00
2023-02-23 07:02:19 +01:00
for(float j = 0.; j <= 64.; j++) {
float ang = top / base * TAU;
top += 2.;
if(top >= base) {
top = 1.;
base *= 2.;
}
2024-04-11 05:51:13 +02:00
vec2 pxs = v_vTexcoord + vec2( cos(ang), sin(ang)) * i * tx;
2023-02-23 07:02:19 +01:00
vec4 sam = texture2D( gm_BaseTexture, pxs );
2022-01-13 05:24:03 +01:00
2023-02-23 07:02:19 +01:00
if(sam.a < 1.) continue;
2022-12-27 04:00:50 +01:00
2023-02-23 07:02:19 +01:00
gl_FragColor = sam;
return;
}
2022-01-13 05:24:03 +01:00
}
}