axmol/tests/cpp-tests/Resources/Shaders/example_GreyScale.fsh

15 lines
282 B
Plaintext
Raw Normal View History

2015-05-26 17:21:35 +08:00
#ifdef GL_ES
precision mediump float;
#endif
varying vec4 v_fragmentColor;
varying vec2 v_texCoord;
2019-03-26 13:45:03 +08:00
uniform sampler2D u_texture;
2015-05-26 17:21:35 +08:00
void main(void)
{
2019-03-26 13:45:03 +08:00
vec4 c = texture2D(u_texture, v_texCoord);
2015-05-26 17:21:35 +08:00
gl_FragColor.xyz = vec3(0.2126*c.r + 0.7152*c.g + 0.0722*c.b);
gl_FragColor.w = c.w;
}