mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-12-26 23:17:25 +01:00
7 lines
158 B
GLSL
7 lines
158 B
GLSL
varying vec2 v_vTexcoord;
|
|
varying vec4 v_vColour;
|
|
|
|
void main() {
|
|
float a = texture2D(gm_BaseTexture, v_vTexcoord).a;
|
|
gl_FragColor = vec4(vec3(1.), a);
|
|
}
|