Revert "Rollback to previous package. evas_1.0.0.001+svn.62695slp2+build31"
[framework/uifw/evas.git] / src / modules / engines / gl_common / shader / rect_vert.shd
1 #ifdef GL_ES
2 precision highp float;
3 #endif
4 attribute vec4 vertex;
5 attribute vec4 color;
6 uniform mat4 mvp;
7 varying vec4 col;
8 void main()
9 {
10    gl_Position = mvp * vertex;
11    col = color;
12 }