d69bf745d29f2043bf0ff56759c086bc6d6b14c3
[framework/uifw/evas.git] / src / modules / engines / gl_common / shader / yuv_vert.shd
1 #ifdef GL_ES
2 precision mediump float;
3 #endif
4 attribute vec4 vertex;
5 attribute vec4 color;
6 attribute vec2 tex_coord, tex_coord2, tex_coord3;
7 uniform mat4 mvp;
8 varying vec4 col;
9 varying vec2 tex_c, tex_c2, tex_c3;
10 void main()
11 {
12    gl_Position = mvp * vertex;
13    col = color;
14    tex_c = tex_coord;
15    tex_c2 = tex_coord2;
16    tex_c3 = tex_coord3;
17 }