aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/gl_common/shader/tex_frag.shd
blob: 2bc8d79540c53db0ea782a48c79ec68a9c83839e (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) * col;
}