2024-09-30 12:06:51 +02:00

13 lines
199 B
GLSL

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