8907f30ee74997038cbce00dda56ef1c93f13eb5
[framework/uifw/evas.git] / src / modules / engines / gl_common / shader / yuv_nomul_vert.h
1 "#ifdef GL_ES\n"
2 "precision mediump float;\n"
3 "#endif\n"
4 "attribute vec4 vertex;\n"
5 "attribute vec2 tex_coord, tex_coord2, tex_coord3;\n"
6 "uniform mat4 mvp;\n"
7 "varying vec2 tex_c, tex_c2, tex_c3;\n"
8 "void main()\n"
9 "{\n"
10 "   gl_Position = mvp * vertex;\n"
11 "   tex_c = tex_coord;\n"
12 "   tex_c2 = tex_coord2;\n"
13 "   tex_c3 = tex_coord3;\n"
14 "}\n"