uniform highp mat4 matrix;
attribute highp vec4 in_vertex;
attribute highp vec2 in_coord;
varying highp vec2 coord;
void main()
{
coord = in_coord;
gl_Position = matrix * in_vertex;
}