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