3a44f1a6e0bcfb183d7343adb8f4b1bcdc85412d
[framework/uifw/evas.git] / src / modules / engines / gl_common / shader / tex_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;\n"
6 "uniform mat4 mvp;\n"
7 "varying vec2 tex_c;\n"
8 "void main()\n"
9 "{\n"
10 "   gl_Position = mvp * vertex;\n"
11 "   tex_c = tex_coord;\n"
12 "}\n"