mirror of
https://github.com/Ttanasart-pt/Pixel-Composer.git
synced 2024-11-11 04:54:06 +01:00
12 lines
285 B
GLSL
12 lines
285 B
GLSL
//
|
|
// Simple passthrough fragment shader
|
|
//
|
|
varying vec2 v_vTexcoord;
|
|
varying vec4 v_vColour;
|
|
|
|
void main() {
|
|
vec4 samp = texture2D( gm_BaseTexture, v_vTexcoord );
|
|
float bright = dot(samp.rgb, vec3(0.2126, 0.7152, 0.0722));
|
|
gl_FragColor = v_vColour * vec4(1., 1., 1., bright);
|
|
}
|