1e6050704d779002395d1eb0fd74de4d1e7c507f
[framework/uifw/evas.git] / src / modules / engines / gl_common / shader / filter_invert_bgra.shd
1 #ifdef GL_ES
2 precision mediump float;
3 #endif
4 uniform sampler2D tex;
5 varying vec4 col;
6 varying vec2 tex_c;
7 void main()
8 {
9    gl_FragColor = (vec4(1.0, 1.0, 1.0, 1.0) - texture2D(tex, tex_c.xy))*col;
10 }