mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 13:03:49 +01:00
11 lines
268 B
Plaintext
11 lines
268 B
Plaintext
|
//
|
||
|
// 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.);
|
||
|
}
|