Pixel-Composer/shaders/sh_fluid_bleach/sh_fluid_bleach.fsh
2023-10-07 14:09:18 +07:00

11 lines
209 B
GLSL

//
// Simple passthrough fragment shader
//
varying vec2 v_vTexcoord;
varying vec4 v_vColour;
void main() {
vec4 samp = texture2D( gm_BaseTexture, v_vTexcoord );
gl_FragColor = vec4(vec3(1.), samp.a);
}