aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/gl_common/shader/img_bgra_nomul_frag.shd
blob: 877df62ba1add44314f0ffbd7bedac9750b9072b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef GL_ES
#ifdef GL_FRAGMENT_PRECISION_HIGH
precision highp float;
#else
precision mediump float;
#endif
#endif
uniform sampler2D tex;
varying vec2 tex_c;
void main()
{
   gl_FragColor = texture2D(tex, tex_c.xy);
}