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