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

19 lines
422 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
vec4 final = c;
final.r = (c.r * 0.393) + (c.g * 0.769) + (c.b * 0.189);
final.g = (c.r * 0.349) + (c.g * 0.686) + (c.b * 0.168);
final.b = (c.r * 0.272) + (c.g * 0.534) + (c.b * 0.131);
gl_FragColor = final;
}