aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/gl_common/shader/yuy2_nomul_vert.shd
blob: 05acc9c306a0f9ea41f2780bd41e70e1e55da62a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifdef GL_ES
precision highp float;
#endif
attribute vec4 vertex;
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 = vec2(tex_coord2.x * 0.5, tex_coord2.y);
}