aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/libraries/evas/src/modules/engines/gl_common/shader/rect_vert.shd
blob: 63fea5d535f5361bd40c3ed34493dc1317abf288 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#ifdef GL_ES
precision highp float;
#endif
attribute vec4 vertex;
attribute vec4 color;
uniform mat4 mvp;
varying vec4 col;
void main()
{
   gl_Position = mvp * vertex;
   col = color;
}