Pixel-Composer/shaders/sh_sdf_tex/sh_sdf_tex.fsh

11 lines
268 B
Plaintext
Raw Normal View History

2023-02-14 02:48:33 +01:00
//
// Simple passthrough fragment shader
//
varying vec2 v_vTexcoord;
varying vec4 v_vColour;
void main() {
vec4 colr = texture2D( gm_BaseTexture, v_vTexcoord );
float val = (colr.r + colr.g + colr.b) * colr.a;
gl_FragColor = vec4(0., 0., step(0.5, val), 1.);
}