mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-01-19 08:47:29 +07:00
36 lines
732 B
Plaintext
36 lines
732 B
Plaintext
#ifdef GL_ES
|
|
precision mediump float;
|
|
precision mediump int;
|
|
#endif
|
|
|
|
uniform sampler2D u_texture;
|
|
|
|
uniform vec4 u_color;
|
|
uniform vec2 u_texsize;
|
|
|
|
varying vec4 v_color;
|
|
varying vec2 v_texCoord;
|
|
|
|
void main() {
|
|
|
|
vec2 T = v_texCoord.xy;
|
|
|
|
vec2 v = vec2(1.0/u_texsize.x, 1.0/u_texsize.y);
|
|
|
|
bool any = false;
|
|
|
|
float thickness = 1.0;
|
|
float step = 1.0;
|
|
|
|
if(texture2D(u_texture, T).a < 0.1 &&
|
|
(texture2D(u_texture, T + vec2(0, step) * v).a > 0.1 || texture2D(u_texture, T + vec2(0, -step) * v).a > 0.1 ||
|
|
texture2D(u_texture, T + vec2(step, 0) * v).a > 0.1 || texture2D(u_texture, T + vec2(-step, 0) * v).a > 0.1))
|
|
any = true;
|
|
|
|
if(any){
|
|
gl_FragColor = u_color;
|
|
}else{
|
|
gl_FragColor = texture2D(u_texture, T) * v_color;
|
|
}
|
|
}
|