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