aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/gl_common/shader/tex_nomul_vert.shd
blob: 74f3207177259f9ac08448c2ce6bbfc1b044883d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifdef GL_ES
precision highp float;
#endif
attribute vec4 vertex;
attribute vec2 tex_coord;
uniform mat4 mvp;
varying vec2 tex_c;
void main()
{
   gl_Position = mvp * vertex;
   tex_c = tex_coord;
}