Revert "Rollback to previous package. evas_1.0.0.001+svn.62695slp2+build31"
[framework/uifw/evas.git] / src / modules / engines / gl_common / shader / img_mask_frag.shd
1 #ifdef GL_ES
2 precision highp float;
3 #endif
4 uniform sampler2D tex, texm;
5 varying vec4 col;
6 varying vec2 tex_c, tex_cm;
7 void main()
8 {
9    gl_FragColor = texture2D(texm, tex_cm.xy).aaaa * texture2D(tex, tex_c.xy).rgba * col;
10 }
11