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