Revert "Rollback to previous package. evas_1.0.0.001+svn.62695slp2+build31"
[framework/uifw/evas.git] / src / modules / engines / gl_common / shader / img_bgra_nomul_vert.h
1 "#ifdef GL_ES\n"
2 "precision highp 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"