qskinny/playground/parrots/shaders/blur.vert

13 lines
195 B
GLSL
Raw Normal View History

2023-12-07 10:24:47 +00:00
uniform highp mat4 matrix;
2023-12-04 11:48:11 +00:00
2023-12-07 10:24:47 +00:00
attribute highp vec4 in_vertex;
attribute highp vec2 in_coord;
2023-12-04 11:48:11 +00:00
2023-12-07 10:24:47 +00:00
varying highp vec2 coord;
2023-12-04 11:48:11 +00:00
void main()
{
2023-12-07 10:24:47 +00:00
coord = in_coord;
gl_Position = matrix * in_vertex;
}