ce3b5175ee3a5cfd6e13d649f8697b9edddcd964
[framework/uifw/evas.git] / src / modules / engines / gl_common / shader / img_frag.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 = texture2D(tex, tex_c.xy).bgra * col;
10 }