f4489b3b78584d199d0666c77f13725ce36a5e7f
[framework/uifw/evas.git] / src / modules / engines / gl_common / shader / img_nomul_vert.shd
1 #ifdef GL_ES
2 precision mediump float;
3 #endif
4 attribute vec4 vertex;
5 attribute vec2 tex_coord;
6 uniform mat4 mvp;
7 varying vec2 tex_c;
8 void main()
9 {
10    gl_Position = mvp * vertex;
11    tex_c = tex_coord;
12 }