Pixel-Composer/#backups/shaders/sh_atlas/sh_atlas.fsh.backup0

39 lines
696 B
Plaintext
Raw Normal View History

2024-04-18 07:12:31 +02:00
// 2024-04-18 08:42:38
varying vec2 v_vTexcoord;
varying vec4 v_vColour;
uniform vec2 dimension;
#define TAU 6.283185307179586
void main() {
vec2 tx = 1. / dimension;
vec4 col = texture2D( gm_BaseTexture, v_vTexcoord );
gl_FragColor = col;
if(col.a == 1.)
return;
for(float i = 1.; i <= 64.; i++) {
float base = 1.;
float top = 0.;
for(float j = 0.; j <= 64.; j++) {
float ang = top / base * TAU;
top += 2.;
if(top >= base) {
top = 1.;
base *= 2.;
}
vec2 pxs = v_vTexcoord + vec2( cos(ang), sin(ang)) * i * tx;
vec4 sam = texture2D( gm_BaseTexture, pxs );
if(sam.a < 1.) continue;
gl_FragColor = sam;
return;
}
}
}